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/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml
new file mode 100644
index 0000000..d5d55e3
--- /dev/null
+++ b/.github/workflows/backend-ci.yml
@@ -0,0 +1,82 @@
+# 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
+
+ defaults:
+ run:
+ working-directory: ./server
+
+ 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: |
+ python -m pip install --upgrade pip
+ pip install flake8 black
+
+ - name: Run Black (Auto Formatting)
+ run: |
+ black src/ tests/
+
+ - name: Run flake8 (Linting)
+ run: |
+ flake8 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: 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
+ 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 "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: |
+ cd server
+ pytest tests/
diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml
new file mode 100644
index 0000000..1dcadd9
--- /dev/null
+++ b/.github/workflows/frontend-ci.yml
@@ -0,0 +1,62 @@
+name: Frontend CI
+
+on:
+ push:
+ branches: [ "develop", "main" ]
+ pull_request:
+ branches: [ "develop", "main" ]
+
+permissions:
+ contents: read
+
+jobs:
+ lint:
+ name: Run Linting (ESLint & Prettier)
+ runs-on: ubuntu-latest
+
+ defaults:
+ run:
+ working-directory: ./client # Removes need for cd client when running linting
+
+ 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
+ run: |
+ npm install
+
+ # For code quality, unused vars etc.
+ - name: Run ESLint
+ run: |
+ npm run lint
+
+ 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/.gitignore b/.gitignore
index 66f8b78..980efc3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,5 +2,9 @@
./assets/stops.txt
./assets/stop_times.txt
+.vscode/
*.pyc
*.env
+
+tests/myvenv/
+**/.expo/
\ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..2e9f712
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,10 @@
+{
+ "python.testing.pytestArgs": [
+ "server"
+ ],
+ "python.testing.unittestEnabled": false,
+ "python.testing.pytestEnabled": true,
+ "[javascript]": {
+ "editor.tabSize": 2
+ }
+}
\ No newline at end of file
diff --git a/client/.eslintrc.js b/client/.eslintrc.js
new file mode 100644
index 0000000..7a592f9
--- /dev/null
+++ b/client/.eslintrc.js
@@ -0,0 +1,29 @@
+module.exports = {
+ root: true,
+ extends: ['airbnb', 'airbnb/hooks', 'prettier'],
+ plugins: ['react', 'react-hooks', 'import', 'jsx-a11y', 'prettier'],
+ parserOptions: {
+ ecmaVersion: 2021,
+ sourceType: 'module',
+ ecmaFeatures: {
+ jsx: true,
+ },
+ },
+ env: {
+ browser: true,
+ es6: true,
+ node: true,
+ jest: true,
+ },
+ rules: {
+ 'prettier/prettier': ['warn', { endOfLine: 'auto' }],
+ 'react/react-in-jsx-scope': 'off', // Not needed for React Native
+ 'import/no-extraneous-dependencies': 'off',
+ 'react/jsx-filename-extension': [
+ 1,
+ { extensions: ['.js', '.jsx', '.tsx'] },
+ ],
+ 'react/prop-types': 'off',
+ 'no-console': ['warn', { allow: ['warn', 'error'] }],
+ },
+};
diff --git a/client/.prettierignore b/client/.prettierignore
new file mode 100644
index 0000000..f612170
--- /dev/null
+++ b/client/.prettierignore
@@ -0,0 +1,9 @@
+node_modules
+__mocks__
+expo
+coverage
+*.env
+package-lock.json
+package.json
+*.md
+*.bat
\ No newline at end of file
diff --git a/client/.prettierrc b/client/.prettierrc
new file mode 100644
index 0000000..9d06fb8
--- /dev/null
+++ b/client/.prettierrc
@@ -0,0 +1,5 @@
+{
+ "singleQuote": true,
+ "trailingComma": "all",
+ "semi": true
+}
diff --git a/client/App.js b/client/App.js
index 4ec7f71..d3c38fe 100644
--- a/client/App.js
+++ b/client/App.js
@@ -1,22 +1,47 @@
import React from 'react';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { NavigationContainer } from '@react-navigation/native';
-import LoginScreen from './LogIn';
-import MapScreen from './Map';
-import WeatherScreen from './Weather';
+import LoginScreen from './src/LogIn';
+import MapScreen from './src/Map';
+import WeatherScreen from './src/Weather';
+import FindRouteScreen from './src/FindRoute';
+import SelectRouteScreen from './src/SelectRoute';
+import Dashboard from './src/SustainabilityDashboard';
+import PreferencesScreen from './src/Preferences';
+import AccountScreen from './src/AccountScreen';
+import SignUpScreen from './src/SignUp';
+import DisplayRouteScreen from './src/DisplayRoute';
+import FriendsScreen from './src/FriendsScreen';
const Stack = createNativeStackNavigator();
export default function App() {
return (
-
-
+
+
+
+
+
+
+
+
+
+
);
}
-
-
diff --git a/client/LogIn.js b/client/LogIn.js
deleted file mode 100644
index 2f8b620..0000000
--- a/client/LogIn.js
+++ /dev/null
@@ -1,125 +0,0 @@
-import * as React from 'react';
-import { useState, useRef } from 'react';
-import { StyleSheet, View, SafeAreaView, TextInput, Button, TouchableOpacity, Text, KeyboardAvoidingView, Platform } from 'react-native';
-import { useReducedMotion } from 'react-native-reanimated';
-
-export default function LoginScreen({ navigation }) {
- const [serverResponse, setServerResponse] = useState("");
- const [username, setUsername] = useState("");
- const [password, setPassword] = useState("");
- const ref2 = React.useRef(null);
-
- const passphrase = "jr023uf1(£12g*";
-
- const handleLogin = async () => {
- if (username == '' || password == '') {
- alert("All fields have to be filled before logging in!")
- }
- else {
- console.log('username: ', username)
- console.log('password: ', password)
- // alert(`Username: ${username}\nPassword: ${password}`)
- navigation.goBack()
-
- try {
- const baseUrl = Platform.OS === 'web'
- ? 'http://localhost:8000'
- : process.env.EXPO_PUBLIC_API_URL;
- console.log(`Sending request to ${baseUrl}/login`);
-
- const response = await fetch(`${baseUrl}/login`, {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({username: username, password: password}),
- });
-
- if (!response.ok) {
- throw new Error(`HTTP error! status: ${response.status}`);
- }
-
- // Await response and print message from server
- const data = await response.json();
- alert(data.message)
-
- console.log('Server response:', data);
- setServerResponse(data.message);
- } catch (error) {
- console.error('Error details:', error);
- setServerResponse(`Error: ${error.message}`);
- }
- }
- };
-
- return (
-
-
-
- setUsername(text)}
- style={styles.TextInput}
- onSubmitEditing={() => ref2.current.focus()}
- />
-
- setPassword(text)}
- secureTextEntry
- style={styles.TextInput}
- />
-
-
- Log In
-
-
-
-
- );
-}
-
-const styles = StyleSheet.create({
- container: {
- alignItems: "center",
- justifyContent: "center",
- paddingVertical: 10,
- paddingHorizontal: 45,
- top: '-20%',
- },
- TextInput: {
- width: 100,
- height: 50,
- backgroundColor: '#fff',
- borderColor: '#ccc',
- borderWidth: 1,
- borderRadius: 10,
- paddingHorizontal: 10,
- marginBottom: 15,
- textAlign: 'center',
- textAlignVertical: 'center',
- },
- TouchableOpacity: {
- alignItems: 'center',
- left: '0%',
- top: '5%',
- backgroundColor: '#007bff',
- paddingVertical: 10,
- paddingHorizontal: 40,
- borderRadius: 10,
- shadowColor: '#000',
- shadowOpacity: 0.2,
- shadowOffset: { width: 0, height: 2 },
- shadowRadius: 5,
- elevation: 5,
- },
- TouchableOpacityText: {
- color: '#fff',
- fontWeight: 'bold',
- textAlign: 'center',
- },
-});
\ No newline at end of file
diff --git a/client/Map.js b/client/Map.js
deleted file mode 100644
index 0715af5..0000000
--- a/client/Map.js
+++ /dev/null
@@ -1,218 +0,0 @@
-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';
-
-export default function MapScreen({ navigation }) {
- const [webSocket, setWebSocket] = useState(null);
- 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`;
- 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 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.');
- }
- };
-
- return (
-
- {errorMessage ? (
- {errorMessage}
- ) : location ? (
- <>
-
-
-
-
-
- Send Location
-
- navigation.navigate('LoginScreen')}
- >
- Log In
-
- 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,
- },
- error: {
- flex: 1,
- textAlign: 'center',
- textAlignVertical: 'center',
- fontSize: 18,
- color: 'red',
- },
- loadingText: {
- flex: 1,
- textAlign: 'center',
- textAlignVertical: 'center',
- fontSize: 18,
- },
-});
diff --git a/client/README.md b/client/README.md
index e17fbdb..e561994 100644
--- a/client/README.md
+++ b/client/README.md
@@ -1,15 +1,15 @@
-# Client
+# Client
+To set up this project:
Download Expo Go on your phone
-Ensure that your devices are connected to the same network
-To set up this project:
```bash
npm install --legacy-peer-deps
npx expo start
```
To update the SDK:
+
```bash
npm install expo@{version number}
npx expo install --check
@@ -17,6 +17,7 @@ npx expo start
```
To update the SDK:
+
```bash
npm install expo@{version number}
npx expo install --check
@@ -24,10 +25,40 @@ npx expo start
```
## Client server communication setup
+
1. Copy `.env.example` to `.env`
2. Find your IP address:
- Windows: Run `ipconfig` and use IPv4 Address under "Wireless LAN adapter Wi-Fi" and append `:8000`
- Mac/Linux: Run `ifconfig` or `ip addr`
3. Update `EXPO_PUBLIC_API_URL` in `.env` with your IP
-**Here's an example: `EXPO_PUBLIC_API_URL=http://192.168.13.1:8000`**
\ No newline at end of file
+**Here's an example: `EXPO_PUBLIC_API_URL=http://192.168.13.1:8000`**
+
+## Linting and Formatting Scripts
+
+This project uses ESLint and Prettier to maintain code quality and consistency. Below are the scripts defined in the `package.json` for linting and formatting:
+
+- **`lint`**: Runs ESLint on all JavaScript, JSX, TypeScript, and TSX files in the project to identify and report on patterns found in the code.
+ ```sh
+ npm run lint
+ ```
+
+- **`lint:fix`**: Runs ESLint with the `--fix` option to automatically fix problems where possible.
+ ```sh
+ npm run lint:fix
+ ```
+
+- **`prettier`**: Checks the code formatting using Prettier.
+ ```sh
+ npm run prettier
+ ```
+
+- **`prettier:fix`**: Formats the code using Prettier.
+ ```sh
+ npm run prettier:fix
+ ```
+
+- **`format`**: Runs both `lint:fix` and `prettier:fix` scripts to automatically fix linting issues and format the code.
+ ```sh
+ npm run format
+ ```
\ No newline at end of file
diff --git a/client/Weather.js b/client/Weather.js
deleted file mode 100644
index 0c5a7aa..0000000
--- a/client/Weather.js
+++ /dev/null
@@ -1,72 +0,0 @@
-import * as React from 'react';
-import { useState, useRef } from 'react';
-import { StyleSheet, View, SafeAreaView, TextInput, Button, TouchableOpacity, Text, KeyboardAvoidingView, Platform } from 'react-native';
-import { useReducedMotion } from 'react-native-reanimated';
-
-
-export default function WeatherScreen({ navigation }) {
- const [serverResponse, setServerResponse] = useState('');
-
- const fetchFromServer = async () => {
- try {
- const baseUrl = Platform.OS === 'web'
- ? 'http://localhost:8000'
- : process.env.EXPO_PUBLIC_API_URL;
- console.log(`Sending request to ${baseUrl}/weather`);
-
- const response = await fetch(`${baseUrl}/weather`, {
- method: 'GET',
- });
-
- 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);
- }
- };
-
- return (
-
-
-
- Weather Data
-
-
-
- {serverResponse}
-
-
- );
-}
-
-const styles = StyleSheet.create({
- container: {
- alignItems: "center",
- justifyContent: "center",
- paddingVertical: 10,
- paddingHorizontal: 45,
- top: '-20%',
- },
- TouchableOpacity: {
- alignItems: 'center',
- left: '0%',
- top: '5%',
- backgroundColor: '#007bff',
- paddingVertical: 10,
- paddingHorizontal: 40,
- borderRadius: 10,
- shadowColor: '#000',
- shadowOpacity: 0.2,
- shadowOffset: { width: 0, height: 2 },
- shadowRadius: 5,
- elevation: 5,
- },
-});
\ No newline at end of file
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/app.json b/client/app.json
index 0339dd5..f3ec750 100644
--- a/client/app.json
+++ b/client/app.json
@@ -4,10 +4,10 @@
"slug": "client",
"version": "1.0.0",
"orientation": "portrait",
- "icon": "./assets/icon.png",
+ "icon": "./src/assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
- "image": "./assets/splash.png",
+ "image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
@@ -16,7 +16,7 @@
},
"android": {
"adaptiveIcon": {
- "foregroundImage": "./assets/adaptive-icon.png",
+ "foregroundImage": "./src/assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
diff --git a/client/babel.config.js b/client/babel.config.js
index 2900afe..0fb11cd 100644
--- a/client/babel.config.js
+++ b/client/babel.config.js
@@ -1,6 +1,7 @@
-module.exports = function(api) {
+module.exports = function babelConfig(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..0e6fcfb
--- /dev/null
+++ b/client/jest.config.js
@@ -0,0 +1,8 @@
+module.exports = {
+ transform: {
+ '^.+\\.jsx?$': 'babel-jest',
+ },
+ transformIgnorePatterns: [
+ 'node_modules/(?!(expo-location|expo-modules-core)/)', // Add expo-location & expo-modules-core here
+ ],
+};
diff --git a/client/package-lock.json b/client/package-lock.json
index 177e122..6d3dfbd 100644
--- a/client/package-lock.json
+++ b/client/package-lock.json
@@ -8,16 +8,26 @@
"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",
+ "crypto-js": "^4.2.0",
+ "d3": "^7.9.0",
+ "deg2rad": "^1.0.0",
"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-actionsheet": "^2.4.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",
+ "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 +35,24 @@
"react-native-websocket": "^1.0.2"
},
"devDependencies": {
- "@babel/core": "^7.24.0"
+ "@babel/core": "^7.26.9",
+ "@babel/preset-env": "^7.26.9",
+ "@react-native-async-storage/async-storage": "^2.1.2",
+ "babel-jest": "^29.7.0",
+ "babel-preset-expo": "^12.0.9",
+ "eslint": "^8.57.1",
+ "eslint-config-airbnb": "^19.0.4",
+ "eslint-config-prettier": "^10.1.1",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-jsx-a11y": "^6.10.2",
+ "eslint-plugin-prettier": "^5.2.3",
+ "eslint-plugin-react": "^7.37.4",
+ "eslint-plugin-react-hooks": "^4.6.2",
+ "jest": "^29.7.0",
+ "jest-expo": "^52.0.4",
+ "metro-react-native-babel-preset": "^0.77.0",
+ "prettier": "^3.5.3",
+ "react-native-dotenv": "^3.4.11"
}
},
"node_modules/@0no-co/graphql.web": {
@@ -70,30 +97,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",
@@ -109,13 +136,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"
@@ -136,27 +163,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",
@@ -220,6 +233,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",
@@ -276,9 +302,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"
@@ -318,19 +344,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",
@@ -386,13 +399,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.10",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz",
+ "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==",
"license": "MIT",
"dependencies": {
- "@babel/template": "^7.25.9",
- "@babel/types": "^7.26.0"
+ "@babel/template": "^7.26.9",
+ "@babel/types": "^7.26.10"
},
"engines": {
"node": ">=6.9.0"
@@ -485,12 +498,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"
@@ -504,7 +517,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"
@@ -521,7 +533,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"
},
@@ -537,7 +548,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"
},
@@ -553,7 +563,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",
@@ -571,7 +580,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"
@@ -583,6 +591,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",
@@ -649,6 +677,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",
@@ -672,7 +757,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"
},
@@ -793,7 +877,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"
},
@@ -980,7 +1063,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"
@@ -1008,14 +1090,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"
@@ -1042,13 +1124,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"
@@ -1093,7 +1174,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"
@@ -1161,7 +1241,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"
@@ -1178,7 +1257,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"
},
@@ -1194,7 +1272,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"
@@ -1211,7 +1288,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"
},
@@ -1223,13 +1299,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": {
@@ -1271,12 +1345,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": {
@@ -1308,7 +1382,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"
},
@@ -1354,7 +1427,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"
},
@@ -1370,7 +1442,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"
@@ -1383,14 +1454,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"
@@ -1404,7 +1474,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",
@@ -1423,7 +1492,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"
@@ -1456,7 +1524,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"
},
@@ -1468,12 +1535,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"
@@ -1519,7 +1586,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"
@@ -1615,7 +1681,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"
},
@@ -1742,7 +1807,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"
@@ -1759,7 +1823,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"
},
@@ -1779,7 +1842,7 @@
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"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",
"semver": "^6.3.1"
},
@@ -1837,12 +1900,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"
@@ -1852,13 +1915,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"
@@ -1891,7 +1953,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"
},
@@ -1907,7 +1968,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"
@@ -1940,7 +2000,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"
@@ -1953,15 +2012,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",
@@ -1973,9 +2031,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",
@@ -1986,21 +2044,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",
@@ -2016,17 +2074,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": {
@@ -2036,6 +2094,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",
@@ -2058,7 +2129,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",
@@ -2126,10 +2196,32 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/register/node_modules/make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "license": "MIT",
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@babel/register/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/@babel/runtime": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
- "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.10.tgz",
+ "integrity": "sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.14.0"
@@ -2139,30 +2231,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"
},
@@ -2190,9 +2282,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.10",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz",
+ "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
@@ -2202,6 +2294,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",
@@ -2214,74 +2313,237 @@
"node": ">=0.8.0"
}
},
- "node_modules/@expo/bunyan": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz",
- "integrity": "sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==",
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.0.tgz",
+ "integrity": "sha512-RoV8Xs9eNwiDvhv7M+xcL4PWyRyIXRY/FLp3buU4h1EYfdF7unWUy3dOjPqb3C7rMUewIcqwW850PgS8h1o1yg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "uuid": "^8.0.0"
+ "eslint-visitor-keys": "^3.4.3"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
- "node_modules/@expo/cli": {
- "version": "0.21.5",
- "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.21.5.tgz",
- "integrity": "sha512-hd0pC5ntZxon7IijOsqp5wPOMGtaQNvTPOc74EQc+WS+Cldd7cMNSKKVUI2X7Lrn2Zcje9ne/WgGCnMTjdcVgA==",
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.12.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
+ "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
+ "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@0no-co/graphql.web": "^1.0.8",
- "@babel/runtime": "^7.20.0",
- "@expo/code-signing-certificates": "^0.0.5",
- "@expo/config": "~10.0.4",
- "@expo/config-plugins": "~9.0.3",
- "@expo/devcert": "^1.1.2",
- "@expo/env": "~0.4.0",
- "@expo/image-utils": "^0.6.0",
- "@expo/json-file": "^9.0.0",
- "@expo/metro-config": "~0.19.0",
- "@expo/osascript": "^2.0.31",
- "@expo/package-manager": "^1.5.0",
- "@expo/plist": "^0.2.0",
- "@expo/prebuild-config": "^8.0.16",
- "@expo/rudder-sdk-node": "^1.1.1",
- "@expo/spawn-async": "^1.7.2",
- "@expo/xcpretty": "^4.3.0",
- "@react-native/dev-middleware": "0.76.2",
- "@urql/core": "^5.0.6",
- "@urql/exchange-retry": "^1.3.0",
- "accepts": "^1.3.8",
- "arg": "^5.0.2",
- "better-opn": "~3.0.2",
- "bplist-creator": "0.0.7",
- "bplist-parser": "^0.3.1",
- "cacache": "^18.0.2",
- "chalk": "^4.0.0",
- "ci-info": "^3.3.0",
- "compression": "^1.7.4",
- "connect": "^3.7.0",
- "debug": "^4.3.4",
- "env-editor": "^0.4.1",
- "fast-glob": "^3.3.2",
- "form-data": "^3.0.1",
- "freeport-async": "^2.0.0",
- "fs-extra": "~8.1.0",
- "getenv": "^1.0.0",
- "glob": "^10.4.2",
- "internal-ip": "^4.3.0",
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1",
- "lodash.debounce": "^4.0.8",
- "minimatch": "^3.0.4",
- "node-forge": "^1.3.1",
- "npm-package-arg": "^11.0.0",
- "ora": "^3.4.0",
- "picomatch": "^3.0.1",
- "pretty-bytes": "^5.6.0",
- "pretty-format": "^29.7.0",
- "progress": "^2.0.3",
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.6.0",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@eslint/eslintrc/node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "8.57.1",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
+ "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@expo/bunyan": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz",
+ "integrity": "sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==",
+ "license": "MIT",
+ "dependencies": {
+ "uuid": "^8.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@expo/cli": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.21.5.tgz",
+ "integrity": "sha512-hd0pC5ntZxon7IijOsqp5wPOMGtaQNvTPOc74EQc+WS+Cldd7cMNSKKVUI2X7Lrn2Zcje9ne/WgGCnMTjdcVgA==",
+ "license": "MIT",
+ "dependencies": {
+ "@0no-co/graphql.web": "^1.0.8",
+ "@babel/runtime": "^7.20.0",
+ "@expo/code-signing-certificates": "^0.0.5",
+ "@expo/config": "~10.0.4",
+ "@expo/config-plugins": "~9.0.3",
+ "@expo/devcert": "^1.1.2",
+ "@expo/env": "~0.4.0",
+ "@expo/image-utils": "^0.6.0",
+ "@expo/json-file": "^9.0.0",
+ "@expo/metro-config": "~0.19.0",
+ "@expo/osascript": "^2.0.31",
+ "@expo/package-manager": "^1.5.0",
+ "@expo/plist": "^0.2.0",
+ "@expo/prebuild-config": "^8.0.16",
+ "@expo/rudder-sdk-node": "^1.1.1",
+ "@expo/spawn-async": "^1.7.2",
+ "@expo/xcpretty": "^4.3.0",
+ "@react-native/dev-middleware": "0.76.2",
+ "@urql/core": "^5.0.6",
+ "@urql/exchange-retry": "^1.3.0",
+ "accepts": "^1.3.8",
+ "arg": "^5.0.2",
+ "better-opn": "~3.0.2",
+ "bplist-creator": "0.0.7",
+ "bplist-parser": "^0.3.1",
+ "cacache": "^18.0.2",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.3.0",
+ "compression": "^1.7.4",
+ "connect": "^3.7.0",
+ "debug": "^4.3.4",
+ "env-editor": "^0.4.1",
+ "fast-glob": "^3.3.2",
+ "form-data": "^3.0.1",
+ "freeport-async": "^2.0.0",
+ "fs-extra": "~8.1.0",
+ "getenv": "^1.0.0",
+ "glob": "^10.4.2",
+ "internal-ip": "^4.3.0",
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1",
+ "lodash.debounce": "^4.0.8",
+ "minimatch": "^3.0.4",
+ "node-forge": "^1.3.1",
+ "npm-package-arg": "^11.0.0",
+ "ora": "^3.4.0",
+ "picomatch": "^3.0.1",
+ "pretty-bytes": "^5.6.0",
+ "pretty-format": "^29.7.0",
+ "progress": "^2.0.3",
"prompts": "^2.3.2",
"qrcode-terminal": "0.11.0",
"require-from-string": "^2.0.2",
@@ -2308,6 +2570,50 @@
"expo-internal": "build/bin/cli"
}
},
+ "node_modules/@expo/cli/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@expo/cli/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/cli/node_modules/glob/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/@expo/cli/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
@@ -2331,15 +2637,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.11",
+ "resolved": "https://registry.npmjs.org/@expo/config/-/config-10.0.11.tgz",
+ "integrity": "sha512-nociJ4zr/NmbVfMNe9j/+zRlt7wz/siISu7PjdWE4WE+elEGxWWxsGzltdJG0llzrM+khx8qUiFK5aiVcdMBww==",
"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.17",
+ "@expo/config-types": "^52.0.5",
+ "@expo/json-file": "^9.0.2",
"deepmerge": "^4.3.1",
"getenv": "^1.0.0",
"glob": "^10.4.2",
@@ -2373,6 +2679,50 @@
"xml2js": "0.6.0"
}
},
+ "node_modules/@expo/config-plugins/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@expo/config-plugins/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/config-plugins/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/@expo/config-plugins/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
@@ -2386,9 +2736,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.5",
+ "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-52.0.5.tgz",
+ "integrity": "sha512-AMDeuDLHXXqd8W+0zSjIt7f37vUd/BP8p43k68NHpyAvQO+z8mbQZm3cNQVAMySeayK2XoPigAFB1JF2NFajaA==",
"license": "MIT"
},
"node_modules/@expo/config/node_modules/@babel/code-frame": {
@@ -2400,25 +2750,91 @@
"@babel/highlight": "^7.10.4"
}
},
- "node_modules/@expo/config/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
+ "node_modules/@expo/config/node_modules/@expo/config-plugins": {
+ "version": "9.0.17",
+ "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-9.0.17.tgz",
+ "integrity": "sha512-m24F1COquwOm7PBl5wRbkT9P9DviCXe0D7S7nQsolfbhdCWuvMkfXeoWmgjtdhy7sDlOyIgBrAdnB6MfsWKqIg==",
+ "license": "MIT",
+ "dependencies": {
+ "@expo/config-types": "^52.0.5",
+ "@expo/json-file": "~9.0.2",
+ "@expo/plist": "^0.2.2",
+ "@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/devcert": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz",
- "integrity": "sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==",
+ "node_modules/@expo/config/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"license": "MIT",
"dependencies": {
- "application-config-path": "^0.1.0",
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@expo/config/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/config/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/config/node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@expo/devcert": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz",
+ "integrity": "sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==",
+ "license": "MIT",
+ "dependencies": {
+ "application-config-path": "^0.1.0",
"command-exists": "^1.2.4",
"debug": "^3.1.0",
"eol": "^0.9.1",
@@ -2432,6 +2848,15 @@
"tslib": "^2.4.0"
}
},
+ "node_modules/@expo/devcert/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
"node_modules/@expo/devcert/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
@@ -2441,6 +2866,41 @@
"ms": "^2.1.1"
}
},
+ "node_modules/@expo/devcert/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/devcert/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/@expo/env": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@expo/env/-/env-0.4.0.tgz",
@@ -2475,6 +2935,52 @@
"fingerprint": "bin/cli.js"
}
},
+ "node_modules/@expo/fingerprint/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@expo/fingerprint/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@expo/fingerprint/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@expo/fingerprint/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
@@ -2563,9 +3069,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",
@@ -2582,6 +3088,23 @@
"@babel/highlight": "^7.10.4"
}
},
+ "node_modules/@expo/json-file/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==",
+ "license": "ISC"
+ },
+ "node_modules/@expo/json-file/node_modules/write-file-atomic": {
+ "version": "2.4.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
+ "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
+ "license": "ISC",
+ "dependencies": {
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.2"
+ }
+ },
"node_modules/@expo/metro-config": {
"version": "0.19.4",
"resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.19.4.tgz",
@@ -2608,6 +3131,15 @@
"resolve-from": "^5.0.0"
}
},
+ "node_modules/@expo/metro-config/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
"node_modules/@expo/metro-config/node_modules/fs-extra": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
@@ -2623,6 +3155,41 @@
"node": ">=10"
}
},
+ "node_modules/@expo/metro-config/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@expo/metro-config/node_modules/glob/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/@expo/metro-config/node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
@@ -2677,6 +3244,52 @@
"sudo-prompt": "9.1.1"
}
},
+ "node_modules/@expo/package-manager/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@expo/package-manager/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@expo/package-manager/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@expo/package-manager/node_modules/sudo-prompt": {
"version": "9.1.1",
"resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz",
@@ -2684,9 +3297,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",
@@ -2836,6 +3449,22 @@
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"license": "Python-2.0"
},
+ "node_modules/@expo/xcpretty/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@expo/xcpretty/node_modules/js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
@@ -2848,6 +3477,96 @@
"js-yaml": "bin/js-yaml.js"
}
},
+ "node_modules/@expo/xcpretty/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@expo/xcpretty/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "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/@humanwhocodes/config-array": {
+ "version": "0.13.0",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
+ "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
+ "deprecated": "Use @eslint/config-array instead",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanwhocodes/object-schema": "^2.0.3",
+ "debug": "^4.3.1",
+ "minimatch": "^3.0.5"
+ },
+ "engines": {
+ "node": ">=10.10.0"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/object-schema": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
+ "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
+ "deprecated": "Use @eslint/object-schema instead",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
@@ -2865,6 +3584,18 @@
"node": ">=12"
}
},
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
@@ -2877,6 +3608,44 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
@@ -2919,65 +3688,79 @@
"node": ">=8"
}
},
- "node_modules/@istanbuljs/load-nyc-config/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==",
+ "node_modules/@istanbuljs/schema": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
"license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
"engines": {
"node": ">=8"
}
},
- "node_modules/@istanbuljs/load-nyc-config/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==",
+ "node_modules/@jest/console": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz",
+ "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "p-locate": "^4.1.0"
+ "@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": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@istanbuljs/load-nyc-config/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==",
+ "node_modules/@jest/core": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz",
+ "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "p-try": "^2.0.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": "*",
+ "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": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@istanbuljs/load-nyc-config/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==",
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
+ "peerDependencies": {
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "peerDependenciesMeta": {
+ "node-notifier": {
+ "optional": true
+ }
}
},
"node_modules/@jest/create-cache-key-function": {
@@ -3007,6 +3790,33 @@
"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",
@@ -3024,82 +3834,200 @@
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "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/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": {
- "@sinclair/typebox": "^0.27.8"
+ "@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/transform": {
+ "node_modules/@jest/reporters": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz",
- "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz",
+ "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/core": "^7.11.6",
+ "@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",
- "babel-plugin-istanbul": "^6.1.1",
+ "@types/node": "*",
"chalk": "^4.0.0",
- "convert-source-map": "^2.0.0",
- "fast-json-stable-stringify": "^2.1.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
"graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "jest-regex-util": "^29.6.3",
+ "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",
- "micromatch": "^4.0.4",
- "pirates": "^4.0.4",
+ "jest-worker": "^29.7.0",
"slash": "^3.0.0",
- "write-file-atomic": "^4.0.2"
+ "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/transform/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==",
- "license": "ISC"
+ "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/transform/node_modules/write-file-atomic": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
- "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
+ "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",
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
+ "bin": {
+ "semver": "bin/semver.js"
},
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ "node": ">=10"
}
},
- "node_modules/@jest/types": {
+ "node_modules/@jest/schemas": {
"version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
- "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
+ "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
"license": "MIT",
"dependencies": {
- "@jest/schemas": "^29.6.3",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^17.0.8",
- "chalk": "^4.0.0"
+ "@sinclair/typebox": "^0.27.8"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
+ "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/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"
+ }
+ },
+ "node_modules/@jest/transform": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz",
+ "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.6.3",
+ "@jridgewell/trace-mapping": "^0.3.18",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.7.0",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jest/types": {
+ "version": "29.6.3",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
+ "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
+ "license": "MIT",
+ "dependencies": {
+ "@jest/schemas": "^29.6.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.5",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
"integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"license": "MIT",
@@ -3225,6 +4153,76 @@
"node": ">=14"
}
},
+ "node_modules/@pkgr/core": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz",
+ "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/unts"
+ }
+ },
+ "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-async-storage/async-storage": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-2.1.2.tgz",
+ "integrity": "sha512-dvlNq4AlGWC+ehtH12p65+17V0Dx7IecOWl6WanF2ja38O1Dcjjvn7jVzkUHJ5oWkQBlyASurTPlTHgKXyYiow==",
+ "dev": true,
+ "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",
+ "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",
@@ -3327,27 +4325,6 @@
"@babel/preset-env": "^7.1.6"
}
},
- "node_modules/@react-native/codegen/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/@react-native/community-cli-plugin": {
"version": "0.76.2",
"resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.76.2.tgz",
@@ -3600,21 +4577,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": {
@@ -3639,15 +4616,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": {
@@ -3673,14 +4650,21 @@
}
},
"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/@rtsao/scc": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
+ "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@segment/loosely-validate-event": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz",
@@ -3714,6 +4698,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",
@@ -3755,12 +4749,50 @@
"@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",
"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",
@@ -3800,6 +4832,33 @@
"@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/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@types/node": {
"version": "22.9.0",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz",
@@ -3824,6 +4883,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",
@@ -3839,10 +4905,17 @@
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
"license": "MIT"
},
+ "node_modules/@ungap/structured-clone": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
+ "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
+ "dev": true,
+ "license": "ISC"
+ },
"node_modules/@urql/core": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.0.8.tgz",
- "integrity": "sha512-1GOnUw7/a9bzkcM0+U8U5MmxW2A7FE5YquuEmcJzTtW5tIs2EoS4F2ITpuKBjRBbyRjZgO860nWFPo1m4JImGA==",
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.1.1.tgz",
+ "integrity": "sha512-aGh024z5v2oINGD/In6rAtVKTm4VmQ2TxKQBAtk2ZSME5dunZFcjltw4p5ENQg+5CBhZ3FHMzl0Oa+rwqiWqlg==",
"license": "MIT",
"dependencies": {
"@0no-co/graphql.web": "^1.0.5",
@@ -3850,18 +4923,194 @@
}
},
"node_modules/@urql/exchange-retry": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.3.0.tgz",
- "integrity": "sha512-FLt+d81gP4oiHah4hWFDApimc+/xABWMU1AMYsZ1PVB0L0YPtrMCjbOp9WMM7hBzy4gbTDrG24sio0dCfSh/HQ==",
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.3.1.tgz",
+ "integrity": "sha512-EEmtFu8JTuwsInqMakhLq+U3qN8ZMd5V3pX44q0EqD2imqTDsa8ikZqJ1schVrN8HljOdN+C08cwZ1/r5uIgLw==",
"license": "MIT",
"dependencies": {
- "@urql/core": "^5.0.0",
+ "@urql/core": "^5.1.1",
"wonka": "^6.3.2"
},
"peerDependencies": {
"@urql/core": "^5.0.0"
}
},
+ "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",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/helper-numbers": "1.13.2",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2"
+ }
+ },
+ "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": {
+ "@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",
@@ -3872,6 +5121,30 @@
"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",
@@ -3898,9 +5171,9 @@
}
},
"node_modules/acorn": {
- "version": "8.14.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
- "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
+ "version": "8.14.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+ "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
@@ -3909,23 +5182,134 @@
"node": ">=0.4.0"
}
},
- "node_modules/aggregate-error": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+ "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": {
- "clean-stack": "^2.0.0",
- "indent-string": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
+ "acorn": "^8.1.0",
+ "acorn-walk": "^8.0.2"
}
},
- "node_modules/anser": {
- "version": "1.4.10",
- "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz",
- "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==",
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "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",
+ "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+ "license": "MIT",
+ "dependencies": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "engines": {
+ "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",
+ "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==",
"license": "MIT"
},
"node_modules/ansi-escapes": {
@@ -4019,6 +5403,54 @@
"sprintf-js": "~1.0.2"
}
},
+ "node_modules/aria-query": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
+ "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
+ "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "is-array-buffer": "^3.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
@@ -4028,6 +5460,125 @@
"node": ">=8"
}
},
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
+ "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
+ "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
+ "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
+ "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
+ "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3",
+ "es-errors": "^1.3.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
+ "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "is-array-buffer": "^3.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
@@ -4046,6 +5597,23 @@
"node": ">=4"
}
},
+ "node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/async-function": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
+ "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
@@ -4067,6 +5635,42 @@
"node": ">= 4.0.0"
}
},
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/axe-core": {
+ "version": "4.10.3",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz",
+ "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/axobject-query": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/babel-core": {
"version": "7.0.0-bridge.0",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz",
@@ -4143,13 +5747,13 @@
}
},
"node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.10.6",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz",
- "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==",
+ "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.2",
- "core-js-compat": "^3.38.0"
+ "@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"
@@ -4233,9 +5837,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",
@@ -4244,7 +5848,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"
},
@@ -4261,75 +5865,168 @@
}
}
},
- "node_modules/babel-preset-jest": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
- "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
- "license": "MIT",
- "dependencies": {
- "babel-plugin-jest-hoist": "^29.6.3",
- "babel-preset-current-node-syntax": "^1.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
- },
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/better-opn": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz",
- "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==",
+ "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": {
- "open": "^8.0.4"
+ "@react-native/codegen": "0.76.7"
},
"engines": {
- "node": ">=12.0.0"
+ "node": ">=18"
}
},
- "node_modules/better-opn/node_modules/open": {
- "version": "8.4.2",
- "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
- "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
+ "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": {
- "define-lazy-prop": "^2.0.0",
- "is-docker": "^2.1.1",
- "is-wsl": "^2.2.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@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-jest": {
+ "version": "29.6.3",
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
+ "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
+ "license": "MIT",
+ "dependencies": {
+ "babel-plugin-jest-hoist": "^29.6.3",
+ "babel-preset-current-node-syntax": "^1.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "license": "MIT"
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/better-opn": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz",
+ "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==",
+ "license": "MIT",
+ "dependencies": {
+ "open": "^8.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/better-opn/node_modules/open": {
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
+ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
+ "license": "MIT",
+ "dependencies": {
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/big-integer": {
@@ -4391,9 +6088,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",
@@ -4410,9 +6107,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": {
@@ -4515,12 +6212,106 @@
"node": "^16.14.0 || >=18.0.0"
}
},
+ "node_modules/cacache/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/cacache/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/cacache/node_modules/lru-cache": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
"license": "ISC"
},
+ "node_modules/cacache/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/caller-callsite": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
@@ -4533,6 +6324,15 @@
"node": ">=4"
}
},
+ "node_modules/caller-callsite/node_modules/callsites": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
+ "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/caller-path": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
@@ -4546,12 +6346,13 @@
}
},
"node_modules/callsites": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
- "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==",
+ "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": ">=4"
+ "node": ">=6"
}
},
"node_modules/camelcase": {
@@ -4564,9 +6365,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",
@@ -4599,6 +6400,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",
@@ -4635,6 +6446,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",
@@ -4676,6 +6498,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",
@@ -4723,42 +6552,10 @@
"node": ">=12"
}
},
- "node_modules/cliui/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/cliui/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/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==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/clone": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
- "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
+ "node_modules/clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
"license": "MIT",
"engines": {
"node": ">=0.8"
@@ -4778,6 +6575,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",
@@ -4921,6 +6736,13 @@
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"license": "MIT"
},
+ "node_modules/confusing-browser-globals": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
+ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/connect": {
"version": "3.7.0",
"resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz",
@@ -4958,12 +6780,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",
@@ -4991,6 +6813,41 @@
"node": ">=4"
}
},
+ "node_modules/cosmiconfig/node_modules/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==",
+ "license": "MIT",
+ "dependencies": {
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
+ },
+ "engines": {
+ "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",
@@ -5001,9 +6858,9 @@
}
},
"node_modules/cross-spawn": {
- "version": "7.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz",
- "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==",
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"license": "MIT",
"dependencies": {
"path-key": "^3.1.0",
@@ -5030,6 +6887,12 @@
"deprecated": "This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.",
"license": "ISC"
},
+ "node_modules/crypto-js": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
+ "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==",
+ "license": "MIT"
+ },
"node_modules/crypto-random-string": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
@@ -5068,15 +6931,6 @@
"node": ">=8.0.0"
}
},
- "node_modules/css-tree/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==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/css-what": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
@@ -5089,1683 +6943,4822 @@
"url": "https://github.com/sponsors/fb55"
}
},
- "node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "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": {
- "ms": "^2.1.3"
+ "cssom": "~0.3.6"
},
"engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
+ "node": ">=8"
}
},
- "node_modules/decode-uri-component": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
- "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
- "license": "MIT",
+ "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",
+ "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": ">=0.10"
+ "node": ">=12"
}
},
- "node_modules/deep-extend": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
- "license": "MIT",
+ "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": ">=4.0.0"
+ "node": ">=12"
}
},
- "node_modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "license": "MIT",
+ "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": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/default-gateway": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
- "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
- "license": "BSD-2-Clause",
+ "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": {
- "execa": "^1.0.0",
- "ip-regex": "^2.1.0"
+ "d3-dispatch": "1 - 3",
+ "d3-drag": "2 - 3",
+ "d3-interpolate": "1 - 3",
+ "d3-selection": "3",
+ "d3-transition": "3"
},
"engines": {
- "node": ">=6"
+ "node": ">=12"
}
},
- "node_modules/defaults": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
- "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
- "license": "MIT",
+ "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": {
- "clone": "^1.0.2"
+ "d3-path": "1 - 3"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/define-lazy-prop": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
- "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
- "license": "MIT",
+ "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": ">=8"
+ "node": ">=12"
}
},
- "node_modules/del": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz",
- "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==",
- "license": "MIT",
+ "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": {
- "globby": "^11.0.1",
- "graceful-fs": "^4.2.4",
- "is-glob": "^4.0.1",
- "is-path-cwd": "^2.2.0",
- "is-path-inside": "^3.0.2",
- "p-map": "^4.0.0",
- "rimraf": "^3.0.2",
- "slash": "^3.0.0"
+ "d3-array": "^3.2.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=12"
}
},
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "license": "MIT",
+ "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": ">=0.4.0"
+ "node": ">=12"
}
},
- "node_modules/denodeify": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz",
- "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==",
- "license": "MIT"
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "license": "MIT",
+ "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": ">= 0.8"
+ "node": ">=12"
}
},
- "node_modules/destroy": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
- "license": "MIT",
+ "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": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
+ "node": ">=12"
}
},
- "node_modules/detect-libc": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
- "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
- "license": "Apache-2.0",
+ "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": {
- "detect-libc": "bin/detect-libc.js"
+ "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": ">=0.10"
+ "node": ">=12"
}
},
- "node_modules/dir-glob": {
+ "node_modules/d3-ease": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
- "license": "MIT",
+ "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": {
- "path-type": "^4.0.0"
+ "d3-dsv": "1 - 3"
},
"engines": {
- "node": ">=8"
+ "node": ">=12"
}
},
- "node_modules/dom-serializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
- "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
- "license": "MIT",
+ "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": {
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.2",
- "entities": "^4.2.0"
+ "d3-dispatch": "1 - 3",
+ "d3-quadtree": "1 - 3",
+ "d3-timer": "1 - 3"
},
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
- },
- "node_modules/domhandler": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
- "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "^2.3.0"
- },
+ "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": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
+ "node": ">=12"
}
},
- "node_modules/domutils": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz",
- "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
- "license": "BSD-2-Clause",
+ "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": {
- "dom-serializer": "^2.0.0",
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.3"
+ "d3-array": "2.5.0 - 3"
},
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/dotenv": {
- "version": "16.4.5",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz",
- "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==",
- "license": "BSD-2-Clause",
+ "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"
- },
- "funding": {
- "url": "https://dotenvx.com"
}
},
- "node_modules/dotenv-expand": {
- "version": "11.0.7",
- "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz",
- "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==",
- "license": "BSD-2-Clause",
+ "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": {
- "dotenv": "^16.4.5"
+ "d3-color": "1 - 3"
},
"engines": {
"node": ">=12"
- },
- "funding": {
- "url": "https://dotenvx.com"
}
},
- "node_modules/eastasianwidth": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
- "license": "MIT"
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "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==",
- "license": "ISC"
- },
- "node_modules/emoji-regex": {
- "version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
- "license": "MIT",
+ "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": ">= 0.8"
+ "node": ">=12"
}
},
- "node_modules/end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "license": "MIT",
- "dependencies": {
- "once": "^1.4.0"
+ "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/entities": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
- "license": "BSD-2-Clause",
+ "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": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
+ "node": ">=12"
}
},
- "node_modules/env-editor": {
- "version": "0.4.2",
- "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz",
- "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==",
- "license": "MIT",
+ "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": ">=8"
+ "node": ">=12"
}
},
- "node_modules/eol": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
- "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==",
- "license": "MIT"
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "license": "MIT",
+ "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": {
- "is-arrayish": "^0.2.1"
+ "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/error-stack-parser": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
- "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
- "license": "MIT",
+ "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": {
- "stackframe": "^1.3.4"
+ "d3-color": "1 - 3",
+ "d3-interpolate": "1 - 3"
+ },
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "license": "MIT",
+ "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": ">=6"
+ "node": ">=12"
}
},
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "license": "MIT"
- },
- "node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "license": "MIT",
+ "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": ">=10"
+ "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"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
+ "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": ">=4"
+ "node": ">=12"
}
},
- "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",
- "peer": true,
+ "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": ">=0.10.0"
+ "node": ">=12"
}
},
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "license": "MIT",
+ "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": ">= 0.6"
+ "node": ">=12"
+ },
+ "peerDependencies": {
+ "d3-selection": "2 - 3"
}
},
- "node_modules/event-target-shim": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
- "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
- "license": "MIT",
+ "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": ">=6"
+ "node": ">=12"
}
},
- "node_modules/exec-async": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz",
- "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==",
- "license": "MIT"
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
+ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
+ "dev": true,
+ "license": "BSD-2-Clause"
},
- "node_modules/execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "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": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
+ "abab": "^2.0.6",
+ "whatwg-mimetype": "^3.0.0",
+ "whatwg-url": "^11.0.0"
},
"engines": {
- "node": ">=6"
+ "node": ">=12"
}
},
- "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==",
+ "node_modules/data-view-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
+ "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
},
"engines": {
- "node": ">=4.8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/execa/node_modules/path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==",
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
+ "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
"engines": {
- "node": ">=4"
- }
- },
- "node_modules/execa/node_modules/semver": {
- "version": "5.7.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
- "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/inspect-js"
}
},
- "node_modules/execa/node_modules/shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
+ "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "shebang-regex": "^1.0.0"
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/execa/node_modules/shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==",
+ "node_modules/debug": {
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
"license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
}
},
- "node_modules/execa/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==",
- "license": "ISC"
+ "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/execa/node_modules/which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
+ "node_modules/decode-uri-component": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
+ "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10"
}
},
- "node_modules/expo": {
- "version": "52.0.7",
- "resolved": "https://registry.npmjs.org/expo/-/expo-52.0.7.tgz",
- "integrity": "sha512-AXN+FmYF8jR+IUJCuETO9iuMZ2DdGpL175kvHveBM/cS4MQsF7oe1MTnCRLyXQ92BDUZlqjWqWTX1sY3ysPoZw==",
+ "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",
- "dependencies": {
- "@babel/runtime": "^7.20.0",
- "@expo/cli": "0.21.5",
- "@expo/config": "~10.0.4",
- "@expo/config-plugins": "9.0.9",
- "@expo/fingerprint": "0.11.2",
- "@expo/metro-config": "0.19.4",
- "@expo/vector-icons": "^14.0.0",
- "babel-preset-expo": "~12.0.1",
- "expo-asset": "~11.0.1",
- "expo-constants": "~17.0.3",
- "expo-file-system": "~18.0.3",
- "expo-font": "~13.0.1",
- "expo-keep-awake": "~14.0.1",
- "expo-modules-autolinking": "2.0.2",
- "expo-modules-core": "2.0.3",
- "fbemitter": "^3.0.0",
- "web-streams-polyfill": "^3.3.2",
- "whatwg-url-without-unicode": "8.0.0-3"
- },
- "bin": {
- "expo": "bin/cli"
- },
"peerDependencies": {
- "@expo/dom-webview": "*",
- "@expo/metro-runtime": "*",
- "react": "*",
- "react-native": "*",
- "react-native-webview": "*"
+ "babel-plugin-macros": "^3.1.0"
},
"peerDependenciesMeta": {
- "@expo/dom-webview": {
- "optional": true
- },
- "@expo/metro-runtime": {
- "optional": true
- },
- "react-native-webview": {
+ "babel-plugin-macros": {
"optional": true
}
}
},
- "node_modules/expo-asset": {
- "version": "11.0.1",
- "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-11.0.1.tgz",
- "integrity": "sha512-WatvD7JVC89EsllXFYcS/rji3ajVzE2B/USo0TqedsETixwyVCQfrrvCdCPQyuKghrxVNEj8bQ/Qbea/RZLYjg==",
+ "node_modules/deep-extend": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"license": "MIT",
- "dependencies": {
- "@expo/image-utils": "^0.6.0",
- "expo-constants": "~17.0.0",
- "invariant": "^2.2.4",
- "md5-file": "^3.2.3"
- },
- "peerDependencies": {
- "expo": "*",
- "react": "*",
- "react-native": "*"
+ "engines": {
+ "node": ">=4.0.0"
}
},
- "node_modules/expo-constants": {
- "version": "17.0.3",
- "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-17.0.3.tgz",
- "integrity": "sha512-lnbcX2sAu8SucHXEXxSkhiEpqH+jGrf+TF+MO6sHWIESjwOUVVYlT8qYdjR9xbxWmqFtrI4KV44FkeJf2DaFjQ==",
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
"license": "MIT",
- "dependencies": {
- "@expo/config": "~10.0.4",
- "@expo/env": "~0.4.0"
- },
- "peerDependencies": {
- "expo": "*",
- "react-native": "*"
+ "engines": {
+ "node": ">=0.10.0"
}
},
- "node_modules/expo-file-system": {
- "version": "18.0.3",
- "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-18.0.3.tgz",
- "integrity": "sha512-HKe0dGW3FWYFi1F3THVnTRueTG7j0onmEpUJKRB4UbjeHD2723cn/EutcG216wvrJeebe8w3+00F8Z4xk+9Jrw==",
- "license": "MIT",
+ "node_modules/default-gateway": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
+ "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
+ "license": "BSD-2-Clause",
"dependencies": {
- "web-streams-polyfill": "^3.3.2"
+ "execa": "^1.0.0",
+ "ip-regex": "^2.1.0"
},
- "peerDependencies": {
- "expo": "*",
- "react-native": "*"
+ "engines": {
+ "node": ">=6"
}
},
- "node_modules/expo-font": {
- "version": "13.0.1",
- "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-13.0.1.tgz",
- "integrity": "sha512-8JE47B+6cLeKWr5ql8gU6YsPHjhrz1vMrTqYMm72No/8iW8Sb/uL4Oc0dpmbjq3hLLXBY0xPBQOgU7FQ6Y04Vg==",
+ "node_modules/defaults": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
"license": "MIT",
"dependencies": {
- "fontfaceobserver": "^2.1.0"
+ "clone": "^1.0.2"
},
- "peerDependencies": {
- "expo": "*",
- "react": "*"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/expo-keep-awake": {
- "version": "14.0.1",
- "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-14.0.1.tgz",
- "integrity": "sha512-c5mGCAIk2YM+Vsdy90BlEJ4ZX+KG5Au9EkJUIxXWlpnuKmDAJ3N+5nEZ7EUO1ZTheqoSBeAo4jJ8rTWPU+JXdw==",
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
"license": "MIT",
- "peerDependencies": {
- "expo": "*",
- "react": "*"
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/expo-location": {
- "version": "18.0.2",
- "resolved": "https://registry.npmjs.org/expo-location/-/expo-location-18.0.2.tgz",
- "integrity": "sha512-45wPrQCv5UQM/RZcOJIei8za0lSyEm5wlb3izLa9P45bqlu3ChRZhYfZz+gMQhVb/oorVqzIVUQhKRTTz7GOXQ==",
+ "node_modules/define-lazy-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
"license": "MIT",
- "peerDependencies": {
- "expo": "*"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/expo-modules-autolinking": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-2.0.2.tgz",
- "integrity": "sha512-n3jC7VoJLfOLGk8NWhEAvM5zSjbLh1kMUSo76nJupx5/vASxDdzihppYebrKrNXPHq5mcw8Jr+r7YB+8xHx7QQ==",
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@expo/spawn-async": "^1.7.2",
- "chalk": "^4.1.0",
- "commander": "^7.2.0",
- "fast-glob": "^3.2.5",
- "find-up": "^5.0.0",
- "fs-extra": "^9.1.0",
- "require-from-string": "^2.0.2",
- "resolve-from": "^5.0.0"
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
},
- "bin": {
- "expo-modules-autolinking": "bin/expo-modules-autolinking.js"
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/expo-modules-autolinking/node_modules/fs-extra": {
- "version": "9.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
- "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "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",
+ "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==",
"license": "MIT",
"dependencies": {
- "at-least-node": "^1.0.0",
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
},
"engines": {
"node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/expo-modules-autolinking/node_modules/jsonfile": {
+ "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",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/denodeify": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz",
+ "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==",
+ "license": "MIT"
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
+ "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
+ "license": "Apache-2.0",
+ "bin": {
+ "detect-libc": "bin/detect-libc.js"
+ },
+ "engines": {
+ "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",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/dom-serializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "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/domhandler": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "domelementtype": "^2.3.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domutils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz",
+ "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.4.5",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz",
+ "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dotenv-expand": {
+ "version": "11.0.7",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz",
+ "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dotenv": "^16.4.5"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "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",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "license": "MIT"
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/electron-to-chromium": {
+ "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": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/end-of-stream": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+ "license": "MIT",
+ "dependencies": {
+ "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",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/env-editor": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz",
+ "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/eol": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
+ "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==",
+ "license": "MIT"
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/error-stack-parser": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
+ "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
+ "license": "MIT",
+ "dependencies": {
+ "stackframe": "^1.3.4"
+ }
+ },
+ "node_modules/es-abstract": {
+ "version": "1.23.9",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz",
+ "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.2",
+ "arraybuffer.prototype.slice": "^1.0.4",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "data-view-buffer": "^1.0.2",
+ "data-view-byte-length": "^1.0.2",
+ "data-view-byte-offset": "^1.0.1",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.1.0",
+ "es-to-primitive": "^1.3.0",
+ "function.prototype.name": "^1.1.8",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.0",
+ "get-symbol-description": "^1.1.0",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.1.0",
+ "is-array-buffer": "^3.0.5",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.2",
+ "is-regex": "^1.2.1",
+ "is-shared-array-buffer": "^1.0.4",
+ "is-string": "^1.1.1",
+ "is-typed-array": "^1.1.15",
+ "is-weakref": "^1.1.0",
+ "math-intrinsics": "^1.1.0",
+ "object-inspect": "^1.13.3",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.7",
+ "own-keys": "^1.0.1",
+ "regexp.prototype.flags": "^1.5.3",
+ "safe-array-concat": "^1.1.3",
+ "safe-push-apply": "^1.0.0",
+ "safe-regex-test": "^1.1.0",
+ "set-proto": "^1.0.0",
+ "string.prototype.trim": "^1.2.10",
+ "string.prototype.trimend": "^1.0.9",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.3",
+ "typed-array-byte-length": "^1.0.3",
+ "typed-array-byte-offset": "^1.0.4",
+ "typed-array-length": "^1.0.7",
+ "unbox-primitive": "^1.1.0",
+ "which-typed-array": "^1.1.18"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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-iterator-helpers": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz",
+ "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.6",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.0.3",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.6",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "iterator.prototype": "^1.1.4",
+ "safe-array-concat": "^1.1.3"
+ },
+ "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/es-shim-unscopables": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
+ "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
+ "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.2.7",
+ "is-date-object": "^1.0.5",
+ "is-symbol": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "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/eslint": {
+ "version": "8.57.1",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
+ "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
+ "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.6.1",
+ "@eslint/eslintrc": "^2.1.4",
+ "@eslint/js": "8.57.1",
+ "@humanwhocodes/config-array": "^0.13.0",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@nodelib/fs.walk": "^1.2.8",
+ "@ungap/structured-clone": "^1.2.0",
+ "ajv": "^6.12.4",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.2.2",
+ "eslint-visitor-keys": "^3.4.3",
+ "espree": "^9.6.1",
+ "esquery": "^1.4.2",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "globals": "^13.19.0",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "is-path-inside": "^3.0.3",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3",
+ "strip-ansi": "^6.0.1",
+ "text-table": "^0.2.0"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-config-airbnb": {
+ "version": "19.0.4",
+ "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz",
+ "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-config-airbnb-base": "^15.0.0",
+ "object.assign": "^4.1.2",
+ "object.entries": "^1.1.5"
+ },
+ "engines": {
+ "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-plugin-import": "^2.25.3",
+ "eslint-plugin-jsx-a11y": "^6.5.1",
+ "eslint-plugin-react": "^7.28.0",
+ "eslint-plugin-react-hooks": "^4.3.0"
+ }
+ },
+ "node_modules/eslint-config-airbnb-base": {
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz",
+ "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "confusing-browser-globals": "^1.0.10",
+ "object.assign": "^4.1.2",
+ "object.entries": "^1.1.5",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.32.0 || ^8.2.0",
+ "eslint-plugin-import": "^2.25.2"
+ }
+ },
+ "node_modules/eslint-config-prettier": {
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz",
+ "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "eslint-config-prettier": "bin/cli.js"
+ },
+ "peerDependencies": {
+ "eslint": ">=7.0.0"
+ }
+ },
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-module-utils": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
+ "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import": {
+ "version": "2.31.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
+ "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@rtsao/scc": "^1.1.0",
+ "array-includes": "^3.1.8",
+ "array.prototype.findlastindex": "^1.2.5",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.12.0",
+ "hasown": "^2.0.2",
+ "is-core-module": "^2.15.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "object.groupby": "^1.0.3",
+ "object.values": "^1.2.0",
+ "semver": "^6.3.1",
+ "string.prototype.trimend": "^1.0.8",
+ "tsconfig-paths": "^3.15.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.10.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
+ "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "aria-query": "^5.3.2",
+ "array-includes": "^3.1.8",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "^4.10.0",
+ "axobject-query": "^4.1.0",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.includes": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/eslint-plugin-prettier": {
+ "version": "5.2.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
+ "integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prettier-linter-helpers": "^1.0.0",
+ "synckit": "^0.9.1"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint-plugin-prettier"
+ },
+ "peerDependencies": {
+ "@types/eslint": ">=8.0.0",
+ "eslint": ">=8.0.0",
+ "eslint-config-prettier": "*",
+ "prettier": ">=3.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/eslint": {
+ "optional": true
+ },
+ "eslint-config-prettier": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-plugin-react": {
+ "version": "7.37.4",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz",
+ "integrity": "sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.8",
+ "array.prototype.findlast": "^1.2.5",
+ "array.prototype.flatmap": "^1.3.3",
+ "array.prototype.tosorted": "^1.1.4",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.2.1",
+ "estraverse": "^5.3.0",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.8",
+ "object.fromentries": "^2.0.8",
+ "object.values": "^1.2.1",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.12",
+ "string.prototype.repeat": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz",
+ "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint/node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/eslint/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/eslint/node_modules/eslint-scope": {
+ "version": "7.2.2",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
+ "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint/node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/eslint/node_modules/globals": {
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint/node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/eslint/node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/eslint/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint/node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/espree": {
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
+ "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^8.9.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^3.4.1"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
+ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "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",
+ "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"
+ }
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/event-target-shim": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
+ "license": "MIT",
+ "engines": {
+ "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",
+ "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==",
+ "license": "MIT"
+ },
+ "node_modules/execa": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+ "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+ "license": "MIT",
+ "dependencies": {
+ "cross-spawn": "^6.0.0",
+ "get-stream": "^4.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/execa/node_modules/cross-spawn": {
+ "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",
+ "path-key": "^2.0.1",
+ "semver": "^5.5.0",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
+ },
+ "engines": {
+ "node": ">=4.8"
+ }
+ },
+ "node_modules/execa/node_modules/path-key": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/execa/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/execa/node_modules/shebang-command": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+ "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==",
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/execa/node_modules/shebang-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+ "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/execa/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==",
+ "license": "ISC"
+ },
+ "node_modules/execa/node_modules/which": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "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",
+ "integrity": "sha512-AXN+FmYF8jR+IUJCuETO9iuMZ2DdGpL175kvHveBM/cS4MQsF7oe1MTnCRLyXQ92BDUZlqjWqWTX1sY3ysPoZw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.20.0",
+ "@expo/cli": "0.21.5",
+ "@expo/config": "~10.0.4",
+ "@expo/config-plugins": "9.0.9",
+ "@expo/fingerprint": "0.11.2",
+ "@expo/metro-config": "0.19.4",
+ "@expo/vector-icons": "^14.0.0",
+ "babel-preset-expo": "~12.0.1",
+ "expo-asset": "~11.0.1",
+ "expo-constants": "~17.0.3",
+ "expo-file-system": "~18.0.3",
+ "expo-font": "~13.0.1",
+ "expo-keep-awake": "~14.0.1",
+ "expo-modules-autolinking": "2.0.2",
+ "expo-modules-core": "2.0.3",
+ "fbemitter": "^3.0.0",
+ "web-streams-polyfill": "^3.3.2",
+ "whatwg-url-without-unicode": "8.0.0-3"
+ },
+ "bin": {
+ "expo": "bin/cli"
+ },
+ "peerDependencies": {
+ "@expo/dom-webview": "*",
+ "@expo/metro-runtime": "*",
+ "react": "*",
+ "react-native": "*",
+ "react-native-webview": "*"
+ },
+ "peerDependenciesMeta": {
+ "@expo/dom-webview": {
+ "optional": true
+ },
+ "@expo/metro-runtime": {
+ "optional": true
+ },
+ "react-native-webview": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/expo-asset": {
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-11.0.1.tgz",
+ "integrity": "sha512-WatvD7JVC89EsllXFYcS/rji3ajVzE2B/USo0TqedsETixwyVCQfrrvCdCPQyuKghrxVNEj8bQ/Qbea/RZLYjg==",
+ "license": "MIT",
+ "dependencies": {
+ "@expo/image-utils": "^0.6.0",
+ "expo-constants": "~17.0.0",
+ "invariant": "^2.2.4",
+ "md5-file": "^3.2.3"
+ },
+ "peerDependencies": {
+ "expo": "*",
+ "react": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/expo-constants": {
+ "version": "17.0.3",
+ "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-17.0.3.tgz",
+ "integrity": "sha512-lnbcX2sAu8SucHXEXxSkhiEpqH+jGrf+TF+MO6sHWIESjwOUVVYlT8qYdjR9xbxWmqFtrI4KV44FkeJf2DaFjQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@expo/config": "~10.0.4",
+ "@expo/env": "~0.4.0"
+ },
+ "peerDependencies": {
+ "expo": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/expo-file-system": {
+ "version": "18.0.3",
+ "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-18.0.3.tgz",
+ "integrity": "sha512-HKe0dGW3FWYFi1F3THVnTRueTG7j0onmEpUJKRB4UbjeHD2723cn/EutcG216wvrJeebe8w3+00F8Z4xk+9Jrw==",
+ "license": "MIT",
+ "dependencies": {
+ "web-streams-polyfill": "^3.3.2"
+ },
+ "peerDependencies": {
+ "expo": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/expo-font": {
+ "version": "13.0.1",
+ "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-13.0.1.tgz",
+ "integrity": "sha512-8JE47B+6cLeKWr5ql8gU6YsPHjhrz1vMrTqYMm72No/8iW8Sb/uL4Oc0dpmbjq3hLLXBY0xPBQOgU7FQ6Y04Vg==",
+ "license": "MIT",
+ "dependencies": {
+ "fontfaceobserver": "^2.1.0"
+ },
+ "peerDependencies": {
+ "expo": "*",
+ "react": "*"
+ }
+ },
+ "node_modules/expo-keep-awake": {
+ "version": "14.0.1",
+ "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-14.0.1.tgz",
+ "integrity": "sha512-c5mGCAIk2YM+Vsdy90BlEJ4ZX+KG5Au9EkJUIxXWlpnuKmDAJ3N+5nEZ7EUO1ZTheqoSBeAo4jJ8rTWPU+JXdw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "expo": "*",
+ "react": "*"
+ }
+ },
+ "node_modules/expo-location": {
+ "version": "18.0.2",
+ "resolved": "https://registry.npmjs.org/expo-location/-/expo-location-18.0.2.tgz",
+ "integrity": "sha512-45wPrQCv5UQM/RZcOJIei8za0lSyEm5wlb3izLa9P45bqlu3ChRZhYfZz+gMQhVb/oorVqzIVUQhKRTTz7GOXQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "expo": "*"
+ }
+ },
+ "node_modules/expo-modules-autolinking": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-2.0.2.tgz",
+ "integrity": "sha512-n3jC7VoJLfOLGk8NWhEAvM5zSjbLh1kMUSo76nJupx5/vASxDdzihppYebrKrNXPHq5mcw8Jr+r7YB+8xHx7QQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@expo/spawn-async": "^1.7.2",
+ "chalk": "^4.1.0",
+ "commander": "^7.2.0",
+ "fast-glob": "^3.2.5",
+ "find-up": "^5.0.0",
+ "fs-extra": "^9.1.0",
+ "require-from-string": "^2.0.2",
+ "resolve-from": "^5.0.0"
+ },
+ "bin": {
+ "expo-modules-autolinking": "bin/expo-modules-autolinking.js"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"license": "MIT",
"dependencies": {
- "universalify": "^2.0.0"
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/expo-modules-autolinking/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/expo-modules-core": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-2.0.3.tgz",
+ "integrity": "sha512-S/Ozg6NhLkMc7k+qSLzOtjCexuimkYXHM/PCZtbn53nkuNYyaLpfVfrsJsRWxLIMe8ftbm6cDrKlN5mJ6lNODg==",
+ "license": "MIT",
+ "dependencies": {
+ "invariant": "^2.2.4"
+ }
+ },
+ "node_modules/expo-status-bar": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-2.0.0.tgz",
+ "integrity": "sha512-vxxdpvpNDMTEc5uTiIrbTvySKKUsOACmfl8OZuUdjNle05oGqwtq3v5YObwym/njSByjoyuZX8UpXBZnxvarwQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "*",
+ "react-native": "*"
+ }
+ },
+ "node_modules/exponential-backoff": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
+ "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "license": "MIT"
+ },
+ "node_modules/fast-diff": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
+ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true,
+ "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",
+ "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/fb-watchman": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
+ "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bser": "2.1.1"
+ }
+ },
+ "node_modules/fbemitter": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz",
+ "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "fbjs": "^3.0.0"
+ }
+ },
+ "node_modules/fbjs": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz",
+ "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==",
+ "license": "MIT",
+ "dependencies": {
+ "cross-fetch": "^3.1.5",
+ "fbjs-css-vars": "^1.0.0",
+ "loose-envify": "^1.0.0",
+ "object-assign": "^4.1.0",
+ "promise": "^7.1.1",
+ "setimmediate": "^1.0.5",
+ "ua-parser-js": "^1.0.35"
+ }
+ },
+ "node_modules/fbjs-css-vars": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz",
+ "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==",
+ "license": "MIT"
+ },
+ "node_modules/fetch-retry": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz",
+ "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==",
+ "license": "MIT"
+ },
+ "node_modules/file-entry-cache": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flat-cache": "^3.0.4"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/filter-obj": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz",
+ "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
+ "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.3",
+ "statuses": "~1.5.0",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "license": "MIT",
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "license": "MIT",
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/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==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "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==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
+ "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.3",
+ "rimraf": "^3.0.2"
+ },
+ "engines": {
+ "node": "^10.12.0 || >=12.0.0"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/flow-enums-runtime": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz",
+ "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==",
+ "license": "MIT"
+ },
+ "node_modules/flow-parser": {
+ "version": "0.253.0",
+ "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.253.0.tgz",
+ "integrity": "sha512-EbxtzRIzp8dDSzTloPhsc6uOvrEFIyu08cqQzXBWLAgxK+i2d/5qOos9ryQHRmk+RyDDXfnz/7qteh3jnAlc4w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/fontfaceobserver": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz",
+ "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/for-each": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
+ "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.6",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/foreground-child/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz",
+ "integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==",
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/freeport-async": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz",
+ "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=6 <7 || >=8"
+ }
+ },
+ "node_modules/fs-minipass": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz",
+ "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.3"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "license": "ISC"
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
+ "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "functions-have-names": "^1.2.3",
+ "hasown": "^2.0.2",
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "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",
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/get-port": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz",
+ "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==",
+ "license": "MIT",
+ "engines": {
+ "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",
+ "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "license": "MIT",
+ "dependencies": {
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
+ "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/getenv": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz",
+ "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "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/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "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/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "license": "MIT",
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "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",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
+ },
+ "node_modules/graphemer": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
+ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/has-bigints": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
+ "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-proto": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
+ "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hermes-estree": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz",
+ "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==",
+ "license": "MIT"
+ },
+ "node_modules/hermes-parser": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz",
+ "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==",
+ "license": "MIT",
+ "dependencies": {
+ "hermes-estree": "0.23.1"
+ }
+ },
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/hoist-non-react-statics/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "license": "MIT"
+ },
+ "node_modules/hosted-git-info": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
+ "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^10.0.1"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/hosted-git-info/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "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",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/http-errors/node_modules/statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "license": "MIT",
+ "engines": {
+ "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",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "license": "Apache-2.0",
+ "engines": {
+ "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",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/image-size": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz",
+ "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==",
+ "license": "MIT",
+ "dependencies": {
+ "queue": "6.0.2"
+ },
+ "bin": {
+ "image-size": "bin/image-size.js"
+ },
+ "engines": {
+ "node": ">=16.x"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
+ "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==",
+ "license": "MIT",
+ "dependencies": {
+ "caller-path": "^2.0.0",
+ "resolve-from": "^3.0.0"
},
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/expo-modules-autolinking/node_modules/universalify": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "node_modules/import-fresh/node_modules/resolve-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+ "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==",
"license": "MIT",
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=4"
}
},
- "node_modules/expo-modules-core": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-2.0.3.tgz",
- "integrity": "sha512-S/Ozg6NhLkMc7k+qSLzOtjCexuimkYXHM/PCZtbn53nkuNYyaLpfVfrsJsRWxLIMe8ftbm6cDrKlN5mJ6lNODg==",
+ "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": {
- "invariant": "^2.2.4"
+ "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/expo-status-bar": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-2.0.0.tgz",
- "integrity": "sha512-vxxdpvpNDMTEc5uTiIrbTvySKKUsOACmfl8OZuUdjNle05oGqwtq3v5YObwym/njSByjoyuZX8UpXBZnxvarwQ==",
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"license": "MIT",
- "peerDependencies": {
- "react": "*",
- "react-native": "*"
+ "engines": {
+ "node": ">=0.8.19"
}
},
- "node_modules/exponential-backoff": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
- "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==",
- "license": "Apache-2.0"
+ "node_modules/indent-string": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+ "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
},
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "license": "MIT"
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "license": "ISC",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
},
- "node_modules/fast-glob": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
- "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ini": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+ "license": "ISC"
+ },
+ "node_modules/internal-ip": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
+ "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==",
"license": "MIT",
"dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.4"
+ "default-gateway": "^4.2.0",
+ "ipaddr.js": "^1.9.0"
},
"engines": {
- "node": ">=8.6.0"
+ "node": ">=6"
}
},
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "license": "MIT"
+ "node_modules/internal-slot": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
+ "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
},
- "node_modules/fastq": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
- "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "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",
- "dependencies": {
- "reusify": "^1.0.4"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/fb-watchman": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
- "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
- "license": "Apache-2.0",
+ "node_modules/invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "license": "MIT",
"dependencies": {
- "bser": "2.1.1"
+ "loose-envify": "^1.0.0"
}
},
- "node_modules/fbemitter": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz",
- "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "fbjs": "^3.0.0"
+ "node_modules/ip-regex": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
+ "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/fbjs": {
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-array-buffer": {
"version": "3.0.5",
- "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz",
- "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
+ "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "cross-fetch": "^3.1.5",
- "fbjs-css-vars": "^1.0.0",
- "loose-envify": "^1.0.0",
- "object-assign": "^4.1.0",
- "promise": "^7.1.1",
- "setimmediate": "^1.0.5",
- "ua-parser-js": "^1.0.35"
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/fbjs-css-vars": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz",
- "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==",
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
"license": "MIT"
},
- "node_modules/fetch-retry": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz",
- "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==",
+ "node_modules/is-async-function": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
+ "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "async-function": "^1.0.0",
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.1",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bigint": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
+ "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-bigints": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
+ "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-buffer": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
"license": "MIT"
},
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "node_modules/is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.15.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
+ "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
+ "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "to-regex-range": "^5.0.1"
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "is-typed-array": "^1.1.13"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/filter-obj": {
+ "node_modules/is-date-object": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz",
- "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
+ "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/finalhandler": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
- "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
+ "node_modules/is-directory": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
+ "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==",
"license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "on-finished": "~2.3.0",
- "parseurl": "~1.3.3",
- "statuses": "~1.5.0",
- "unpipe": "~1.0.0"
- },
"engines": {
- "node": ">= 0.8"
+ "node": ">=0.10.0"
}
},
- "node_modules/finalhandler/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "node_modules/is-docker": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"license": "MIT",
- "dependencies": {
- "ms": "2.0.0"
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/finalhandler/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "license": "MIT"
- },
- "node_modules/find-cache-dir": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
- "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
- },
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/find-up": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "node_modules/is-finalizationregistry": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
+ "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "locate-path": "^6.0.0",
- "path-exists": "^4.0.0"
+ "call-bound": "^1.0.3"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/flow-enums-runtime": {
- "version": "0.0.6",
- "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz",
- "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==",
- "license": "MIT"
- },
- "node_modules/flow-parser": {
- "version": "0.253.0",
- "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.253.0.tgz",
- "integrity": "sha512-EbxtzRIzp8dDSzTloPhsc6uOvrEFIyu08cqQzXBWLAgxK+i2d/5qOos9ryQHRmk+RyDDXfnz/7qteh3jnAlc4w==",
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"license": "MIT",
"engines": {
- "node": ">=0.4.0"
+ "node": ">=8"
}
},
- "node_modules/fontfaceobserver": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz",
- "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==",
- "license": "BSD-2-Clause"
+ "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/foreground-child": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
- "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
- "license": "ISC",
+ "node_modules/is-generator-function": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
+ "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.0",
- "signal-exit": "^4.0.1"
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.0",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
},
"engines": {
- "node": ">=14"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/form-data": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz",
- "integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==",
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"license": "MIT",
"dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
+ "is-extglob": "^2.1.1"
},
"engines": {
- "node": ">= 6"
+ "node": ">=0.10.0"
}
},
- "node_modules/freeport-async": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz",
- "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==",
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
+ "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/fresh": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"license": "MIT",
"engines": {
- "node": ">= 0.6"
+ "node": ">=0.12.0"
}
},
- "node_modules/fs-extra": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
- "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "node_modules/is-number-object": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
+ "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
- "node": ">=6 <7 || >=8"
- }
- },
- "node_modules/fs-minipass": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz",
- "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
- "license": "ISC",
- "dependencies": {
- "minipass": "^7.0.3"
+ "node": ">= 0.4"
},
- "engines": {
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "license": "ISC"
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "hasInstallScript": true,
+ "node_modules/is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
"license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
"engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ "node": ">=6"
}
},
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "node_modules/is-path-inside": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
+ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
"license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "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==",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=6.9.0"
+ "node": ">=8"
}
},
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "license": "ISC",
+ "node_modules/is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "license": "MIT",
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": ">=0.10.0"
}
},
- "node_modules/get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "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-regex": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
"engines": {
- "node": ">=8.0.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/get-port": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz",
- "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==",
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
+ "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/get-stream": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
+ "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "pump": "^3.0.0"
+ "call-bound": "^1.0.3"
},
"engines": {
- "node": ">=6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/getenv": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz",
- "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==",
+ "node_modules/is-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+ "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
"license": "MIT",
"engines": {
- "node": ">=6"
+ "node": ">=0.10.0"
}
},
- "node_modules/glob": {
- "version": "10.4.5",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
- "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
- "license": "ISC",
+ "node_modules/is-string": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
+ "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "foreground-child": "^3.1.0",
- "jackspeak": "^3.1.2",
- "minimatch": "^9.0.4",
- "minipass": "^7.1.2",
- "package-json-from-dist": "^1.0.0",
- "path-scurry": "^1.11.1"
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
},
- "bin": {
- "glob": "dist/esm/bin.mjs"
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "license": "ISC",
+ "node_modules/is-symbol": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
+ "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "is-glob": "^4.0.1"
+ "call-bound": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "safe-regex-test": "^1.1.0"
},
"engines": {
- "node": ">= 6"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/glob/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "node_modules/is-typed-array": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
+ "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/glob/node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
+ "which-typed-array": "^1.1.16"
},
"engines": {
- "node": ">=16 || 14 >=14.17"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
+ "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
+ "dev": true,
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/globby": {
- "version": "11.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
- "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "node_modules/is-weakref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
+ "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "array-union": "^2.1.0",
- "dir-glob": "^3.0.1",
- "fast-glob": "^3.2.9",
- "ignore": "^5.2.0",
- "merge2": "^1.4.1",
- "slash": "^3.0.0"
+ "call-bound": "^1.0.3"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "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",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "license": "ISC"
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "node_modules/is-weakset": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
+ "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
"engines": {
- "node": ">=8"
+ "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",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "node_modules/is-wsl": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"license": "MIT",
"dependencies": {
- "function-bind": "^1.1.2"
+ "is-docker": "^2.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=8"
}
},
- "node_modules/hermes-estree": {
- "version": "0.23.1",
- "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz",
- "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==",
+ "node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
"license": "MIT"
},
- "node_modules/hermes-parser": {
- "version": "0.23.1",
- "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz",
- "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==",
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "license": "ISC"
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/istanbul-lib-coverage": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/istanbul-lib-instrument": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
+ "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
+ "license": "BSD-3-Clause",
"dependencies": {
- "hermes-estree": "0.23.1"
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/hoist-non-react-statics": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
- "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "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": {
- "react-is": "^16.7.0"
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^4.0.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/hoist-non-react-statics/node_modules/react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
- "license": "MIT"
+ "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/hosted-git-info": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
- "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
- "license": "ISC",
+ "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": {
- "lru-cache": "^10.0.1"
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
},
"engines": {
- "node": "^16.14.0 || >=18.0.0"
+ "node": ">=8"
}
},
- "node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
- "license": "ISC"
+ "node_modules/iterator.prototype": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
+ "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "get-proto": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
},
- "node_modules/http-errors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
- "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "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": {
- "depd": "2.0.0",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "toidentifier": "1.0.1"
+ "execa": "^5.0.0",
+ "jest-util": "^29.7.0",
+ "p-limit": "^3.1.0"
},
"engines": {
- "node": ">= 0.8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/http-errors/node_modules/statuses": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "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": ">= 0.8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "license": "Apache-2.0",
+ "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.17.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
+ "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/ignore": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "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": ">= 4"
+ "node": ">=6"
}
},
- "node_modules/image-size": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz",
- "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==",
+ "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": {
- "queue": "6.0.2"
- },
- "bin": {
- "image-size": "bin/image-size.js"
+ "path-key": "^3.0.0"
},
"engines": {
- "node": ">=16.x"
+ "node": ">=8"
}
},
- "node_modules/import-fresh": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
- "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==",
+ "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": {
- "caller-path": "^2.0.0",
- "resolve-from": "^3.0.0"
+ "mimic-fn": "^2.1.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/import-fresh/node_modules/resolve-from": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
- "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==",
+ "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": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "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": ">=0.8.19"
+ "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/indent-string": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+ "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": ">=8"
+ "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/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
- "license": "ISC",
+ "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": {
- "once": "^1.3.0",
- "wrappy": "1"
+ "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/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
- "node_modules/ini": {
- "version": "1.3.8",
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
- "license": "ISC"
- },
- "node_modules/internal-ip": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
- "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==",
+ "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": {
- "default-gateway": "^4.2.0",
- "ipaddr.js": "^1.9.0"
+ "detect-newline": "^3.0.0"
},
"engines": {
- "node": ">=6"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/invariant": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "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": {
- "loose-envify": "^1.0.0"
+ "@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/ip-regex": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
- "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==",
+ "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": ">=4"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "peerDependencies": {
+ "canvas": "^2.5.0"
+ },
+ "peerDependenciesMeta": {
+ "canvas": {
+ "optional": true
+ }
}
},
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "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": ">= 0.10"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "license": "MIT"
- },
- "node_modules/is-buffer": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
- "license": "MIT"
+ "node_modules/jest-expo": {
+ "version": "52.0.6",
+ "resolved": "https://registry.npmjs.org/jest-expo/-/jest-expo-52.0.6.tgz",
+ "integrity": "sha512-Ql60mCy4cfwyNvCW2wpEXbw/3i5H+SmB1XP1z0SJUpafGBipq6xMjPcgQpe/7PzAHTc/ikD+dFA0sPnljDJmZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@expo/config": "~10.0.11",
+ "@expo/json-file": "^9.0.2",
+ "@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/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
+ "node_modules/jest-expo/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "hasown": "^2.0.2"
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
},
"engines": {
- "node": ">= 0.4"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/ljharb"
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-directory": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
- "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==",
+ "node_modules/jest-expo/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-docker": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+ "node_modules/jest-expo/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
"license": "MIT",
- "bin": {
- "is-docker": "cli.js"
+ "dependencies": {
+ "p-limit": "^3.0.2"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "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/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "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",
- "engines": {
- "node": ">=8"
+ "peer": true,
+ "dependencies": {
+ "scheduler": "0.25.0-rc-6230622a1a-20240610"
+ },
+ "peerDependencies": {
+ "react": "19.0.0-rc-6230622a1a-20240610"
}
},
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "node_modules/jest-expo/node_modules/react-dom/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-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": {
- "is-extglob": "^2.1.1"
+ "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/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "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",
- "engines": {
- "node": ">=0.12.0"
+ "dependencies": {
+ "react-is": "^18.3.1",
+ "react-shallow-renderer": "^16.15.0",
+ "scheduler": "^0.23.2"
+ },
+ "peerDependencies": {
+ "react": "^18.3.1"
}
},
- "node_modules/is-path-cwd": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
- "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "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",
- "engines": {
- "node": ">=6"
+ "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/is-path-inside": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
+ "node_modules/jest-get-type": {
+ "version": "29.6.3",
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
+ "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "node_modules/jest-haste-map": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
+ "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
"license": "MIT",
"dependencies": {
- "isobject": "^3.0.1"
+ "@jest/types": "^29.6.3",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.6.3",
+ "jest-util": "^29.7.0",
+ "jest-worker": "^29.7.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
}
},
- "node_modules/is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
+ "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": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/is-wsl": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+ "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": {
- "is-docker": "^2.0.0"
+ "chalk": "^4.0.0",
+ "jest-diff": "^29.7.0",
+ "jest-get-type": "^29.6.3",
+ "pretty-format": "^29.7.0"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
- "license": "MIT"
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "license": "ISC"
- },
- "node_modules/isobject": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
+ "node_modules/jest-message-util": {
+ "version": "29.7.0",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz",
+ "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
"license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
- "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-instrument": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
- "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
- "license": "BSD-3-Clause",
"dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.6.3",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.7.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
},
"engines": {
- "node": ">=8"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "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/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": {
- "@isaacs/cliui": "^8.0.2"
+ "@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"
},
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "peerDependencies": {
+ "jest-resolve": "*"
},
- "optionalDependencies": {
- "@pkgjs/parseargs": "^0.11.0"
+ "peerDependenciesMeta": {
+ "jest-resolve": {
+ "optional": true
+ }
}
},
- "node_modules/jest-environment-node": {
+ "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-environment-node/-/jest-environment-node-29.7.0.tgz",
- "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz",
+ "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
+ "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"
+ "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-get-type": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
- "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
+ "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-haste-map": {
+ "node_modules/jest-runner": {
"version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
- "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
+ "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/graceful-fs": "^4.1.3",
"@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
"graceful-fs": "^4.2.9",
- "jest-regex-util": "^29.6.3",
+ "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",
- "micromatch": "^4.0.4",
- "walker": "^1.0.8"
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "optionalDependencies": {
- "fsevents": "^2.3.2"
}
},
- "node_modules/jest-message-util": {
+ "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-message-util/-/jest-message-util-29.7.0.tgz",
- "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz",
+ "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
+ "@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/stack-utils": "^2.0.0",
+ "@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",
- "micromatch": "^4.0.4",
- "pretty-format": "^29.7.0",
+ "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",
- "stack-utils": "^2.0.3"
+ "strip-bom": "^4.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "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": {
@@ -6826,6 +11819,156 @@
"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/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "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-watch-typeahead/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "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",
@@ -6932,6 +12075,85 @@
"@babel/preset-env": "^7.1.6"
}
},
+ "node_modules/jscodeshift/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==",
+ "license": "ISC"
+ },
+ "node_modules/jscodeshift/node_modules/write-file-atomic": {
+ "version": "2.4.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
+ "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
+ "license": "ISC",
+ "dependencies": {
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "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/jsesc": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
@@ -6944,12 +12166,41 @@
"node": ">=6"
}
},
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/json-parse-better-errors": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
"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/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
@@ -6971,6 +12222,38 @@
"graceful-fs": "^4.1.6"
}
},
+ "node_modules/jsx-ast-utils": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "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/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
"node_modules/kind-of": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
@@ -6989,6 +12272,26 @@
"node": ">=6"
}
},
+ "node_modules/language-subtag-registry": {
+ "version": "0.3.23",
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
+ "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/language-tags": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "language-subtag-registry": "^0.3.20"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
"node_modules/leven": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
@@ -6998,6 +12301,20 @@
"node": ">=6"
}
},
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
"node_modules/lighthouse-logger": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz",
@@ -7051,186 +12368,6 @@
"lightningcss-win32-x64-msvc": "1.27.0"
}
},
- "node_modules/lightningcss-darwin-arm64": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz",
- "integrity": "sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-darwin-x64": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz",
- "integrity": "sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-freebsd-x64": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz",
- "integrity": "sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz",
- "integrity": "sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==",
- "cpu": [
- "arm"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz",
- "integrity": "sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz",
- "integrity": "sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz",
- "integrity": "sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-linux-x64-musl": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz",
- "integrity": "sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==",
- "cpu": [
- "x64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.27.0",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz",
- "integrity": "sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MPL-2.0",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
"node_modules/lightningcss-win32-x64-msvc": {
"version": "1.27.0",
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz",
@@ -7257,19 +12394,27 @@
"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",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"license": "MIT",
"dependencies": {
- "p-locate": "^5.0.0"
+ "p-locate": "^4.1.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
"node_modules/lodash": {
@@ -7284,6 +12429,26 @@
"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.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/lodash.throttle": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
@@ -7395,25 +12560,32 @@
}
},
"node_modules/make-dir": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
- "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "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": {
- "pify": "^4.0.1",
- "semver": "^5.6.0"
+ "semver": "^7.5.3"
},
"engines": {
- "node": ">=6"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/make-dir/node_modules/semver": {
- "version": "5.7.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
- "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "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"
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
"node_modules/makeerror": {
@@ -7431,6 +12603,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",
@@ -7469,6 +12651,19 @@
"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==",
+ "dev": true,
+ "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",
@@ -7509,7 +12704,7 @@
"hermes-parser": "0.24.0",
"image-size": "^1.0.2",
"invariant": "^2.2.4",
- "jest-worker": "^29.6.3",
+ "jest-worker": "^29.7.0",
"jsc-safe-url": "^0.2.2",
"lodash.throttle": "^4.1.1",
"metro-babel-transformer": "0.81.0",
@@ -7641,7 +12836,7 @@
"flow-enums-runtime": "^0.0.6",
"graceful-fs": "^4.2.4",
"invariant": "^2.2.4",
- "jest-worker": "^29.6.3",
+ "jest-worker": "^29.7.0",
"micromatch": "^4.0.4",
"node-abort-controller": "^3.1.1",
"nullthrows": "^1.1.1",
@@ -7669,17 +12864,81 @@
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"license": "MIT"
},
- "node_modules/metro-minify-terser": {
- "version": "0.81.0",
- "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.81.0.tgz",
- "integrity": "sha512-U2ramh3W822ZR1nfXgIk+emxsf5eZSg10GbQrT0ZizImK8IZ5BmJY+BHRIkQgHzWFpExOVxC7kWbGL1bZALswA==",
+ "node_modules/metro-minify-terser": {
+ "version": "0.81.0",
+ "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.81.0.tgz",
+ "integrity": "sha512-U2ramh3W822ZR1nfXgIk+emxsf5eZSg10GbQrT0ZizImK8IZ5BmJY+BHRIkQgHzWFpExOVxC7kWbGL1bZALswA==",
+ "license": "MIT",
+ "dependencies": {
+ "flow-enums-runtime": "^0.0.6",
+ "terser": "^5.15.0"
+ },
+ "engines": {
+ "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",
- "dependencies": {
- "flow-enums-runtime": "^0.0.6",
- "terser": "^5.15.0"
- },
"engines": {
- "node": ">=18.18"
+ "node": ">=0.10.0"
}
},
"node_modules/metro-resolver": {
@@ -7728,6 +12987,15 @@
"node": ">=18.18"
}
},
+ "node_modules/metro-source-map/node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/metro-symbolicate": {
"version": "0.81.0",
"resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.81.0.tgz",
@@ -7749,6 +13017,15 @@
"node": ">=18.18"
}
},
+ "node_modules/metro-symbolicate/node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/metro-transform-plugins": {
"version": "0.81.0",
"resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.81.0.tgz",
@@ -7826,6 +13103,15 @@
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"license": "MIT"
},
+ "node_modules/metro/node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/metro/node_modules/strip-ansi": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
@@ -8098,9 +13384,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",
@@ -8115,6 +13401,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",
@@ -8180,6 +13473,28 @@
}
}
},
+ "node_modules/node-fetch/node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "license": "MIT"
+ },
+ "node_modules/node-fetch/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/node-fetch/node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "license": "MIT",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
"node_modules/node-forge": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
@@ -8196,9 +13511,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": {
@@ -8276,6 +13591,13 @@
"integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==",
"license": "MIT"
},
+ "node_modules/nwsapi": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.18.tgz",
+ "integrity": "sha512-p1TRH/edngVEHVbwqWnxUViEmq5znDvyB+Sik5cmuLpGOIfDf/39zLiq3swPF8Vakqn+gvNiOQAZu8djYlQILA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/ob1": {
"version": "0.81.0",
"resolved": "https://registry.npmjs.org/ob1/-/ob1-0.81.0.tgz",
@@ -8297,6 +13619,118 @@
"node": ">=0.10.0"
}
},
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
+ "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz",
+ "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
+ "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/on-finished": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
@@ -8355,6 +13789,24 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
"node_modules/ora": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz",
@@ -8473,6 +13925,24 @@
"node": ">=0.10.0"
}
},
+ "node_modules/own-keys": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
+ "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "get-intrinsic": "^1.2.6",
+ "object-keys": "^1.1.1",
+ "safe-push-apply": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/p-finally": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
@@ -8498,15 +13968,27 @@
}
},
"node_modules/p-locate": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"license": "MIT",
"dependencies": {
- "p-limit": "^3.0.2"
+ "p-limit": "^2.2.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-locate/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==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -8542,17 +14024,36 @@
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
"license": "BlueOak-1.0.0"
},
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==",
+ "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-better-errors": "^1.0.1"
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/parse-png": {
@@ -8567,6 +14068,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",
@@ -8650,6 +14164,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",
@@ -8662,101 +14185,41 @@
"integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==",
"license": "MIT",
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pify": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
- "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
- "license": "MIT",
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pkg-dir": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
- "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
- "license": "MIT",
- "dependencies": {
- "find-up": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pkg-dir/node_modules/find-up": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
- "license": "MIT",
- "dependencies": {
- "locate-path": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pkg-dir/node_modules/locate-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
- "license": "MIT",
- "dependencies": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pkg-dir/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==",
- "license": "MIT",
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
+ "node": ">=10"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/pkg-dir/node_modules/p-locate": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "node_modules/pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
"license": "MIT",
- "dependencies": {
- "p-limit": "^2.0.0"
- },
"engines": {
"node": ">=6"
}
},
- "node_modules/pkg-dir/node_modules/path-exists": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "node_modules/pirates": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
+ "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
"license": "MIT",
"engines": {
- "node": ">=4"
+ "node": ">= 6"
+ }
+ },
+ "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/plist": {
@@ -8800,6 +14263,25 @@
"node": ">=4.0.0"
}
},
+ "node_modules/point-in-polygon": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/possible-typed-array-names": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/postcss": {
"version": "8.4.49",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
@@ -8828,6 +14310,45 @@
"node": "^10 || ^12 || >=14"
}
},
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/prettier-linter-helpers": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
+ "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-diff": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
"node_modules/pretty-bytes": {
"version": "5.6.0",
"resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
@@ -8929,6 +14450,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",
@@ -8948,6 +14482,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",
@@ -8974,6 +14525,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",
@@ -9003,6 +14561,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",
@@ -9027,6 +14596,15 @@
"rc": "cli.js"
}
},
+ "node_modules/rc/node_modules/strip-json-comments": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/react": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
@@ -9070,6 +14648,19 @@
}
}
},
+ "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-freeze": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz",
@@ -9149,6 +14740,62 @@
}
}
},
+ "node_modules/react-native-actionsheet": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/react-native-actionsheet/-/react-native-actionsheet-2.4.2.tgz",
+ "integrity": "sha512-DBoWIvVwuWXuptF4t46pBqkFxaUxS+rsIdHiA05t0n4BdTIDV2R4s9bLEUVOGzb94D7VxIamsXZPA/3mmw+SXg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "prop-types": ">=15.4.0",
+ "react": ">=15.4.0",
+ "react-native": "*"
+ }
+ },
+ "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",
+ "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 +14834,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",
@@ -9277,27 +14937,6 @@
"node": ">=18"
}
},
- "node_modules/react-native/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/react-native/node_modules/promise": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz",
@@ -9313,6 +14952,15 @@
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
"license": "MIT"
},
+ "node_modules/react-native/node_modules/scheduler": {
+ "version": "0.24.0-canary-efb381bbf-20230505",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz",
+ "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ }
+ },
"node_modules/react-native/node_modules/semver": {
"version": "7.6.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
@@ -9385,13 +15033,27 @@
"node": ">= 4"
}
},
- "node_modules/recast/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==",
- "license": "BSD-3-Clause",
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
+ "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.1",
+ "which-builtin-type": "^1.2.1"
+ },
"engines": {
- "node": ">=0.10.0"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/regenerate": {
@@ -9427,6 +15089,27 @@
"@babel/runtime": "^7.8.4"
}
},
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
+ "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/regexpu-core": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz",
@@ -9508,6 +15191,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",
@@ -9525,6 +15215,19 @@
"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": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
@@ -9569,9 +15272,9 @@
"license": "ISC"
},
"node_modules/reusify": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
"license": "MIT",
"engines": {
"iojs": ">=1.0.0",
@@ -9594,26 +15297,11 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/rimraf/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/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",
@@ -9638,6 +15326,39 @@
"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-array-concat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
+ "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "has-symbols": "^1.1.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-array-concat/node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
@@ -9658,21 +15379,103 @@
],
"license": "MIT"
},
+ "node_modules/safe-push-apply": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
+ "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-push-apply/node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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",
"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",
- "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==",
+ "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/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",
@@ -9773,6 +15576,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",
@@ -9866,6 +15680,62 @@
"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/set-function-length": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
+ "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
@@ -9920,16 +15790,80 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/signal-exit": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
- "license": "ISC",
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
"engines": {
- "node": ">=14"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/isaacs"
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/simple-plist": {
@@ -10004,9 +15938,9 @@
}
},
"node_modules/source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
@@ -10031,15 +15965,6 @@
"source-map": "^0.6.0"
}
},
- "node_modules/source-map-support/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==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/split": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz",
@@ -10079,6 +16004,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",
@@ -10106,6 +16041,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",
@@ -10169,21 +16137,45 @@
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"license": "MIT"
},
- "node_modules/string-width": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "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": {
- "eastasianwidth": "^0.2.0",
- "emoji-regex": "^9.2.2",
- "strip-ansi": "^7.0.1"
+ "char-regex": "^1.0.2",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=12"
+ "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"
},
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
"node_modules/string-width-cjs": {
@@ -10201,37 +16193,129 @@
"node": ">=8"
}
},
- "node_modules/string-width-cjs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
+ "node_modules/string.prototype.includes": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
+ "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
},
- "node_modules/string-width-cjs/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==",
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.12",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
+ "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1"
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.6",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "regexp.prototype.flags": "^1.5.3",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/strip-ansi": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "node_modules/string.prototype.repeat": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
+ "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^6.0.1"
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
+ "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-data-property": "^1.1.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-object-atoms": "^1.0.0",
+ "has-property-descriptors": "^1.0.2"
},
"engines": {
- "node": ">=12"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
+ "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
+ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "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==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
}
},
"node_modules/strip-ansi-cjs": {
@@ -10247,16 +16331,14 @@
"node": ">=8"
}
},
- "node_modules/strip-ansi/node_modules/ansi-regex": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "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": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ "node": ">=8"
}
},
"node_modules/strip-eof": {
@@ -10278,12 +16360,16 @@
}
},
"node_modules/strip-json-comments": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
+ "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": ">=0.10.0"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/structured-headers": {
@@ -10314,6 +16400,15 @@
"node": ">=16 || 14 >=14.17"
}
},
+ "node_modules/sucrase/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
"node_modules/sucrase/node_modules/commander": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
@@ -10323,12 +16418,56 @@
"node": ">= 6"
}
},
+ "node_modules/sucrase/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/sucrase/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/sudo-prompt": {
"version": "8.2.5",
"resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz",
"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",
@@ -10366,6 +16505,41 @@
"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/synckit": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz",
+ "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@pkgr/core": "^0.1.0",
+ "tslib": "^2.6.2"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/unts"
+ }
+ },
+ "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",
@@ -10455,27 +16629,6 @@
"node": ">=8"
}
},
- "node_modules/temp/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/temp/node_modules/rimraf": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
@@ -10566,6 +16719,75 @@
"node": ">=10"
}
},
+ "node_modules/terser-webpack-plugin": {
+ "version": "5.3.14",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz",
+ "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==",
+ "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",
@@ -10586,26 +16808,12 @@
"node": ">=8"
}
},
- "node_modules/test-exclude/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/text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
+ "dev": true,
+ "license": "MIT"
},
"node_modules/thenify": {
"version": "3.3.1",
@@ -10689,11 +16897,44 @@
"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",
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
- "license": "MIT"
+ "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/ts-interface-checker": {
"version": "0.1.13",
@@ -10701,12 +16942,61 @@
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
"license": "Apache-2.0"
},
+ "node_modules/tsconfig-paths": {
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "node_modules/tsconfig-paths/node_modules/json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/tsconfig-paths/node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"license": "0BSD"
},
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
"node_modules/type-detect": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
@@ -10722,10 +17012,88 @@
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"license": "(MIT OR CC0-1.0)",
"engines": {
- "node": ">=10"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
+ "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
+ "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
+ "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.15",
+ "reflect.getprototypeof": "^1.0.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-length": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
+ "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0",
+ "reflect.getprototypeof": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/ua-parser-js": {
@@ -10754,10 +17122,29 @@
"node": "*"
}
},
+ "node_modules/unbox-primitive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
+ "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "which-boxed-primitive": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"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"
@@ -10893,6 +17280,27 @@
"browserslist": ">= 4.21.0"
}
},
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "punycode": "^2.1.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",
@@ -10903,12 +17311,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": {
@@ -10935,6 +17343,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",
@@ -10959,6 +17382,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",
@@ -10974,6 +17410,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",
@@ -10993,10 +17444,86 @@
}
},
"node_modules/webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
- "license": "BSD-2-Clause"
+ "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/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",
@@ -11004,14 +17531,28 @@
"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",
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "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": "~0.0.3",
- "webidl-conversions": "^3.0.0"
+ "tr46": "^3.0.0",
+ "webidl-conversions": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
}
},
"node_modules/whatwg-url-without-unicode": {
@@ -11052,109 +17593,151 @@
"node": ">= 8"
}
},
- "node_modules/wonka": {
- "version": "6.3.4",
- "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz",
- "integrity": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==",
- "license": "MIT"
- },
- "node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "node_modules/which-boxed-primitive": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
+ "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.1",
+ "is-number-object": "^1.1.1",
+ "is-string": "^1.1.1",
+ "is-symbol": "^1.1.1"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/wrap-ansi-cjs": {
- "name": "wrap-ansi",
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "node_modules/which-builtin-type": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
+ "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "function.prototype.name": "^1.1.6",
+ "has-tostringtag": "^1.0.2",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.1.0",
+ "is-finalizationregistry": "^1.1.0",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.2.1",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.1.0",
+ "which-collection": "^1.0.2",
+ "which-typed-array": "^1.1.16"
},
"engines": {
- "node": ">=10"
+ "node": ">= 0.4"
},
"funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "node_modules/which-builtin-type/node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true,
"license": "MIT"
},
- "node_modules/wrap-ansi-cjs/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
+ "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/wrap-ansi-cjs/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==",
+ "node_modules/which-typed-array": {
+ "version": "1.1.19",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
+ "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1"
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "for-each": "^0.3.5",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2"
},
"engines": {
- "node": ">=8"
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/wrap-ansi/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "node_modules/wonka": {
+ "version": "6.3.5",
+ "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.5.tgz",
+ "integrity": "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==",
"license": "MIT"
},
- "node_modules/wrap-ansi/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"license": "MIT",
"dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrap-ansi/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==",
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"license": "MIT",
"dependencies": {
- "ansi-regex": "^5.0.1"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/wrappy": {
@@ -11164,14 +17747,16 @@
"license": "ISC"
},
"node_modules/write-file-atomic": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
- "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
"license": "ISC",
"dependencies": {
- "graceful-fs": "^4.1.11",
"imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.2"
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
"node_modules/write-file-atomic/node_modules/signal-exit": {
@@ -11223,6 +17808,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",
@@ -11254,6 +17849,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",
@@ -11305,38 +17907,6 @@
"node": ">=12"
}
},
- "node_modules/yargs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/yargs/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs/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==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
diff --git a/client/package.json b/client/package.json
index 62a0017..3cb41ad 100644
--- a/client/package.json
+++ b/client/package.json
@@ -6,19 +6,35 @@
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
- "web": "expo start --web"
+ "web": "expo start --web",
+ "test": "jest --verbose",
+ "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
+ "lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
+ "prettier": "prettier --check .",
+ "prettier:fix": "prettier --write .",
+ "format": "npm run lint:fix && npm run prettier:fix"
},
"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",
+ "crypto-js": "^4.2.0",
+ "d3": "^7.9.0",
+ "deg2rad": "^1.0.0",
"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-actionsheet": "^2.4.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",
+ "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 +42,24 @@
"react-native-websocket": "^1.0.2"
},
"devDependencies": {
- "@babel/core": "^7.24.0"
+ "@babel/core": "^7.26.9",
+ "@babel/preset-env": "^7.26.9",
+ "@react-native-async-storage/async-storage": "^2.1.2",
+ "babel-jest": "^29.7.0",
+ "babel-preset-expo": "^12.0.9",
+ "eslint": "^8.57.1",
+ "eslint-config-airbnb": "^19.0.4",
+ "eslint-config-prettier": "^10.1.1",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-jsx-a11y": "^6.10.2",
+ "eslint-plugin-prettier": "^5.2.3",
+ "eslint-plugin-react": "^7.37.4",
+ "eslint-plugin-react-hooks": "^4.6.2",
+ "jest": "^29.7.0",
+ "jest-expo": "^52.0.4",
+ "metro-react-native-babel-preset": "^0.77.0",
+ "prettier": "^3.5.3",
+ "react-native-dotenv": "^3.4.11"
},
"private": true
}
diff --git a/client/src/AccountScreen.js b/client/src/AccountScreen.js
new file mode 100644
index 0000000..0ee6483
--- /dev/null
+++ b/client/src/AccountScreen.js
@@ -0,0 +1,36 @@
+import * as React from 'react';
+import { View, SafeAreaView, TouchableOpacity, Text } from 'react-native';
+import styles from './components/styles/AccountScreen.styles';
+import buttonStyles from './components/common/button';
+
+export default function AccountScreen({ navigation }) {
+ return (
+
+
+ navigation.navigate('LoginScreen')}
+ color="#841584"
+ >
+ Log In
+
+
+ navigation.navigate('SignUpScreen')}
+ color="#841584"
+ >
+ Sign Up
+
+
+ navigation.navigate('Map')}
+ color="#841584"
+ >
+ Continue as Guest
+
+
+
+ );
+}
diff --git a/client/src/DisplayRoute.js b/client/src/DisplayRoute.js
new file mode 100644
index 0000000..ce9d897
--- /dev/null
+++ b/client/src/DisplayRoute.js
@@ -0,0 +1,266 @@
+/* eslint-disable no-undef, no-use-before-define, react-hooks/exhaustive-deps, array-callback-return */
+
+import React, { useEffect, useState, useCallback } from 'react';
+import { View, Text, Alert, TouchableOpacity, Switch } from 'react-native';
+import MapView, { Polyline, Marker } from 'react-native-maps';
+import { haversine, startLocationTracking } from './utils/mapUtils';
+import displayRouteStyles from './components/styles/DisplayRoute.styles';
+
+import locationCircleIcon from './assets/location-circle.png';
+
+export default function DisplayRouteScreen({ navigation, route }) {
+ // route is a prop passed by the navigator, hence why that is used instead of other variable names
+ const { origin, destination, routeData, polylineCoordinates } = route.params;
+ const [location, setLocation] = useState(null);
+ const [travelledPolyline, setTravelledPolyline] = useState([]);
+ const [remainingPolyline, setRemainingPolyline] =
+ useState(polylineCoordinates);
+ const [devMode, setDevMode] = useState(false);
+ const [detailedStepData, setDetailedStepData] = useState([]);
+ const [currentInstruction, setCurrentInstruction] = useState(null);
+
+ useEffect(() => {
+ setDetailedStepData([]);
+ getDetailedStepData();
+ }, [routeData]);
+
+ // Check proximity to the next coordinate in the polyline
+
+ useEffect(() => {
+ let locationSubscription;
+ // Start tracking location
+ const startTracking = async () => {
+ try {
+ locationSubscription = await startLocationTracking(
+ (currentLocation) => {
+ if (!devMode) {
+ setLocation(currentLocation);
+ checkProximityAndUpdate(currentLocation);
+ }
+ },
+ );
+ } catch (error) {
+ console.error('Error starting location tracking:', error);
+ }
+ };
+ if (!devMode) {
+ startTracking();
+ }
+ return () => {
+ if (locationSubscription) {
+ locationSubscription.remove();
+ }
+ };
+ }, [devMode, checkProximityAndUpdate]);
+
+ function removeHtmlTags(instruction) {
+ return instruction.replace(/<\/?[^>]+(>|$)/g, '');
+ }
+
+ // Creating a dictionary of step data for each step in the route
+ // Pairing locations along with the instructions of each step of the route
+ // Using this data to display the instructions on the map as the user moves along the route
+ const getDetailedStepData = () => {
+ routeData.legs[0].steps.map((step) => {
+ // Due to the complicated nature of the response some modes of transport have instructions in outer steps and other in inner
+ if (step.travel_mode !== 'TRANSIT' && step.steps) {
+ // For non-transit steps within a transit route
+ step.steps.forEach((detailedStep) => {
+ const temp = detailedStepData;
+ temp.push({
+ html_instructions: removeHtmlTags(detailedStep.html_instructions),
+ start_location: detailedStep.start_location,
+ });
+ setDetailedStepData(temp);
+ });
+ } else if (step.travel_mode === 'TRANSIT') {
+ // If the step is a transit step, add the arrival stop to the instructions
+ const temp = detailedStepData;
+ temp.push({
+ html_instructions: `${removeHtmlTags(step.html_instructions)} until ${step.transit_details.arrival_stop.name}`,
+ start_location: step.start_location,
+ });
+ setDetailedStepData(temp);
+ } else {
+ // For non transit routes
+ const temp = detailedStepData;
+ temp.push({
+ html_instructions: removeHtmlTags(step.html_instructions),
+ start_location: step.start_location,
+ });
+ setDetailedStepData(temp);
+ }
+ return null;
+ });
+ };
+
+ const checkProximityAndUpdate = useCallback(
+ (currentLocation) => {
+ for (let i = 0; i < remainingPolyline.length; i += 1) {
+ const distance = haversine(currentLocation, remainingPolyline[i]);
+
+ // Assuming 50 meters as the proximity threshold
+ if (distance < 50) {
+ setTravelledPolyline((prev) => [
+ ...prev,
+ ...remainingPolyline.slice(0, i),
+ ]);
+ setRemainingPolyline((prev) => prev.slice(i));
+
+ if (remainingPolyline.length === 1) {
+ Alert.alert(
+ 'Destination reached',
+ 'You have reached your destination.',
+ );
+ // TODO: maybe navigate to sustainability
+ navigation.navigate('Map');
+ } else {
+ // Update instruction if previous instruction complete
+ for (let j = 0; j < detailedStepData.length; j += 1) {
+ const instructionLocation = {
+ latitude: detailedStepData[j].start_location.lat,
+ longitude: detailedStepData[j].start_location.lng,
+ };
+ const instructionDistance = haversine(
+ currentLocation,
+ instructionLocation,
+ );
+ if (instructionDistance < 50) {
+ setCurrentInstruction(detailedStepData[j].html_instructions);
+ setDetailedStepData((prev) => prev.slice(j));
+ }
+ }
+ }
+ break;
+ }
+ }
+ },
+ [remainingPolyline, navigation, detailedStepData],
+ );
+
+ // Call checkProximityAndUpdate and update setlocation on latitude / longitude button click
+ const devMove = ({ delLat = 0, delLng = 0 }) => {
+ const newLocation = {
+ latitude: location.latitude + delLat,
+ longitude: location.longitude + delLng,
+ };
+
+ setLocation(newLocation);
+ checkProximityAndUpdate(newLocation);
+ };
+
+ const toggleDevMode = (value) => {
+ setDevMode(value);
+ if (value) {
+ // Set initial location to the first coordinate in the polyline
+ setLocation(polylineCoordinates[0]);
+ }
+ };
+
+ return (
+
+ {location && routeData ? (
+ <>
+
+
+ {currentInstruction != null ? (
+
+ {currentInstruction}
+
+ ) : (
+ <>
+
+ Route from {origin} to {destination}
+
+
+ Distance: {routeData.legs[0].distance.text}
+
+
+ Duration: {routeData.legs[0].duration.text}
+
+ >
+ )}
+
+
+ Dev Mode
+ toggleDevMode(value)}
+ />
+
+
+
+
+ {polylineCoordinates && polylineCoordinates.length > 0 && (
+
+ )}
+ {polylineCoordinates && polylineCoordinates.length > 0 && (
+
+ )}
+ {travelledPolyline.length > 0 && (
+
+ )}
+
+ {devMode && (
+
+ devMove({ delLat: 0.0003 })}
+ style={displayRouteStyles.dpadButton}
+ >
+ lat +
+
+
+ devMove({ delLng: -0.0004 })}
+ style={displayRouteStyles.dpadButton}
+ >
+ long -
+
+ devMove({ delLng: 0.0004 })}
+ style={displayRouteStyles.dpadButton}
+ >
+ long +
+
+
+ devMove({ delLat: -0.0003 })}
+ style={displayRouteStyles.dpadButton}
+ >
+ lat -
+
+
+ )}
+ >
+ ) : (
+
+ Fetching your location...
+
+ )}
+
+ );
+}
diff --git a/client/src/FindRoute.js b/client/src/FindRoute.js
new file mode 100644
index 0000000..1150068
--- /dev/null
+++ b/client/src/FindRoute.js
@@ -0,0 +1,153 @@
+import * as React from 'react';
+import { useState, useRef } from 'react';
+import {
+ Platform,
+ SafeAreaView,
+ TextInput,
+ TouchableOpacity,
+ Text,
+} from 'react-native';
+import Picker from 'react-native-picker-select';
+import ActionSheet from 'react-native-actionsheet';
+import {
+ findRouteStyles,
+ pickerSelectStyles,
+} from './components/styles/FindRoute.styles';
+import { retrieveData } from './caching';
+
+export default function FindRouteScreen({ navigation }) {
+ const pickerRef = useRef();
+ const actionSheetRef = useRef();
+ const [start, setStartPoint] = useState('');
+ const [destination, setDestinationPoint] = useState('');
+ const ref2 = React.useRef(null);
+
+ const [selectedMode, setSelectedMode] = useState(null);
+
+ const isFormValid = start.trim() !== '' && destination.trim() !== '';
+
+ const fetchRoutes = async () => {
+ let username = await retrieveData('username');
+ if (username == null) {
+ username = '';
+ }
+
+ try {
+ const payload = {
+ origin: start,
+ destination,
+ mode: selectedMode,
+ alternatives: true,
+ username,
+ };
+
+ const baseUrl =
+ Platform.OS === 'web'
+ ? 'http://localhost:8000'
+ : process.env.EXPO_PUBLIC_API_URL;
+ console.log(
+ `Sending request to ${baseUrl}/wayfinding/preferences/get_routes`,
+ );
+
+ const response = await fetch(
+ `${baseUrl}/wayfinding/preferences/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();
+
+ // Navigate to SelectRouteScreen with the response data
+ navigation.navigate('SelectRouteScreen', {
+ origin: start,
+ destination,
+ routeData: data,
+ });
+ } catch (error) {
+ console.error('Error details:', error);
+ }
+ };
+
+ const modeDropdownData = [
+ { label: 'Walking', value: 'walking' },
+ { label: 'Driving', value: 'driving' },
+ { label: 'Transit', value: 'transit' },
+ ];
+
+ const handlePickerSelect = (value) => {
+ setSelectedMode(value);
+ };
+
+ return (
+
+ setStartPoint(text)}
+ onSubmitEditing={() => ref2.current.focus()}
+ />
+ setDestinationPoint(text)}
+ onSubmitEditing={() => alert(`Route Entered`)}
+ />
+
+ Select an option:
+ {Platform.OS === 'android' ? (
+ pickerRef.current.togglePicker()}>
+
+
+ ) : (
+ <>
+ actionSheetRef.current.show()}>
+ Choose an option...
+
+ item.label)
+ .concat('Cancel')}
+ cancelButtonIndex={modeDropdownData.length}
+ onPress={(index) => {
+ if (index !== modeDropdownData.length) {
+ handlePickerSelect(modeDropdownData[index].value);
+ }
+ }}
+ />
+ >
+ )}
+ {selectedMode && (
+ Selected: {selectedMode}
+ )}
+
+
+ {/* activeOpacity={isFormValid ? 0.7 : 1} */}
+ Search
+
+
+ );
+}
diff --git a/client/src/FriendsScreen.js b/client/src/FriendsScreen.js
new file mode 100644
index 0000000..783e71b
--- /dev/null
+++ b/client/src/FriendsScreen.js
@@ -0,0 +1,342 @@
+import React, { useState, useEffect } from 'react';
+import {
+ View,
+ Text,
+ TextInput,
+ Button,
+ FlatList,
+ TouchableOpacity,
+ Platform,
+} from 'react-native';
+import { GestureHandlerRootView } from 'react-native-gesture-handler';
+import styles from './components/styles/FriendsScreen.styles';
+
+export default function FriendsScreen() {
+ const [friendRequestName, setFriendName] = useState('');
+ const [pendingFriends, setPendingFriends] = useState([]);
+ const [currentFriends, setCurrentFriends] = useState([]);
+ const [sentFriends, setSentFriends] = useState([]);
+
+ // Commented for future use
+ // const [senderName, setSenderName] = useState('');
+
+ const senderName = '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: senderName, // 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 serverMessage = await response.json();
+ console.log('Response from Server: ', serverMessage.message);
+
+ alert(serverMessage.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=${senderName}`,
+ );
+
+ const response = await fetch(
+ `${baseUrl}/check_requests?sender=${senderName}`,
+ {
+ method: 'GET',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ },
+ );
+
+ // Check if the response is ok
+ if (response.ok) {
+ // Parse the response as JSON
+ const serverMessage = await response.json();
+ console.log('Response from Server: ', serverMessage.message);
+
+ // alert(server_message.message);
+ setPendingFriends(serverMessage.pending_friends);
+ setCurrentFriends(serverMessage.friends);
+ setSentFriends(serverMessage.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: senderName,
+ 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 serverMessage = await response.json();
+ console.log('Response from Server: ', serverMessage.message);
+
+ alert(serverMessage.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: senderName, // username of the person removing 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 serverMessage = await response.json();
+ console.log('Response from Server: ', serverMessage.message);
+
+ alert(serverMessage.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: senderName, // username of the person removing 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 serverMessage = await response.json();
+ console.log('Response from Server: ', serverMessage.message);
+
+ alert(serverMessage.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 */}
+
+
+
+
+
+ {/* Sent Friend Requests */}
+
+ Sent Friend Requests
+ index.toString()}
+ renderItem={({ item }) => (
+
+ {item}
+ {/* Cancel friend request */}
+ cancelFriendRequest(item)}
+ style={styles.cancelButton}
+ >
+ Cancel
+
+
+ )}
+ />
+
+
+ {/* Pending Friends List */}
+
+ Pending Friend Requests
+ Poll()}
+ data={pendingFriends}
+ keyExtractor={(item, index) => index.toString()}
+ renderItem={({ item }) => (
+
+ {item}
+ processFriendRequest(item, true)}
+ style={styles.acceptButton}
+ >
+ Accept
+
+ processFriendRequest(item, false)}
+ style={styles.rejectButton}
+ >
+ Reject
+
+
+ )}
+ />
+
+
+ {/* Current Friends List */}
+
+ Current Friends
+ index.toString()}
+ renderItem={({ item }) => (
+
+ {item}
+ {/* Remove friend */}
+ removeFriend(item)}
+ style={styles.removeButton}
+ >
+ Remove
+
+
+ )}
+ />
+
+
+
+ );
+}
diff --git a/client/src/LogIn.js b/client/src/LogIn.js
new file mode 100644
index 0000000..509b2dd
--- /dev/null
+++ b/client/src/LogIn.js
@@ -0,0 +1,64 @@
+import * as React from 'react';
+import { useState } from 'react';
+import {
+ View,
+ SafeAreaView,
+ TextInput,
+ TouchableOpacity,
+ Text,
+} from 'react-native';
+import { handleLogin } from './utils/accountUtils';
+import styles from './components/styles/Login.styles';
+import { retrieveData } from './caching';
+
+export default function LoginScreen({ navigation }) {
+ const [username, setUsername] = useState('');
+ const [password, setPassword] = useState('');
+ const ref2 = React.useRef(null);
+
+ return (
+
+
+ {retrieveData('username') === null ? (
+ <>
+ setUsername(text)}
+ style={styles.TextInput}
+ onSubmitEditing={() => ref2.current.focus()}
+ />
+
+ setPassword(text)}
+ secureTextEntry
+ style={styles.TextInput}
+ />
+
+ handleLogin(username, password, navigation)}
+ color="#841584"
+ >
+ Log In
+
+ >
+ ) : (
+ <>
+ You are logged in
+ navigation.navigate('Map')}
+ color="#841584"
+ >
+ Go to Map
+
+ >
+ )}
+
+
+ );
+}
diff --git a/client/src/Map.js b/client/src/Map.js
new file mode 100644
index 0000000..db37c7c
--- /dev/null
+++ b/client/src/Map.js
@@ -0,0 +1,161 @@
+import React, { useState, useEffect, useRef } from 'react';
+import { View, Text, TouchableOpacity, Alert } from 'react-native';
+import MapView, { Marker } from 'react-native-maps';
+import { getCurrentLocation, startLocationTracking } from './utils/mapUtils';
+import locationCircleIcon from './assets/location-circle.png';
+import MapStyles from './components/styles/Map.styles';
+
+export default function MapScreen({ navigation }) {
+ const [webSocket, setWebSocket] = useState(null);
+ const [location, setLocation] = useState(null);
+ const [errorMessage, setErrorMessage] = useState('');
+ const mapRef = useRef(null);
+
+ // 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); // check if required
+ socket.onerror = (error) => console.error('WebSocket error:', error);
+ socket.onclose = () => console.log('WebSocket connection closed');
+
+ return () => socket.close();
+ }, []);
+
+ // useEffect(() => {
+ // (async () => {
+ // try {
+ // const initialLocation = await getCurrentLocation();
+ // setLocation(initialLocation);
+
+ // const locationSubscription = await startLocationTracking(setLocation);
+
+ // return () => locationSubscription.remove();
+ // } catch (error) {
+ // setErrorMessage(error.message);
+ // }
+ // })();
+ // }, []);
+
+ useEffect(() => {
+ const fetchLocation = async () => {
+ try {
+ const initialLocation = await getCurrentLocation();
+ setLocation(initialLocation);
+
+ const locationSubscription = await startLocationTracking(setLocation);
+
+ return () => locationSubscription.remove();
+ } catch (error) {
+ setErrorMessage(error.message);
+ return () => {};
+ }
+ };
+ fetchLocation();
+ }, []);
+
+ // Send Location to WebSocket
+ const sendLocation = () => {
+ if (webSocket && location) {
+ webSocket.send(JSON.stringify(location));
+ console.log('Sent location:', location);
+ } else {
+ Alert.alert(
+ 'Location/WebSocket Issue',
+ !location ? 'Fetching GPS location...' : 'WebSocket not connected.',
+ );
+ }
+ };
+
+ const renderContent = () => {
+ if (errorMessage) {
+ return {errorMessage};
+ }
+
+ if (location) {
+ return (
+ <>
+
+
+
+
+
+ Send Location
+
+ navigation.navigate('AccountScreen')}
+ >
+ Log In
+
+ navigation.navigate('FindRouteScreen')}
+ >
+ Find Route
+
+ navigation.navigate('FindRouteScreen')}
+ >
+ Find Route
+
+ navigation.navigate('FriendsScreen')}
+ >
+ Friends UI
+
+
+ navigation.navigate('Dashboard')}
+ >
+ Sustainability Dashboard
+
+ navigation.navigate('WeatherScreen')}
+ >
+ Weather
+
+
+ {/* todo: Need to make new changes to the preferences logic */}
+ navigation.navigate('PreferencesScreen')}
+ >
+ User Preferences
+
+ >
+ );
+ }
+
+ return Fetching your location...;
+ };
+
+ return {renderContent()};
+}
diff --git a/client/src/Preferences.js b/client/src/Preferences.js
new file mode 100644
index 0000000..ba3cce1
--- /dev/null
+++ b/client/src/Preferences.js
@@ -0,0 +1,222 @@
+import * as React from 'react';
+import { useState } from 'react';
+import {
+ View,
+ SafeAreaView,
+ Switch,
+ TouchableOpacity,
+ Text,
+ Platform,
+} from 'react-native';
+import buttonStyles from './components/common/button';
+import containerStyles from './components/common/commonContainer';
+
+// eslint-disable-next-line no-unused-vars
+import { storeData, retrieveData, removeData, updateData } from './caching';
+
+// eslint-disable-next-line no-unused-vars
+export default function PreferencesScreen({ navigation }) {
+ const [isBikeEnabled, setIsBikeEnabled] = useState(false);
+ const [isPrivateVehicleEnabled, setIsPrivateVehicleEnabled] = useState(false);
+ const [isAccessibilityEnabled, setIsAccessibilityEnabled] = useState(false);
+ const [isMotorwaysEnabled, setIsMotorwaysEnabled] = useState(false);
+ const [isTollsEnabled, setIsTollsEnabled] = useState(false);
+ const [isBusEnabled, setIsBusEnabled] = useState(false);
+ const [isCarEnabled, setIsCarEnabled] = useState(false);
+ const [isTrainEnabled, setIsTrainEnabled] = useState(false);
+ const [isWalkEnabled, setIsWalkEnabled] = useState(false);
+ const [isTramEnabled, setIsTramEnabled] = useState(false);
+ const [isPersonalBikeEnabled, setIsPersonalBikeEnabled] = useState(false);
+
+ const handleToggleBike = () => setIsBikeEnabled((prev) => !prev);
+ const handleTogglePrivateVehicle = () =>
+ setIsPrivateVehicleEnabled((prev) => !prev);
+ const handleToggleAccessibility = () =>
+ setIsAccessibilityEnabled((prev) => !prev);
+ const handleToggleMotorways = () => setIsMotorwaysEnabled((prev) => !prev);
+ const handleToggleTolls = () => setIsTollsEnabled((prev) => !prev);
+ const handleToggleBus = () => setIsBusEnabled((prev) => !prev);
+ const handleToggleCar = () => setIsCarEnabled((prev) => !prev);
+ const handleToggleTrain = () => setIsTrainEnabled((prev) => !prev);
+ const handleToggleWalk = () => setIsWalkEnabled((prev) => !prev);
+ const handleToggleTram = () => setIsTramEnabled((prev) => !prev);
+ const handleTogglePersonalBike = () =>
+ setIsPersonalBikeEnabled((prev) => !prev);
+
+ const savePreferences = async () => {
+ try {
+ const baseUrl =
+ Platform.OS === 'web'
+ ? 'http://localhost:8000'
+ : process.env.EXPO_PUBLIC_API_URL;
+ console.log(`Sending request to ${baseUrl}/setPreferences`);
+
+ // set username
+ const cachedUsername = await retrieveData('username');
+ // setUsername(cachedusername);
+
+ const response = await fetch(`${baseUrl}/setPreferences`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({
+ username: cachedUsername,
+ bike: isBikeEnabled,
+ privateVehicle: isPrivateVehicleEnabled,
+ accessibility: isAccessibilityEnabled,
+ motorways: isMotorwaysEnabled,
+ tolls: isTollsEnabled,
+ bus: isBusEnabled,
+ car: isCarEnabled,
+ train: isTrainEnabled,
+ walk: isWalkEnabled,
+ tram: isTramEnabled,
+ personalBike: isPersonalBikeEnabled,
+ }),
+ });
+
+ console.log(
+ JSON.stringify({
+ username: cachedUsername,
+ bike: isBikeEnabled.toString(),
+ privateVehicle: isPrivateVehicleEnabled.toString(),
+ accessibility: isAccessibilityEnabled.toString(),
+ motorways: isMotorwaysEnabled.toString(),
+ tolls: isTollsEnabled.toString(),
+ bus: isBusEnabled.toString(),
+ car: isCarEnabled.toString(),
+ train: isTrainEnabled.toString(),
+ walk: isWalkEnabled.toString(),
+ tram: isTramEnabled.toString(),
+ personalBike: isPersonalBikeEnabled.toString(),
+ }),
+ );
+
+ if (!response.ok) {
+ throw new Error(`HTTP error! status: ${response.status}`);
+ }
+
+ // Await response and print message from server
+ const data = await response.json();
+ alert(data.message);
+
+ console.log('Server response:', data);
+ } catch (error) {
+ console.error('Error details:', error);
+ }
+ };
+
+ return (
+
+
+
+ Bike
+
+
+
+
+ Private Vehicle
+
+
+
+
+ Accessibility
+
+
+
+
+ Motorways
+
+
+
+
+ tolls
+
+
+
+
+ Bus
+
+
+
+
+ Car
+
+
+
+
+ train
+
+
+
+
+ Walk
+
+
+
+
+ Tram
+
+
+
+
+ I own a Bike
+
+
+
+
+ Save
+
+
+
+ );
+}
diff --git a/client/src/SelectRoute.js b/client/src/SelectRoute.js
new file mode 100644
index 0000000..59f4ac1
--- /dev/null
+++ b/client/src/SelectRoute.js
@@ -0,0 +1,138 @@
+import React, { useEffect, useState } from 'react';
+import { View, Text, TouchableOpacity } from 'react-native';
+import MapView, { Polyline, Marker } from 'react-native-maps';
+import {
+ decodeRoute,
+ getCurrentLocation,
+ startLocationTracking,
+} from './utils/mapUtils';
+import locationCircleIcon from './assets/location-circle.png';
+import selectRouteStyles from './components/styles/SelectRoute.styles';
+
+export default function SelectRouteScreen({ navigation, route }) {
+ const { origin, destination, routeData } = route.params;
+ const [routes, setRoutes] = useState([]);
+ const [location, setLocation] = useState(null);
+ const [errorMessage, setErrorMessage] = useState('');
+ const [polylineCoordinates, setPolylineCoordinates] = useState([]);
+ const [currentRoute, setCurrentRoute] = useState(routeData.routes[0]);
+
+ // 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);
+ return null;
+ }
+ })();
+ }, [location]);
+
+ // Generate polyline
+ // Decode and set polyline coordinates
+ useEffect(() => {
+ if (routeData && routeData.routes && routeData.routes.length > 0) {
+ const encodedPolyline = currentRoute.overview_polyline.points;
+ const decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs
+ setPolylineCoordinates(decodedPath);
+ setRoutes(routeData.routes); // Set the routes state
+ }
+ }, [currentRoute.overview_polyline.points, 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 && (
+ {errorMessage}
+ )}
+ {!errorMessage && location && (
+ <>
+ 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,
+ }}
+ >
+
+ {polylineCoordinates.length > 0 && (
+
+ )}
+ {polylineCoordinates.length > 0 && (
+
+ )}
+
+
+ {routes.map((routeOption, index) => (
+
+ displaySelectedRoute(index)}
+ style={selectRouteStyles.routeButton}
+ >
+ Route {index + 1}
+ Distance: {routeOption.legs[0].distance.text}
+ Duration: {routeOption.legs[0].duration.text}
+
+ {/* routeData needs to rename the route variable because that is what react navigator calls its properties */}
+
+ navigation.navigate('DisplayRouteScreen', {
+ origin,
+ destination,
+ routeData: routeOption,
+ polylineCoordinates,
+ })
+ }
+ style={selectRouteStyles.startButton}
+ >
+ Start Journey
+
+
+ ))}
+
+ >
+ )}
+ {!errorMessage && !location && (
+ Loading...
+ )}
+
+ );
+}
diff --git a/client/src/SignUp.js b/client/src/SignUp.js
new file mode 100644
index 0000000..30a66f9
--- /dev/null
+++ b/client/src/SignUp.js
@@ -0,0 +1,50 @@
+import * as React from 'react';
+import { useState } from 'react';
+import {
+ View,
+ SafeAreaView,
+ TextInput,
+ TouchableOpacity,
+ Text,
+} from 'react-native';
+import { handleSignup } from './utils/accountUtils';
+import buttonStyles from './components/common/button';
+import textInputStyles from './components/common/textInput';
+import containerStyles from './components/common/commonContainer';
+
+export default function SignUpScreen({ navigation }) {
+ const [username, setUsername] = useState('');
+ const [password, setPassword] = useState('');
+ const ref2 = React.useRef(null);
+
+ return (
+
+
+ setUsername(text)}
+ style={textInputStyles.textInput}
+ onSubmitEditing={() => ref2.current.focus()}
+ />
+
+ setPassword(text)}
+ secureTextEntry
+ style={textInputStyles.textInput}
+ />
+
+ handleSignup(username, password, navigation)}
+ color="#841584"
+ >
+ Sign Up
+
+
+
+ );
+}
diff --git a/client/src/SustainabilityDashboard.js b/client/src/SustainabilityDashboard.js
new file mode 100644
index 0000000..67efa53
--- /dev/null
+++ b/client/src/SustainabilityDashboard.js
@@ -0,0 +1,128 @@
+import { LineChart, PieChart } from 'react-native-chart-kit';
+import { TouchableOpacity, Text } from 'react-native';
+import susDashboardStyles from './components/styles/SustainabilityDashboard.styles';
+
+// 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 yearDataLineGraph = {
+ 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 monthDataLineGraph = {
+ 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,
+};
+
+// eslint-disable-next-line no-unused-vars
+export default function Dashboard({ navigation }) {
+ // this needs to be updated reactively, perhaps using usestate
+ let lineGraphData = yearDataLineGraph;
+
+ const switchTimeframe = (timeFrame) => {
+ if (timeFrame === 'm') {
+ lineGraphData = monthDataLineGraph;
+ } else if (timeFrame === 'y') {
+ lineGraphData = yearDataLineGraph;
+ }
+ };
+
+ return (
+ <>
+
+
+
+ Month
+
+
+ Year
+
+ >
+ );
+}
diff --git a/client/src/Weather.js b/client/src/Weather.js
new file mode 100644
index 0000000..509d3c8
--- /dev/null
+++ b/client/src/Weather.js
@@ -0,0 +1,58 @@
+import * as React from 'react';
+import { useState } from 'react';
+import {
+ View,
+ SafeAreaView,
+ TouchableOpacity,
+ Text,
+ Platform,
+} from 'react-native';
+import buttonStyles from './components/common/button';
+import containerStyles from './components/common/commonContainer';
+
+export default function WeatherScreen() {
+ const [serverResponse, setServerResponse] = useState('');
+
+ const fetchFromServer = async () => {
+ try {
+ const baseUrl =
+ Platform.OS === 'web'
+ ? 'http://localhost:8000'
+ : process.env.EXPO_PUBLIC_API_URL;
+ console.log(`Sending request to ${baseUrl}/weather`);
+
+ const response = await fetch(`${baseUrl}/weather`, {
+ method: 'GET',
+ });
+
+ 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 Promise((resolve) => setTimeout(resolve, 3000));
+ setServerResponse('');
+ } catch (error) {
+ console.error('Error details:', error);
+ }
+ };
+
+ return (
+
+
+
+ Weather Data
+
+
+
+ {serverResponse}
+
+
+ );
+}
diff --git a/client/assets/adaptive-icon.png b/client/src/assets/adaptive-icon.png
similarity index 100%
rename from client/assets/adaptive-icon.png
rename to client/src/assets/adaptive-icon.png
diff --git a/client/assets/favicon.png b/client/src/assets/favicon.png
similarity index 100%
rename from client/assets/favicon.png
rename to client/src/assets/favicon.png
diff --git a/client/assets/icon.png b/client/src/assets/icon.png
similarity index 100%
rename from client/assets/icon.png
rename to client/src/assets/icon.png
diff --git a/client/src/assets/location-circle.png b/client/src/assets/location-circle.png
new file mode 100644
index 0000000..9b159bd
Binary files /dev/null and b/client/src/assets/location-circle.png differ
diff --git a/client/assets/splash.png b/client/src/assets/splash.png
similarity index 100%
rename from client/assets/splash.png
rename to client/src/assets/splash.png
diff --git a/client/src/caching.jsx b/client/src/caching.jsx
new file mode 100644
index 0000000..da5c5d9
--- /dev/null
+++ b/client/src/caching.jsx
@@ -0,0 +1,80 @@
+import AsyncStorage from '@react-native-async-storage/async-storage';
+
+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');
+ }
+};
+
+export const retrieveData = async (key) => {
+ try {
+ const value = await AsyncStorage.getItem(JSON.stringify(key));
+ if (value !== null) {
+ console.log(`Retrieved data: ${value}`);
+ return JSON.parse(value);
+ }
+ return null;
+ } catch (error) {
+ console.error('Error retrieving data from cache');
+ return null;
+ }
+};
+
+export const removeData = async (key) => {
+ try {
+ await AsyncStorage.removeItem(JSON.stringify(key));
+ console.log('Removed successfully');
+ } catch {
+ console.error('Error removing data from cache');
+ }
+};
+
+export const updateData = async (key, changedData) => {
+ try {
+ AsyncStorage.mergeItem(JSON.stringify(key), JSON.stringify(changedData));
+ } catch (error) {
+ console.error('Error updating data in cache');
+ }
+};
+
+/*
+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
+ }
+}
+
+*/
diff --git a/client/src/components/common/button.js b/client/src/components/common/button.js
new file mode 100644
index 0000000..552af05
--- /dev/null
+++ b/client/src/components/common/button.js
@@ -0,0 +1,24 @@
+import { StyleSheet } from 'react-native';
+
+const buttonStyles = StyleSheet.create({
+ button: {
+ allignItems: 'center',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ marginVertical: 5, // Space between buttons
+ },
+ buttonText: {
+ color: '#fff',
+ fontWeight: 'bold',
+ textAlign: 'center',
+ },
+});
+
+export default buttonStyles;
diff --git a/client/src/components/common/commonContainer.js b/client/src/components/common/commonContainer.js
new file mode 100644
index 0000000..9663c85
--- /dev/null
+++ b/client/src/components/common/commonContainer.js
@@ -0,0 +1,19 @@
+import { StyleSheet } from 'react-native';
+
+const containerStyles = StyleSheet.create({
+ container: {
+ alignItems: 'center',
+ justifyContent: 'center',
+ paddingVertical: 10,
+ paddingHorizontal: 45,
+ top: '0%',
+ },
+ switchContainer: {
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ marginVertical: 5,
+ },
+});
+
+export default containerStyles;
diff --git a/client/src/components/common/textInput.js b/client/src/components/common/textInput.js
new file mode 100644
index 0000000..5d1e406
--- /dev/null
+++ b/client/src/components/common/textInput.js
@@ -0,0 +1,18 @@
+import { StyleSheet } from 'react-native';
+
+const textInputStyles = StyleSheet.create({
+ textInput: {
+ width: 100,
+ height: 50,
+ backgroundColor: '#fff',
+ borderColor: '#ccc',
+ borderWidth: 1,
+ borderRadius: 10,
+ paddingHorizontal: 10,
+ marginBottom: 15,
+ textAlign: 'center',
+ textAlignVertical: 'center',
+ },
+});
+
+export default textInputStyles;
diff --git a/client/src/components/styles/AccountScreen.styles.js b/client/src/components/styles/AccountScreen.styles.js
new file mode 100644
index 0000000..937d854
--- /dev/null
+++ b/client/src/components/styles/AccountScreen.styles.js
@@ -0,0 +1,73 @@
+import { StyleSheet } from 'react-native';
+
+const styles = StyleSheet.create({
+ container: {
+ alignItems: 'center',
+ justifyContent: 'center',
+ paddingVertical: 10,
+ paddingHorizontal: 45,
+ top: '-20%',
+ // marginBottom: -150,
+ },
+ TextInput: {
+ width: 100,
+ height: 50,
+ backgroundColor: '#fff',
+ borderColor: '#ccc',
+ borderWidth: 1,
+ borderRadius: 10,
+ paddingHorizontal: 10,
+ marginBottom: 15,
+ textAlign: 'center',
+ textAlignVertical: 'center',
+ },
+ TouchableOpacity1: {
+ alignItems: 'center',
+ left: '0%',
+ top: '20%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ TouchableOpacity2: {
+ alignItems: 'center',
+ left: '0%',
+ top: '30%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ TouchableOpacity3: {
+ alignItems: 'center',
+ left: '0%',
+ top: '40%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ TouchableOpacityText: {
+ color: '#fff',
+ fontWeight: 'bold',
+ textAlign: 'center',
+ },
+});
+
+export default styles;
diff --git a/client/src/components/styles/DisplayRoute.styles.js b/client/src/components/styles/DisplayRoute.styles.js
new file mode 100644
index 0000000..8ed192e
--- /dev/null
+++ b/client/src/components/styles/DisplayRoute.styles.js
@@ -0,0 +1,43 @@
+import { StyleSheet } from 'react-native';
+
+const displayRouteStyles = StyleSheet.create({
+ container: { flex: 1 },
+ map: { flex: 1 },
+ routeInfo: { fontSize: 16 },
+ error: { color: 'red', textAlign: 'center', margin: 10 },
+ loadingText: { textAlign: 'center', margin: 10 },
+ dpadContainer: {
+ position: 'absolute',
+ bottom: 20,
+ left: '50%',
+ transform: [{ translateX: -50 }],
+ alignItems: 'center',
+ },
+ dpadRow: {
+ flexDirection: 'row',
+ },
+ dpadButton: {
+ padding: 10,
+ backgroundColor: '#ADD8E6',
+ borderRadius: 5,
+ margin: 5,
+ },
+ infoContainer: {
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ margin: 10,
+ },
+ routeInfoContainer: {
+ flex: 1,
+ },
+ devModeContainer: {
+ alignItems: 'center',
+ },
+ devModeText: {
+ fontSize: 16,
+ marginBottom: 5,
+ },
+});
+
+export default displayRouteStyles;
diff --git a/client/src/components/styles/FindRoute.styles.js b/client/src/components/styles/FindRoute.styles.js
new file mode 100644
index 0000000..9ed6e3a
--- /dev/null
+++ b/client/src/components/styles/FindRoute.styles.js
@@ -0,0 +1,53 @@
+import { StyleSheet } from 'react-native';
+
+const findRouteStyles = StyleSheet.create({
+ container: {
+ flex: 1,
+ backgroundColor: '#fff',
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ input: {
+ width: '100%',
+ padding: 10,
+ borderWidth: 1,
+ borderColor: 'gray',
+ borderRadius: 4,
+ marginBottom: 10,
+ },
+ label: {
+ marginBottom: 10,
+ },
+ selected: {
+ marginTop: 10,
+ marginBottom: 10,
+ },
+ TouchableOpacity: {
+ padding: 10,
+ backgroundColor: '#841584',
+ borderRadius: 5,
+ },
+ disabledButton: {
+ backgroundColor: '#ccc',
+ },
+});
+
+const pickerSelectStyles = StyleSheet.create({
+ inputIOS: {
+ color: 'black',
+ paddingTop: 13,
+ paddingHorizontal: 10,
+ paddingBottom: 12,
+ borderWidth: 1,
+ borderColor: 'gray',
+ borderRadius: 4,
+ backgroundColor: 'white',
+ width: '100%',
+ },
+ inputAndroid: {
+ color: 'black',
+ width: '80%',
+ },
+});
+
+export { pickerSelectStyles, findRouteStyles };
diff --git a/client/src/components/styles/FriendsScreen.styles.js b/client/src/components/styles/FriendsScreen.styles.js
new file mode 100644
index 0000000..a52ced8
--- /dev/null
+++ b/client/src/components/styles/FriendsScreen.styles.js
@@ -0,0 +1,78 @@
+import { StyleSheet } from 'react-native';
+
+const styles = StyleSheet.create({
+ container: {
+ flex: 1,
+ padding: 20,
+ backgroundColor: '#f5f5f5',
+ },
+ inputContainer: {
+ flexDirection: 'row',
+ marginBottom: 20,
+ },
+ input: {
+ flex: 1,
+ borderWidth: 1,
+ borderColor: '#ccc',
+ padding: 10,
+ borderRadius: 5,
+ marginRight: 10,
+ },
+ listContainer: {
+ flex: 1,
+ marginBottom: 20,
+ },
+ sectionTitle: {
+ fontSize: 18,
+ fontWeight: 'bold',
+ marginBottom: 10,
+ },
+ pendingItem: {
+ flexDirection: 'row',
+ backgroundColor: '#fff',
+ padding: 10,
+ borderRadius: 5,
+ marginBottom: 5,
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ },
+ friendItem: {
+ backgroundColor: '#d1f0d1',
+ padding: 10,
+ borderRadius: 5,
+ marginBottom: 5,
+ },
+ friendRequestName: {
+ fontSize: 16,
+ },
+ acceptButton: {
+ backgroundColor: '#4CAF50',
+ padding: 8,
+ borderRadius: 5,
+ marginLeft: 5,
+ },
+ rejectButton: {
+ backgroundColor: '#E74C3C',
+ padding: 8,
+ borderRadius: 5,
+ marginLeft: 5,
+ },
+ cancelButton: {
+ backgroundColor: '#E74C3C',
+ padding: 8,
+ borderRadius: 5,
+ marginLeft: 5,
+ },
+ buttonText: {
+ color: '#fff',
+ fontWeight: 'bold',
+ },
+ removeButton: {
+ backgroundColor: '#E74C3C',
+ padding: 8,
+ borderRadius: 5,
+ marginLeft: 5,
+ },
+});
+
+export default styles;
diff --git a/client/src/components/styles/Login.styles.js b/client/src/components/styles/Login.styles.js
new file mode 100644
index 0000000..04b5f6c
--- /dev/null
+++ b/client/src/components/styles/Login.styles.js
@@ -0,0 +1,59 @@
+import { StyleSheet } from 'react-native';
+
+const styles = StyleSheet.create({
+ container: {
+ alignItems: 'center',
+ justifyContent: 'center',
+ paddingVertical: 10,
+ paddingHorizontal: 45,
+ top: '-20%',
+ // marginBottom: -150,
+ },
+ TextInput: {
+ width: 100,
+ height: 50,
+ backgroundColor: '#fff',
+ borderColor: '#ccc',
+ borderWidth: 1,
+ borderRadius: 10,
+ paddingHorizontal: 10,
+ marginBottom: 15,
+ textAlign: 'center',
+ textAlignVertical: 'center',
+ },
+ TouchableOpacity: {
+ alignItems: 'center',
+ left: '0%',
+ top: '5%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ TouchableOpacity1: {
+ alignItems: 'center',
+ left: '0%',
+ top: '5%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ TouchableOpacityText: {
+ color: '#fff',
+ fontWeight: 'bold',
+ textAlign: 'center',
+ },
+});
+
+export default styles;
diff --git a/client/src/components/styles/Map.styles.js b/client/src/components/styles/Map.styles.js
new file mode 100644
index 0000000..d83dcef
--- /dev/null
+++ b/client/src/components/styles/Map.styles.js
@@ -0,0 +1,133 @@
+import { StyleSheet, Platform } from 'react-native';
+
+const MapStyles = StyleSheet.create({
+ container: {
+ flex: 1,
+ ...(Platform.OS === 'web' ? { height: '100vh' } : {}),
+ },
+ map: {
+ flex: 1,
+ minHeight: 300,
+ },
+ sendButton: {
+ position: 'absolute',
+ bottom: 15,
+ left: '80%',
+ transform: [{ translateX: -50 }],
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 20,
+ borderRadius: 10,
+ },
+ buttonText: {
+ color: '#fff',
+ fontWeight: 'bold',
+ textAlign: 'center',
+ },
+ loginButton: {
+ 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,
+ },
+ PreferencesButton: {
+ position: 'absolute',
+ alignItems: 'center',
+ left: '0%',
+ top: '10%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+
+ friendScreenButton: {
+ position: 'absolute',
+ alignItems: 'center',
+ left: '70%',
+ top: '50%',
+ backgroundColor: '#007bff',
+ paddingVertical: 10,
+ paddingHorizontal: 40,
+ borderRadius: 10,
+ shadowColor: '#000',
+ shadowOpacity: 0.2,
+ shadowOffset: { width: 0, height: 2 },
+ shadowRadius: 5,
+ elevation: 5,
+ },
+ weatherButton: {
+ 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,
+ },
+ 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',
+ textAlignVertical: 'center',
+ fontSize: 18,
+ color: 'red',
+ },
+ loadingText: {
+ flex: 1,
+ textAlign: 'center',
+ textAlignVertical: 'center',
+ fontSize: 18,
+ },
+});
+
+export default MapStyles;
diff --git a/client/src/components/styles/SelectRoute.styles.js b/client/src/components/styles/SelectRoute.styles.js
new file mode 100644
index 0000000..8629eb3
--- /dev/null
+++ b/client/src/components/styles/SelectRoute.styles.js
@@ -0,0 +1,30 @@
+import { StyleSheet } from 'react-native';
+
+const selectRouteStyles = 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 },
+});
+
+export default selectRouteStyles;
diff --git a/client/src/components/styles/SustainabilityDashboard.styles.js b/client/src/components/styles/SustainabilityDashboard.styles.js
new file mode 100644
index 0000000..c6ea3ac
--- /dev/null
+++ b/client/src/components/styles/SustainabilityDashboard.styles.js
@@ -0,0 +1,34 @@
+import { StyleSheet } from 'react-native';
+
+const susDashboardStyles = 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,
+ },
+});
+
+export default susDashboardStyles;
diff --git a/client/src/map(temp).js b/client/src/map(temp).js
new file mode 100644
index 0000000..04100dc
--- /dev/null
+++ b/client/src/map(temp).js
@@ -0,0 +1,294 @@
+// 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,
+// },
+// });
diff --git a/client/src/utils/accountUtils.js b/client/src/utils/accountUtils.js
new file mode 100644
index 0000000..bbc2b77
--- /dev/null
+++ b/client/src/utils/accountUtils.js
@@ -0,0 +1,95 @@
+import { Platform } from 'react-native';
+import CryptoJS from 'crypto-js';
+import { storeData, retrieveData, removeData, updateData } from '../caching';
+
+export const postConnection = async (url, payload, customBaseUrl = null) => {
+ try {
+ const baseUrl =
+ customBaseUrl ||
+ (Platform.OS === 'web'
+ ? 'http://localhost:8000'
+ : process.env.EXPO_PUBLIC_API_URL);
+ console.log(`Sending request to ${baseUrl}/${url}`);
+
+ const response = await fetch(`${baseUrl}/${url}`, {
+ 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();
+ alert(data.message);
+
+ return data;
+ } catch (error) {
+ console.error('Error details:', error);
+ throw error;
+ }
+};
+
+export const handleLogin = async (username, password, navigation) => {
+ if (username === '' || password === '') {
+ alert('All fields have to be filled before logging in!');
+ } else {
+ console.log('username: ', username);
+
+ // hash password
+ const hashedPassword = CryptoJS.SHA256(password).toString();
+ console.log('Hashed password:', hashedPassword);
+
+ navigation.navigate('Map');
+
+ const url = 'login';
+ const payload = { username, password: hashedPassword };
+
+ const data = await postConnection(url, payload);
+ alert(data.message);
+
+ if (data.message === `Login successful for user: ${username}`) {
+ if (retrieveData('username') !== null) {
+ await removeData('username');
+ await updateData('username', username);
+ } else {
+ await storeData('username', username);
+ }
+ }
+ console.log('Server response:', data);
+ }
+};
+
+export const handleSignup = async (username, password, navigation) => {
+ if (username === '' || password === '') {
+ alert('All fields have to be filled before signing up!');
+ } else {
+ console.log('username: ', username);
+
+ // hash password
+ const hashedPassword = CryptoJS.SHA256(password).toString();
+ console.log('Hashed password:', hashedPassword);
+
+ navigation.navigate('Map');
+
+ const url = 'signup';
+ const payload = { username, password: hashedPassword };
+
+ const data = await postConnection(url, payload);
+ alert(data.message);
+
+ if (data.message === `Signup successful for user: ${username}`) {
+ if (retrieveData('username') !== null) {
+ await removeData('username');
+ await updateData('username', username);
+ } else {
+ await storeData('username', username);
+ }
+ }
+
+ console.log('Server response:', data);
+ }
+};
diff --git a/client/src/utils/mapUtils.js b/client/src/utils/mapUtils.js
new file mode 100644
index 0000000..5ec8147
--- /dev/null
+++ b/client/src/utils/mapUtils.js
@@ -0,0 +1,88 @@
+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 {
+// const 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 Location.watchPositionAsync(
+ {
+ accuracy: Location.Accuracy.BestForNavigation,
+ timeInterval: 5000, // Update every 5 seconds // apparently android only
+ 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 }));
+};
diff --git a/client/tests/accountUtils.test.js b/client/tests/accountUtils.test.js
new file mode 100644
index 0000000..880cd84
--- /dev/null
+++ b/client/tests/accountUtils.test.js
@@ -0,0 +1,67 @@
+import { postConnection } from '../src/utils/accountUtils';
+
+global.fetch = jest.fn();
+global.alert = jest.fn();
+
+jest.mock('react-native', () => ({
+ Platform: { OS: 'android' }, // Mock Platform to avoid runtime issues
+}));
+
+describe('postConnection', () => {
+ const mockUrl = 'testEndpoint';
+ const mockPayload = { key: 'value' };
+ const mockBaseUrl = 'http://mockserver.local';
+
+ afterEach(() => {
+ jest.clearAllMocks(); // Clear mocks after each test
+ });
+
+ it('should return data on successful response', async () => {
+ const mockResponse = { message: 'Success' };
+ fetch.mockResolvedValueOnce({
+ ok: true,
+ json: async () => mockResponse,
+ });
+
+ const result = await postConnection(mockUrl, mockPayload, mockBaseUrl);
+
+ expect(fetch).toHaveBeenCalledWith(`${mockBaseUrl}/${mockUrl}`, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(mockPayload),
+ });
+ expect(result).toEqual(mockResponse);
+ });
+
+ it('should throw an error on failed response', async () => {
+ fetch.mockResolvedValueOnce({
+ ok: false,
+ status: 500,
+ });
+
+ await expect(
+ postConnection(mockUrl, mockPayload, mockBaseUrl),
+ ).rejects.toThrow('HTTP error! status: 500');
+
+ expect(fetch).toHaveBeenCalledWith(`${mockBaseUrl}/${mockUrl}`, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(mockPayload),
+ });
+ });
+
+ it('should log an error on exception', async () => {
+ const consoleErrorSpy = jest.spyOn(console, 'error').mockImplementation();
+ fetch.mockRejectedValueOnce(new Error('Network error'));
+
+ await expect(
+ postConnection(mockUrl, mockPayload, mockBaseUrl),
+ ).rejects.toThrow('Network error');
+
+ expect(consoleErrorSpy).toHaveBeenCalledWith(
+ 'Error details:',
+ expect.any(Error),
+ );
+ consoleErrorSpy.mockRestore();
+ });
+});
diff --git a/client/tests/caching.test.js b/client/tests/caching.test.js
new file mode 100644
index 0000000..685acfe
--- /dev/null
+++ b/client/tests/caching.test.js
@@ -0,0 +1,99 @@
+import mockAsyncStorage from '@react-native-async-storage/async-storage/jest/async-storage-mock';
+import AsyncStorage from '@react-native-async-storage/async-storage';
+import {
+ storeData,
+ retrieveData,
+ removeData,
+ updateData,
+} from '../src/caching';
+
+jest.mock('@react-native-async-storage/async-storage', () => mockAsyncStorage);
+
+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');
+// });
diff --git a/client/tests/mapUtils.test.js b/client/tests/mapUtils.test.js
new file mode 100644
index 0000000..0f608a5
--- /dev/null
+++ b/client/tests/mapUtils.test.js
@@ -0,0 +1,144 @@
+import { decode } from '@googlemaps/polyline-codec';
+import * as Location from 'expo-location';
+import {
+ requestLocationPermission,
+ getCurrentLocation,
+ startLocationTracking,
+ decodeRoute,
+ haversine,
+} from '../src/utils/mapUtils'; // Update with the correct path
+
+// 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.006 };
+ 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(() => [
+ [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.006 },
+ });
+
+ const result = await getCurrentLocation();
+ expect(result).toEqual({ latitude: 40.7128, longitude: -74.006 });
+ });
+
+ 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.006],
+ [34.0522, -118.2437],
+ ];
+ decode.mockReturnValueOnce(mockDecodedPath);
+
+ const result = decodeRoute(encodedPolyline);
+ expect(result).toEqual([
+ { latitude: 40.7128, longitude: -74.006 },
+ { latitude: 34.0522, longitude: -118.2437 },
+ ]);
+ });
+});
diff --git a/client/tests/response.json b/client/tests/response.json
new file mode 100644
index 0000000..682390f
--- /dev/null
+++ b/client/tests/response.json
@@ -0,0 +1,6855 @@
+{
+ "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"
+}
diff --git a/client/webpack.config.js b/client/webpack.config.js
deleted file mode 100644
index f27d3c7..0000000
--- a/client/webpack.config.js
+++ /dev/null
@@ -1,8 +0,0 @@
-const createExpoWebpackConfigAsync = require('@expo/webpack-config');
-
-module.exports = async function (env, argv) {
- const config = await createExpoWebpackConfigAsync(env, argv);
-
- // Add any custom configurations here
- return config;
-};
\ No newline at end of file
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
diff --git a/server/Dockerfile b/server/Dockerfile
index 03c4c01..2b6fc4b 100644
--- a/server/Dockerfile
+++ b/server/Dockerfile
@@ -9,10 +9,14 @@ 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
# 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/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
diff --git a/server/__pycache__/login.cpython-312.pyc b/server/__pycache__/login.cpython-312.pyc
deleted file mode 100644
index 8ea046f..0000000
Binary files a/server/__pycache__/login.cpython-312.pyc and /dev/null differ
diff --git a/server/apis/luas_api.py b/server/apis/luas_api.py
deleted file mode 100644
index c39226a..0000000
--- a/server/apis/luas_api.py
+++ /dev/null
@@ -1,67 +0,0 @@
-import requests
-from xml.dom.minidom import parseString
-import time
-import datetime
-import xml.etree.ElementTree as ET
-
-class luasAPI:
-
- def __init__(self):
- self.poll_interval = 10
-
- 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'
-
-
- # while True:
- # # Fetch the geoJSON data from the URL
- # response = requests.get(url)
-
- # # 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'])))
-
- # else:
- # print('Failed to retrieve data:', response.status_code)
-
- # time.sleep(self.poll_interval)
-
- # fetch the real-time Luas data from the URL
- self.response = requests.get(self.url)
-
- # check if the request was succesful
- if self.response.status_code == 200:
-
- # parse xml content
- root = ET.fromstring(self.response.content)
-
- # initialise dictionaries to store tram info by direction
- 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})
-
- # print the extracted tram information
- print('Inbound Trams:', tram_info['Inbound'])
- print('Outbound Trams:', tram_info['Outbound'], '\n')
-
- else:
- print('Failed to retrieve data:', self.response.status_code)
-
- # time.sleep(self.poll_interval)
-
-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':
- break
- luas.get(stop)
\ No newline at end of file
diff --git a/server/apis/weatherApi.py b/server/apis/weatherApi.py
deleted file mode 100644
index 91d54e0..0000000
--- a/server/apis/weatherApi.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import requests
-import numpy as np
-# from base_api import 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'
-
- # 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'] ))
- 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
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
-43