diff --git a/.gitignore b/.gitignore index 1de5659..4b34f0c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -target \ No newline at end of file +target +Help.md \ No newline at end of file diff --git a/Week 02/Lecture 03/Assignment 05/ListToMap.java b/Week 02/Lecture 03/Assignment 05/ListToMap.java index 686f587..de47030 100644 --- a/Week 02/Lecture 03/Assignment 05/ListToMap.java +++ b/Week 02/Lecture 03/Assignment 05/ListToMap.java @@ -1,7 +1,7 @@ import java.util.Arrays; import java.util.List; import java.util.Map; -import java.util.stream.Collectors; +import java.util.TreeMap; // Assume Employee class with fields: int employeeID, String name, String department class Employee { @@ -46,11 +46,15 @@ public static void main(String[] args) { new Employee(3, "Charlie", "Finance") ); - // Convert List to Map using employeeID as key - Map employeeMap = employees.stream() - .collect(Collectors.toMap(Employee::getEmployeeID, emp -> emp)); + // Creating employeeMap using TreeMap + Map employeesMap = new TreeMap<>(); + + // Convert List to Map + for (Employee emp : employees){ + employeesMap.put(emp.getEmployeeID(), emp.getName()); + } // Print the resulting Map - employeeMap.forEach((id, emp) -> System.out.println("Employee ID: " + id + ", Employee: " + emp)); + employeesMap.forEach((id, emp) -> System.out.println("Employee ID: " + id + ", Employee: " + emp)); } } \ No newline at end of file diff --git a/Week 02/Lecture 03/Assignment 05/README.md b/Week 02/Lecture 03/Assignment 05/README.md index 6769ca7..55b8de1 100644 --- a/Week 02/Lecture 03/Assignment 05/README.md +++ b/Week 02/Lecture 03/Assignment 05/README.md @@ -80,7 +80,7 @@ To remove duplicate lines from a file: 4. **Writing Unique Lines**: Write only those lines to a new file that haven't been seen before (not in the `HashSet`). #### πŸ“‹ Case CSV Content -In this program, i use CSV file [`input.csv`](/Week%2002%20-%20Jun%2017-21/Lecture%2003/Assignment%205/data/input.csv) with content like this. +In this program, i use CSV file [`input.csv`](/Week%2002/Lecture%2003/Assignment%2005/RemoveDuplicates.java) with content like this. ```csv employeeID,name,department 1,Alice,HR @@ -106,6 +106,16 @@ Detail implementation is written on [this code](/Week%2002%20-%20Jun%2017-21/Lec The output of the program shows on this [`output.csv`](/Week%2002%20-%20Jun%2017-21/Lecture%2003/Assignment%205/data/output.csv) +Here is how to run the updated code of program +```bash +$ java RemoveDuplicates +``` + +for example. +```bash +java RemoveDuplicates data/input.csv data/output.csv 0 +``` +
### πŸ–¨οΈ Task 4 - Get a Shallow Copy of a `HashMap` @@ -166,7 +176,7 @@ Here i implement class `BankAccount` and `BankAccountDemo`. 3. **Use Java Streams for Transformation**: Utilize Java Streams API to transform the `List` into a `Map`. 4. **Collect into Map**: Use the `Collectors.toMap()` method to collect elements of the `List` into a `Map` using the specified key and value mappings. -Detail implementation is written on [this code](/Week%2002%20-%20Jun%2017-21/Lecture%2003/Assignment%205/ListToMap.java), and the output of the program shows like this. +Detail implementation is written on [this code](/Week%2002/Lecture%2003/Assignment%2005/ListToMap.java), and the output of the program shows like this (updated based on comment). ![Screenshot](img/Task5.png) diff --git a/Week 02/Lecture 03/Assignment 05/RemoveDuplicates.java b/Week 02/Lecture 03/Assignment 05/RemoveDuplicates.java index f364dd0..19287f7 100644 --- a/Week 02/Lecture 03/Assignment 05/RemoveDuplicates.java +++ b/Week 02/Lecture 03/Assignment 05/RemoveDuplicates.java @@ -3,29 +3,42 @@ import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; +import java.util.ArrayList; import java.util.HashSet; +import java.util.List; import java.util.Set; public class RemoveDuplicates { public static void main(String[] args) { - String inputFileName = "data/input.csv"; - String outputFileName = "data/output.csv"; - String delimiter = ","; // Parse CSV format - - // Set to store unique keys (employeeID in this case) + if (args.length < 3) { + System.out.println("Usage: java RemoveDuplicates "); + return; + } + + String inputFileName = args[0]; + String outputFileName = args[1]; + int keyFieldIndex; + try { + keyFieldIndex = Integer.parseInt(args[2]); + } catch (NumberFormatException e) { + System.out.println("Invalid keyFieldIndex. It must be an integer."); + return; + } + + // Set to store unique keys Set seenKeys = new HashSet<>(); - + try (BufferedReader reader = new BufferedReader(new FileReader(inputFileName)); PrintWriter writer = new PrintWriter(new FileWriter(outputFileName))) { String line; while ((line = reader.readLine()) != null) { - // Split the line into fields - String[] fields = line.split(delimiter); - - // Ensure there are enough fields and key field is valid - if (fields.length > 1) { - String key = fields[0]; // Assuming employeeID is the first field + // Properly split the line respecting quoted commas + String[] fields = parseCsvLine(line); + + // Ensure key field index is valid + if (fields.length > keyFieldIndex) { + String key = fields[keyFieldIndex]; if (!seenKeys.contains(key)) { seenKeys.add(key); // Add the key to set (marks as seen) writer.println(line); // Write the line to output @@ -36,7 +49,36 @@ public static void main(String[] args) { System.out.println("Duplicates removed successfully. Output written to " + outputFileName); } catch (IOException e) { - System.out.println("I/O Error occured:" + e); + System.out.println("I/O Error occurred: " + e); } } -} + + // Function to parse CSV line while handling commas within quotes + private static String[] parseCsvLine(String line) { + boolean inQuotes = false; + StringBuilder field = new StringBuilder(); + List fields = new ArrayList<>(); + + for (char c : line.toCharArray()) { + switch (c) { + case '"': + inQuotes = !inQuotes; // Toggle the inQuotes flag + break; + case ',': + if (inQuotes) { + field.append(c); // Inside quotes, include comma + } else { + fields.add(field.toString()); + field.setLength(0); // Reset the field buffer + } + break; + default: + field.append(c); // Add character to field buffer + break; + } + } + fields.add(field.toString()); // Add last field + + return fields.toArray(new String[0]); + } +} \ No newline at end of file diff --git a/Week 02/Lecture 03/Assignment 05/img/Task5.png b/Week 02/Lecture 03/Assignment 05/img/Task5.png index ec754bd..620f659 100644 Binary files a/Week 02/Lecture 03/Assignment 05/img/Task5.png and b/Week 02/Lecture 03/Assignment 05/img/Task5.png differ diff --git a/Week 02/Lecture 04/Assignment 06/README.md b/Week 02/Lecture 04/Assignment 06/README.md index 7a36c3c..26cad3a 100644 --- a/Week 02/Lecture 04/Assignment 06/README.md +++ b/Week 02/Lecture 04/Assignment 06/README.md @@ -119,11 +119,22 @@ Here’s a detailed process on how to remove duplicate lines from files based on 4. **Write the Output**: Write the processed, duplicate-free data to a new file. #### πŸ‘¨πŸ»β€πŸ’» Implementation -Detail implementation is written on [this code](/Week%2002%20-%20Jun%2017-21/Lecture%2004/Assignment%206/RemoveDuplicatesCSV.java). Here’s what the program actually done. -1. **Read All Lines**: `Files.readAllLines(Paths.get(inputFilePath))` reads the CSV file into a list of strings. -2. **Extract Header**: The first line is treated as the header to determine the key field's index. -3. **Stream Processing**: The stream skips the header, then collects lines into a map using the key field (`id`). If a duplicate key is found, the first occurrence is retained. -4. **Write Results**: The header is re-added, and the list is written to the new file. +Detail implementation is written on [this code](/Week%2002/Lecture%2004/Assignment%2006/RemoveDuplicatesCSV.java). Here’s what the program actually done (updated based on comment). +1. **Initialize Readers and Writers** + - `BufferedReader` is used to read the input CSV file line by line. + - `BufferedWriter` is used to write the unique lines to the output CSV file. +2. **Extract and Write Header** + - The first line, which is the header, is read using `reader.readLine()`. + - This header is written immediately to the output file using `writer.write(header)`. +3. **Determine Key Field Index** + - The header is split to determine the index of the key field (`id`). + - This is done by iterating through the headers to find the matching field. +4. **Stream Processing and Duplicate Removal** + - A `Set` is used to keep track of the keys that have already been processed. + - For each subsequent line, the key field's value is checked against the `Set`. If the key is unique, the line is written to the output file. +5. **Read and Write Lines** + - The program continues to read each line from the input file, splits it to get the key field, and checks the key against the `Set`. + - If the key is not in the `Set`, the line is written to the output file and the key is added to the `Set`. **Best Practices Highlighted** 1. **`BufferedReader` for Large Files**: Using `BufferedReader` with `lines()` streams data efficiently. diff --git a/Week 02/Lecture 04/Assignment 06/RemoveDuplicatesCSV.java b/Week 02/Lecture 04/Assignment 06/RemoveDuplicatesCSV.java index 77d29de..01e728e 100644 --- a/Week 02/Lecture 04/Assignment 06/RemoveDuplicatesCSV.java +++ b/Week 02/Lecture 04/Assignment 06/RemoveDuplicatesCSV.java @@ -1,10 +1,10 @@ import java.io.BufferedReader; +import java.io.BufferedWriter; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; -import java.util.Arrays; -import java.util.List; -import java.util.stream.Collectors; +import java.util.HashSet; +import java.util.Set; public class RemoveDuplicatesCSV { public static void main(String[] args) { @@ -12,35 +12,44 @@ public static void main(String[] args) { String outputFilePath = "data/unique.csv"; String keyFieldName = "id"; - try (BufferedReader reader = Files.newBufferedReader(Paths.get(inputFilePath))) { - List lines = reader.lines().collect(Collectors.toList()); - if (lines.isEmpty()) return; + try (BufferedReader reader = Files.newBufferedReader(Paths.get(inputFilePath)); + BufferedWriter writer = Files.newBufferedWriter(Paths.get(outputFilePath))) { + + String header = reader.readLine(); + if (header == null) return; - // Extract header and determine the key field index - String header = lines.get(0); - List headers = Arrays.asList(header.split(",")); - int keyIndex = headers.indexOf(keyFieldName); - if (keyIndex == -1) throw new IllegalArgumentException("Invalid key field name"); + // Write header to the output file + writer.write(header); + writer.newLine(); - // Process lines and remove duplicates based on the key field - List uniqueLines = lines.stream() - .skip(1) // Skip header - .collect(Collectors.toMap( - line -> line.split(",")[keyIndex], // Use the key field - line -> line, // Use the line as value - (existing, replacement) -> existing // Keep the first occurrence - )) - .values() - .stream() - .collect(Collectors.toList()); + // Determine the key field index + String[] headers = header.split(","); + int keyIndex = -1; + for (int i = 0; i < headers.length; i++) { + if (headers[i].trim().equals(keyFieldName)) { + keyIndex = i; + break; + } + } + if (keyIndex == -1) throw new IllegalArgumentException("Invalid key field name"); - // Add header back to the list - uniqueLines.add(0, header); + // Use a Set to track unique keys + Set seenKeys = new HashSet<>(); - // Write the results to a new file - Files.write(Paths.get(outputFilePath), uniqueLines); + // Read and process each line + String line; + while ((line = reader.readLine()) != null) { + String[] fields = line.split(","); + if (fields.length > keyIndex) { + String key = fields[keyIndex]; + if (seenKeys.add(key)) { // Add returns false if the key was already present + writer.write(line); + writer.newLine(); + } + } + } } catch (IOException e) { - System.out.println("I/O Error occured:" + e); + System.out.println("I/O Error occurred: " + e); } } -} +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/README.md b/Week 05/Lecture 09/Assignment 01/README.md new file mode 100644 index 0000000..4bd7e28 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/README.md @@ -0,0 +1,115 @@ +# πŸ‘¨πŸ»β€πŸ« Lecture 09 - Spring MVC +> This repository is created as a part of assignment for Lecture 09 - Spring MVC + +## πŸ”Ž Assignment 01 - Practice the Example +### 🌳 Project Structure +```bash +lecture_9 +β”œβ”€β”€ .mvn/wrapper/ +β”‚ └── maven-wrapper.properties +β”œβ”€β”€ src/main/ +β”‚ β”œβ”€β”€ java/com/example/lecture_9/ +β”‚ β”‚ β”œβ”€β”€ controller/ +β”‚ β”‚ β”‚ └── EmployeeController.java +β”‚ β”‚ β”œβ”€β”€ model/ +β”‚ β”‚ β”‚ └── Employee.java +β”‚ β”‚ β”œβ”€β”€ repository/ +β”‚ β”‚ β”‚ └── EmployeeRepository.java +β”‚ β”‚ β”œβ”€β”€ service/ +β”‚ β”‚ β”‚ β”œβ”€β”€ impl/ +β”‚ β”‚ β”‚ β”‚ └─ EmployeeServiceImpl.java +β”‚ β”‚ β”‚ └── EmployeeService.java +β”‚ β”‚ └── Lecture9Application.java +β”‚ └── resources/ +β”‚ β”œβ”€β”€ static/ +β”‚ β”‚ └── index.html +β”‚ β”œβ”€β”€ templates/employees/ +β”‚ β”‚ β”œβ”€β”€ employee-form.html +β”‚ β”‚ └── list-employees.html +β”‚ └── application.properties +β”œβ”€β”€ .gitignore +β”œβ”€β”€ mvnw +β”œβ”€β”€ mvnw.cmd +β”œβ”€β”€ pom.xml +β”œβ”€β”€ run.bat +└── run.sh +``` + +### 🧩 SQL Query Data +Here is the SQL query to create the database, table, and instantiate some data, given by the [reference repository](https://github.com/NguyenVanTrieu/spring-mvc). +```sql +-- Create the database +CREATE DATABASE week5_lecture9; + +-- Use the database +USE week5_lecture9; + +-- Create the employee table +CREATE TABLE `employee` ( + `id` int NOT NULL AUTO_INCREMENT, + `first_name` varchar(45) DEFAULT NULL, + `last_name` varchar(45) DEFAULT NULL, + `email` varchar(45) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; + +-- Insert dummy data into the employee table +INSERT INTO `employee` VALUES +(1,'Leslie','Andrews','leslie@luv2code.com'), +(2,'Emma','Baumgarten','emma@luv2code.com'), +(3,'Avani','Gupta','avani@luv2code.com'), +(4,'Yuri','Petrov','yuri@luv2code.com'), +(5,'Juan','Vega','juan@luv2code.com'); +``` + +and here is the query to drop the database +```sql +-- Drop the database +DROP DATABASE IF EXISTS week5_lecture9; +``` + +Also don't forget to configure [application properties](/Week%2005/Lecture%2009/Assignment%2001/lecture_9/src/main/resources/application.properties) with this format +```java +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3306/ +spring.datasource.username= +spring.datasource.password= +``` + +### βš™οΈ How to run the program +1. Go to the `lecture_9` directory by using this command + ```bash + $ cd lecture_9 + ``` +2. Make sure you have maven installed on your computer, use `mvn -v` to check the version. +3. If you are using windows, you can run the program by using this command. + ```bash + $ ./run.bat + ``` + And if you are using Linux, you can run the program by using this command. + ```bash + $ chmod +x run.sh + $ ./run.sh + ``` + +If all the instruction is well executed, the main-view will be something like this. + +![Screenshot](img/start.png) + +### πŸ“Έ Screenshots +Here is some result of the views and APIs created based on simple MVC architecture. +
+#### Initial state + +1. **Get All Employees** + + ![Screenshot](img/api1.png) +2. **Add New Employee** + + ![Screenshot](img/api2.png) +3. **Edit Existing Employee Data** + + ![Screenshot](img/api3.png) +4. **Delete Employee** + + ![Screenshot](img/api4.png) \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/img/api1.png b/Week 05/Lecture 09/Assignment 01/img/api1.png new file mode 100644 index 0000000..51021d2 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 01/img/api1.png differ diff --git a/Week 05/Lecture 09/Assignment 01/img/api2.png b/Week 05/Lecture 09/Assignment 01/img/api2.png new file mode 100644 index 0000000..459fedb Binary files /dev/null and b/Week 05/Lecture 09/Assignment 01/img/api2.png differ diff --git a/Week 05/Lecture 09/Assignment 01/img/api3.png b/Week 05/Lecture 09/Assignment 01/img/api3.png new file mode 100644 index 0000000..b46f26c Binary files /dev/null and b/Week 05/Lecture 09/Assignment 01/img/api3.png differ diff --git a/Week 05/Lecture 09/Assignment 01/img/api4.png b/Week 05/Lecture 09/Assignment 01/img/api4.png new file mode 100644 index 0000000..9605e39 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 01/img/api4.png differ diff --git a/Week 05/Lecture 09/Assignment 01/img/start.png b/Week 05/Lecture 09/Assignment 01/img/start.png new file mode 100644 index 0000000..1f28361 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 01/img/start.png differ diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/.gitignore b/Week 05/Lecture 09/Assignment 01/lecture_9/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/.mvn/wrapper/maven-wrapper.properties b/Week 05/Lecture 09/Assignment 01/lecture_9/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..8f96f52 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw b/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw new file mode 100644 index 0000000..d7c358e --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw.cmd b/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw.cmd new file mode 100644 index 0000000..6f779cf --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/pom.xml b/Week 05/Lecture 09/Assignment 01/lecture_9/pom.xml new file mode 100644 index 0000000..a7b3c01 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/pom.xml @@ -0,0 +1,71 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.3.1 + + + com.example + lecture_9 + 1.0-SNAPSHOT + lecture_9 + Demo project for Spring Boot + + + + + + + + + + + + + + + 21 + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + com.mysql + mysql-connector-j + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-starter-web + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/run.bat b/Week 05/Lecture 09/Assignment 01/lecture_9/run.bat new file mode 100644 index 0000000..f337086 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/run.bat @@ -0,0 +1,3 @@ +@echo off +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/run.sh b/Week 05/Lecture 09/Assignment 01/lecture_9/run.sh new file mode 100644 index 0000000..382b4d2 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/Lecture9Application.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/Lecture9Application.java new file mode 100644 index 0000000..06b32f1 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/Lecture9Application.java @@ -0,0 +1,13 @@ +package com.example.lecture_9; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Lecture9Application { + + public static void main(String[] args) { + SpringApplication.run(Lecture9Application.class, args); + } + +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/controller/EmployeeController.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/controller/EmployeeController.java new file mode 100644 index 0000000..0e17c0b --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/controller/EmployeeController.java @@ -0,0 +1,76 @@ +package com.example.lecture_9.controller; + +import java.util.List; + +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; + +import com.example.lecture_9.model.Employee; +import com.example.lecture_9.service.EmployeeService; + +import lombok.AllArgsConstructor; + +@AllArgsConstructor +@Controller +@RequestMapping("/employees") +public class EmployeeController { + + private final EmployeeService employeeService; + + @GetMapping("/list") + public String listEmployees(Model theModel) { + // Get the employees from db + List theEmployees = employeeService.findAll(); + + // Add to the spring model + theModel.addAttribute("employees", theEmployees); + + return "employees/list-employees"; + } + + @GetMapping("/showFormForAdd") + public String showFormForAdd(Model theModel) { + // Create model attribute to bind form data + Employee theEmployee = new Employee(); + + theModel.addAttribute("employee", theEmployee); + + return "employees/employee-form"; + } + + @PostMapping("/showFormForUpdate") + public String showFormForUpdate(@RequestParam("employeeId") int id, + Model theModel) { + // Get the employee from the service + Employee theEmployee = employeeService.findById(id); + + // Set employee as a model attribute to pre-populate the form + theModel.addAttribute("employee", theEmployee); + + // Send over to our form + return "employees/employee-form"; + } + + @PostMapping("/save") + public String saveEmployee(@ModelAttribute("employee") Employee theEmployee) { + // Save the employee + employeeService.save(theEmployee); + + // Use a redirect to prevent duplicate submissions + return "redirect:/employees/list"; + } + + @PostMapping("/delete") + public String delete(@RequestParam("employeeId") int id) { + // Delete the employee + employeeService.deleteById(id); + + // Redirect to /employees/list + return "redirect:/employees/list"; + } +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/model/Employee.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/model/Employee.java new file mode 100644 index 0000000..9a1e7fc --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/model/Employee.java @@ -0,0 +1,29 @@ +package com.example.lecture_9.model; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.persistence.Table; +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name="employee") +@Getter +@Setter +public class Employee { + + // Define all the fields + @Id + @GeneratedValue(strategy=GenerationType.IDENTITY) + @Column(name="id") + private int id; + + private String firstName; + + private String lastName; + + private String email; +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/repository/EmployeeRepository.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/repository/EmployeeRepository.java new file mode 100644 index 0000000..f89e2ad --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/repository/EmployeeRepository.java @@ -0,0 +1,13 @@ +package com.example.lecture_9.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import com.example.lecture_9.model.Employee; + +@Repository +public interface EmployeeRepository extends JpaRepository { + List findAllByOrderByLastNameAsc(); +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/EmployeeService.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/EmployeeService.java new file mode 100644 index 0000000..001500d --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/EmployeeService.java @@ -0,0 +1,15 @@ +package com.example.lecture_9.service; + +import java.util.List; + +import com.example.lecture_9.model.Employee; + +public interface EmployeeService { + List findAll(); + + Employee findById(int theId); + + void save(Employee theEmployee); + + void deleteById(int theId); +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/impl/EmployeeServiceImpl.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/impl/EmployeeServiceImpl.java new file mode 100644 index 0000000..7636e4a --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/java/com/example/lecture_9/service/impl/EmployeeServiceImpl.java @@ -0,0 +1,38 @@ +package com.example.lecture_9.service.impl; + +import java.util.List; + +import org.springframework.stereotype.Service; + +import com.example.lecture_9.model.Employee; +import com.example.lecture_9.repository.EmployeeRepository; +import com.example.lecture_9.service.EmployeeService; + +import lombok.AllArgsConstructor; + +@Service +@AllArgsConstructor +public class EmployeeServiceImpl implements EmployeeService { + + private final EmployeeRepository employeeRepository; + + @Override + public List findAll() { + return employeeRepository.findAllByOrderByLastNameAsc(); + } + + @Override + public Employee findById(int theId) { + return employeeRepository.findById(theId).orElseThrow(); + } + + @Override + public void save(Employee theEmployee) { + employeeRepository.save(theEmployee); + } + + @Override + public void deleteById(int theId) { + employeeRepository.deleteById(theId); + } +} diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/application.properties b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/application.properties new file mode 100644 index 0000000..95405dc --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/application.properties @@ -0,0 +1,6 @@ +spring.application.name=lecture_9 + +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3308/week5_lecture9?allowPublicKeyRetrieval=true&useSSL=false +spring.datasource.username=root +spring.datasource.password=Michaeleon16606_ \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/static/index.html b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/static/index.html new file mode 100644 index 0000000..364aee5 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/static/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/employee-form.html b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/employee-form.html new file mode 100644 index 0000000..a7c3c73 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/employee-form.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + Save Employee + + + +
+

Employee management

+
+ +

Save Employee

+ +
+ + + + + + + + + + + + +
+ +
+ Back to Employees List +
+ + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/list-employees.html b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/list-employees.html new file mode 100644 index 0000000..eb271f2 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/main/resources/templates/employees/list-employees.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + Employee management + + + +
+

Employee management

+
+ + + + Add Employee + + + + + + + + + + + + + + + + + +
First NameLast NameEmailAction
+ + + + +
+
+ +
+ + +
+ + +
+ + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 01/lecture_9/src/test/java/com/example/lecture_9/Lecture9ApplicationTests.java b/Week 05/Lecture 09/Assignment 01/lecture_9/src/test/java/com/example/lecture_9/Lecture9ApplicationTests.java new file mode 100644 index 0000000..e00e166 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 01/lecture_9/src/test/java/com/example/lecture_9/Lecture9ApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.lecture_9; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class Lecture9ApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/Week 05/Lecture 09/Assignment 02/README.md b/Week 05/Lecture 09/Assignment 02/README.md new file mode 100644 index 0000000..a564256 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/README.md @@ -0,0 +1,151 @@ +# πŸ‘¨πŸ»β€πŸ« Lecture 09 - Spring MVC +> This repository is created as a part of assignment for Lecture 09 - Spring MVC + +## ✍🏼 Assignment 02 - CRUD Project for Employee Management +### 🌳 Project Structure +```bash +lecture_9_2 +β”œβ”€β”€ .mvn/wrapper/ +β”‚ └── maven-wrapper.properties +β”œβ”€β”€ src/main/ +β”‚ β”œβ”€β”€ java/com/example/lecture_9_2/ +β”‚ β”‚ β”œβ”€β”€ config/ +β”‚ β”‚ β”‚ └── DateConfig.java +β”‚ β”‚ β”œβ”€β”€ controller/ +β”‚ β”‚ β”‚ └── EmployeeController.java +β”‚ β”‚ β”œβ”€β”€ data/ +β”‚ β”‚ β”‚ └── ImportData.csv +β”‚ β”‚ β”œβ”€β”€ model/ +β”‚ β”‚ β”‚ └── Employee.java +β”‚ β”‚ β”œβ”€β”€ repository/ +β”‚ β”‚ β”‚ └── EmployeeRepository.java +β”‚ β”‚ β”œβ”€β”€ service/ +β”‚ β”‚ β”‚ β”œβ”€β”€ impl/ +β”‚ β”‚ β”‚ β”‚ └─ EmployeeServiceImpl.java +β”‚ β”‚ β”‚ └── EmployeeService.java +β”‚ β”‚ β”œβ”€β”€ utils/ +β”‚ β”‚ β”‚ β”œβ”€β”€ DateUtils.java +β”‚ β”‚ β”‚ β”œβ”€β”€ FileUtils.java +β”‚ β”‚ β”‚ └── ThymeleafUtils.java +β”‚ β”‚ └── Lecture92Application.java +β”‚ └── resources/ +β”‚ β”œβ”€β”€ static/ +β”‚ β”‚ β”œβ”€β”€ css +β”‚ β”‚ β”‚ └── style.css +β”‚ β”‚ β”œβ”€β”€ js +β”‚ β”‚ β”‚ └── script.js +β”‚ β”‚ └── index.html +β”‚ β”œβ”€β”€ templates/employees/ +β”‚ β”‚ β”œβ”€β”€ employee-form.html +β”‚ β”‚ └── list-employees.html +β”‚ └── application.properties +β”œβ”€β”€ .gitignore +β”œβ”€β”€ mvnw +β”œβ”€β”€ mvnw.cmd +β”œβ”€β”€ pom.xml +β”œβ”€β”€ run.bat +└── run.sh +``` + +### 🧩 SQL Query Data +Here is the SQL query to create the database, table, and instantiate some data. +```sql +-- Create the database +CREATE DATABASE week5_lecture9_2; + +-- Use the database +USE week5_lecture9_2; + +-- Create the employee table +CREATE TABLE `employee` ( + `id` VARCHAR(50) NOT NULL, + `name` VARCHAR(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `dob` DATE NOT NULL, + `address` VARCHAR(255) NOT NULL, + `department` VARCHAR(100) NOT NULL, + PRIMARY KEY (id) +); + +-- Insert dummy data into the employee table +INSERT INTO Employee (id, name, dob, address, department) VALUES +('1caa1b8e-678c-41a2-9d91-234f1d75f777', 'Alice Johnson', '1985-05-15', '123 Elm Street, Springfield', 'WEB'), +('2bff2b8f-789d-41b3-9e92-345f2d86f888', 'Bob Smith', '1979-12-22', '456 Oak Avenue, Springfield', 'SYSTEM'), +('3ccd3c90-890e-41c4-9fa3-456f3d97f999', 'Carol Davis', '1990-08-12', '789 Pine Road, Springfield', 'MOBILE'), +('4dde4d91-901f-41d5-9fb4-567f4e08faaa', 'David Wilson', '1988-07-04', '321 Maple Street, Springfield', 'QA'), +('5eef5e92-0120-41e6-9fc5-678f5e19fbbb', 'Eva Brown', '1992-03-28', '654 Birch Lane, Springfield', 'ADMIN'); +``` + +and here is the query to drop the database +```sql +-- Drop the database +DROP DATABASE IF EXISTS week5_lecture9_2; +``` + +Also don't forget to configure [application properties](/Week%2005/Lecture%2009/Assignment%2002/lecture_9_2/src/main/resources/application.properties) with this format +```java +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3306/ +spring.datasource.username= +spring.datasource.password= +``` + +### βš™οΈ How to run the program +1. Go to the `lecture_9_2` directory by using this command + ```bash + $ cd lecture_9_2 + ``` +2. Make sure you have maven installed on your computer, use `mvn -v` to check the version. +3. If you are using windows, you can run the program by using this command. + ```bash + $ ./run.bat + ``` + And if you are using Linux, you can run the program by using this command. + ```bash + $ chmod +x run.sh + $ ./run.sh + ``` + +If all the instruction is well executed, the main-view will be something like this. Open [localhost:8080](http://localhost:8080) to see the view. + +### πŸ“Έ Screenshots +Here is some result of the views and APIs created based on simple MVC architecture. +
+#### Initial state + +1. **Get All Employees** + + ![Screenshot](img/api1.png) +2. **Add New Employee (Empty Field Exist)** + + ![Screenshot](img/api2.png) +3. **Add New Employee (Valid)** + + ![Screenshot](img/api3.png) +4. **Edit Existing Employee Data** + + ![Screenshot](img/api4.png) + + ![Screenshot](img/api5.png) +5. **Delete Employee** + + ![Screenshot](img/api6.png) + + ![Screenshot](img/api7.png) +6. **Empty Employees** + + ![Screenshot](img/api8.png) +7. **Upload Employees Data via CSV (Invalid Format)** + + ![Screenshot](img/api9.png) +8. **Upload Employees Data via CSV (Valid Format)** + + ![Screenshot](img/api10.png) + + ![Screenshot](img/api11.png) +9. **Pagination View** + + ![Screenshot](img/api12.png) + + ![Screenshot](img/api13.png) + + ![Screenshot](img/api14.png) \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/img/api1.png b/Week 05/Lecture 09/Assignment 02/img/api1.png new file mode 100644 index 0000000..559de88 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api1.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api10.png b/Week 05/Lecture 09/Assignment 02/img/api10.png new file mode 100644 index 0000000..6bbad6d Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api10.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api11.png b/Week 05/Lecture 09/Assignment 02/img/api11.png new file mode 100644 index 0000000..44a6858 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api11.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api12.png b/Week 05/Lecture 09/Assignment 02/img/api12.png new file mode 100644 index 0000000..9516f56 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api12.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api13.png b/Week 05/Lecture 09/Assignment 02/img/api13.png new file mode 100644 index 0000000..4e0897e Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api13.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api14.png b/Week 05/Lecture 09/Assignment 02/img/api14.png new file mode 100644 index 0000000..fb8f279 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api14.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api2.png b/Week 05/Lecture 09/Assignment 02/img/api2.png new file mode 100644 index 0000000..ae6bef2 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api2.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api3.png b/Week 05/Lecture 09/Assignment 02/img/api3.png new file mode 100644 index 0000000..358e330 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api3.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api4.png b/Week 05/Lecture 09/Assignment 02/img/api4.png new file mode 100644 index 0000000..dd465b3 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api4.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api5.png b/Week 05/Lecture 09/Assignment 02/img/api5.png new file mode 100644 index 0000000..b8019ae Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api5.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api6.png b/Week 05/Lecture 09/Assignment 02/img/api6.png new file mode 100644 index 0000000..6e5ee78 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api6.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api7.png b/Week 05/Lecture 09/Assignment 02/img/api7.png new file mode 100644 index 0000000..81501aa Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api7.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api8.png b/Week 05/Lecture 09/Assignment 02/img/api8.png new file mode 100644 index 0000000..e112e87 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api8.png differ diff --git a/Week 05/Lecture 09/Assignment 02/img/api9.png b/Week 05/Lecture 09/Assignment 02/img/api9.png new file mode 100644 index 0000000..9f14fa4 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 02/img/api9.png differ diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/.gitignore b/Week 05/Lecture 09/Assignment 02/lecture_9_2/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/.mvn/wrapper/maven-wrapper.properties b/Week 05/Lecture 09/Assignment 02/lecture_9_2/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..8f96f52 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw b/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw new file mode 100644 index 0000000..d7c358e --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw.cmd b/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw.cmd new file mode 100644 index 0000000..6f779cf --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/pom.xml b/Week 05/Lecture 09/Assignment 02/lecture_9_2/pom.xml new file mode 100644 index 0000000..50e4b11 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/pom.xml @@ -0,0 +1,80 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.3.1 + + + com.example + lecture_9_2 + 1.0-SNAPSHOT + lecture_9_2 + Demo project for Spring Boot + + + + + + + + + + + + + + + 21 + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + com.mysql + mysql-connector-j + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-devtools + + + org.springframework.boot + spring-boot-starter-web + + + org.apache.commons + commons-csv + 1.9.0 + + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.bat b/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.bat new file mode 100644 index 0000000..0bc0dfb --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.bat @@ -0,0 +1,3 @@ +@echo off +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9_2-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.sh b/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.sh new file mode 100644 index 0000000..86e03c8 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9_2-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java new file mode 100644 index 0000000..9232364 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java @@ -0,0 +1,13 @@ +package com.example.lecture_9_2; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Lecture92Application { + + public static void main(String[] args) { + SpringApplication.run(Lecture92Application.class, args); + } + +} diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java new file mode 100644 index 0000000..e9699fe --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java @@ -0,0 +1,34 @@ +package com.example.lecture_9_2.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import com.example.lecture_9_2.utils.DateUtils; +import com.example.lecture_9_2.utils.ThymeleafUtils; + +@Configuration +public class DateConfig { + + /** + * This method creates and returns an instance of the DateUtils class. + * The DateUtils class provides utility methods for working with dates. + * + * @return An instance of the DateUtils class. + */ + @Bean + public DateUtils dateUtils() { + return new DateUtils(); + } + + /** + * This method creates and returns an instance of the ThymeleafUtils class. + * The ThymeleafUtils class provides utility methods for working with Thymeleaf templates. + * + * @return An instance of the ThymeleafUtils class. + */ + @Bean + public ThymeleafUtils thymeleafUtils() { + return new ThymeleafUtils(); + } +} + diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java new file mode 100644 index 0000000..bfaad2d --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java @@ -0,0 +1,134 @@ +package com.example.lecture_9_2.controller; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.data.domain.Pageable; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; +import com.example.lecture_9_2.service.EmployeeService; + +import lombok.AllArgsConstructor; + +@AllArgsConstructor +@Controller +@RequestMapping("/employees") +public class EmployeeController { + + private final EmployeeService employeeService; + + /** + * This method retrieves a paginated list of employees from the database and renders it in the "employees/list-employees" view. + * The page number is specified as a request parameter, with a default value of 1. + * The page size is set to 20, but can be adjusted as needed. + * + * @param theModel The Spring Model to which the paginated list of employees will be added as an attribute. + * @param page The page number of the paginated list of employees. Defaults to 1 if not provided. + * @return The view name "employees/list-employees" which will be rendered by the Spring framework. + */ + @GetMapping("/list") + public String listEmployees(Model theModel, @RequestParam(defaultValue = "0") int page) { + Pageable pageable = PageRequest.of(page, 20); // 20 items per page + Page employeePage = employeeService.findAll(pageable); + theModel.addAttribute("employeePage", employeePage); + return "employees/list-employees"; + } + + /** + * This method renders the form for adding a new employee. + * It creates a new Employee object and adds it to the Spring Model as an attribute. + * The form is then rendered using the "employees/employee-form" view. + * + * @param theModel The Spring Model to which the new Employee object will be added as an attribute. + * @return The view name "employees/employee-form" which will be rendered by the Spring framework. + */ + @GetMapping("/showFormForAdd") + public String showFormForAdd(Model theModel) { + // Create model attribute to bind form data + Employee theEmployee = new Employee(); + + // Set employee as a model attribute to pre-populate the form + theModel.addAttribute("employee", theEmployee); + + // Send over to our form + return "employees/employee-form"; + } + + /** + * This method renders the form for updating an existing employee. + * It retrieves the employee from the database using the provided employeeId, + * populates the Spring Model with the employee object, and then renders the "employees/employee-form" view. + * + * @param employeeId The unique identifier of the employee to be updated. + * @param theModel The Spring Model to which the employee object will be added as an attribute. + * @return The view name "employees/employee-form" which will be rendered by the Spring framework. + */ + @PostMapping("/showFormForUpdate") + public String showFormForUpdate(@RequestParam("employeeId") String id, + Model theModel) { + // Get the employee from the service + Employee theEmployee = employeeService.findById(id); + + // Set employee as a model attribute to pre-populate the form + theModel.addAttribute("employee", theEmployee); + + // Send over to our form + return "employees/employee-form"; + } + + /** + * This method saves the provided employee object to the database using the {@link EmployeeService}. + * After the employee is saved, a redirect is performed to the "/employees/list" endpoint to prevent duplicate submissions. + * + * @param theEmployee The {@link Employee} object to be saved. + * @return A string representing the redirect URL to the "/employees/list" endpoint. + */ + @PostMapping("/save") + public String saveEmployee(@ModelAttribute("employee") Employee theEmployee) { + // Save the employee + employeeService.save(theEmployee); + + // Use a redirect to prevent duplicate submissions + return "redirect:/employees/list"; + } + + /** + * This method deletes an employee from the database using the provided employeeId. + * After the employee is deleted, a redirect is performed to the "/employees/list" endpoint to prevent duplicate submissions. + * + * @param employeeId The unique identifier of the employee to be deleted. + * @return A string representing the redirect URL to the "/employees/list" endpoint. + */ + @PostMapping("/delete") + public String delete(@RequestParam("employeeId") String id) { + // Delete the employee + employeeService.deleteById(id); + + // Redirect to /employees/list + return "redirect:/employees/list"; + } + + /** + * This method is responsible for uploading a CSV file containing employee data to the server. + * The uploaded file is processed by the {@link EmployeeService} to import the employee data into the database. + * After the file is uploaded and processed, the method redirects the user to the "/employees/list" endpoint to display the updated list of employees. + * + * @param file The {@link MultipartFile} object representing the CSV file to be uploaded. + * @return A string representing the redirect URL to the "/employees/list" endpoint. + */ + @PostMapping("/upload") + public String uploadCsvFile(@RequestParam("file") MultipartFile file) { + // Upload the CSV using the service + employeeService.uploadCsv(file); + + // Redirect to /employees/list + return "redirect:/employees/list"; + } +} diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/data/ImportData.csv b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/data/ImportData.csv new file mode 100644 index 0000000..287d2bf --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/data/ImportData.csv @@ -0,0 +1,5001 @@ +ID,Name,DateOfBirth,Address,Department +ABC_1,Stesha Benyan,23/10/1981,6 Ronald Regan Court,SYSTEM +ABC_2,Alf McTiernan,14/12/1990,9390 Utah Way,WEB +ABC_3,Olympe Nevill,30/05/1985,5 Rowland Pass,WEB +ABC_4,Noemi Silwood,9/2/1999,92736 Orin Plaza,MOBILE +ABC_5,Gale Gwalter,6/7/1997,5677 Express Lane,SYSTEM +ABC_6,Jo Conibear,13/03/1987,7990 Bashford Drive,MOBILE +ABC_7,Mar Cocksedge,21/09/1995,5 Dunning Circle,WEB +ABC_8,Moise Trillow,10/12/1994,79 Everett Circle,MOBILE +ABC_9,Perceval Leys,16/02/1996,82046 Rowland Crossing,MOBILE +ABC_10,Madeline Aspinal,30/11/1984,98444 Dixon Way,QA +ABC_11,Charin Ramshaw,31/08/1984,55 Blue Bill Park Road,SYSTEM +ABC_12,Garrek Dericot,14/02/1980,90 Ilene Crossing,QA +ABC_13,Geri Bendley,22/05/1988,5642 Crest Line Plaza,MOBILE +ABC_14,Joelle Greenlies,18/05/1998,3 Schiller Junction,ADMIN +ABC_15,Weider Soitoux,5/2/1993,390 Elmside Trail,SYSTEM +ABC_16,Grange Pitney,11/7/1989,79 Mccormick Drive,QA +ABC_17,Charity Smee,19/10/1986,80 Northport Point,QA +ABC_18,Ode Pescod,8/2/1994,62317 Barnett Junction,SYSTEM +ABC_19,Humfrid Caddies,27/01/1997,65 Miller Circle,WEB +ABC_20,Gilli Tiner,29/05/1986,369 Center Point,MOBILE +ABC_21,Alessandro Eriksson,14/03/1982,2 Bluejay Pass,WEB +ABC_22,Harris Wyles,14/07/1991,04938 Northfield Alley,QA +ABC_23,Amanda Vasilmanov,22/02/1997,2 Fuller Court,WEB +ABC_24,Muffin Doody,18/09/1990,586 Basil Point,QA +ABC_25,Emera Balkwill,21/02/1980,8 Riverside Drive,QA +ABC_26,Yancy Himpson,30/07/1989,067 Karstens Way,MOBILE +ABC_27,Farrell Buchett,12/7/1999,5 Meadow Ridge Alley,QA +ABC_28,Vanda Veldens,10/8/1997,91954 Moland Drive,QA +ABC_29,Katherine Joannet,25/08/1995,97 5th Center,SYSTEM +ABC_30,Vale Gosden,21/05/1986,20 Blackbird Street,SYSTEM +ABC_31,Gracia Burleigh,11/8/1992,487 Sugar Court,MOBILE +ABC_32,Arlena Troup,21/06/1982,01570 6th Way,MOBILE +ABC_33,Kris Routham,28/01/1992,501 Cardinal Court,WEB +ABC_34,Jamal Sabatier,11/3/1993,0353 Crownhardt Hill,MOBILE +ABC_35,Caitrin Sabben,12/11/1987,658 Sommers Point,QA +ABC_36,Daisey Malloch,31/08/1995,2223 David Street,SYSTEM +ABC_37,Davide Clymer,25/12/1992,09620 Bultman Alley,MOBILE +ABC_38,Madalena Calderonello,10/12/1985,55 Graedel Center,ADMIN +ABC_39,Kayley Spatig,14/05/1993,751 Rockefeller Way,ADMIN +ABC_40,Jordana Hugnin,9/2/1984,2539 Nancy Lane,ADMIN +ABC_41,Murielle Andrys,11/7/1991,905 Green Circle,WEB +ABC_42,Babb Ivashev,2/2/1997,8 Larry Street,SYSTEM +ABC_43,Dicky Sherratt,29/02/1996,16254 Clyde Gallagher Park,QA +ABC_44,Marlon Gladstone,25/03/1999,39314 Shopko Terrace,MOBILE +ABC_45,Queenie Pennicott,25/06/1988,5576 Arizona Trail,WEB +ABC_46,Oriana Mathews,2/10/1984,9170 High Crossing Hill,QA +ABC_47,Baldwin Palmar,23/05/1985,936 Bashford Avenue,SYSTEM +ABC_48,Livvy Sessuns,12/10/1982,88 Shasta Hill,WEB +ABC_49,Hadrian Mitchiner,19/09/1997,19 Scoville Junction,WEB +ABC_50,Phillie Dunbavin,20/11/1983,5290 Bonner Crossing,WEB +ABC_51,Nat Tomasini,17/12/1980,23458 Acker Street,WEB +ABC_52,Sharai Arnaud,2/11/1985,354 Darwin Place,ADMIN +ABC_53,Flint Haxbie,4/1/1980,97 Oakridge Alley,WEB +ABC_54,Sharlene Darnbrook,30/09/1985,5514 Maple Plaza,ADMIN +ABC_55,Hilliard Mortel,15/12/1995,61238 Johnson Pass,WEB +ABC_56,Tad Swallwell,31/05/1986,21 Hansons Lane,WEB +ABC_57,Teresita Po,11/6/1988,491 Westerfield Parkway,WEB +ABC_58,Monroe Ilymanov,29/12/1989,48532 Heath Lane,MOBILE +ABC_59,Carlina O'Hartnedy,23/01/1987,46 Summit Court,ADMIN +ABC_60,Kenny Boness,14/07/1998,2479 Hovde Parkway,SYSTEM +ABC_61,Jocelyn Cardus,9/7/1981,14879 Namekagon Street,SYSTEM +ABC_62,Andrus Waby,13/12/1999,00190 Washington Center,SYSTEM +ABC_63,Garret Delgaty,12/6/1994,04646 Helena Place,MOBILE +ABC_64,Starlene Sinnocke,22/06/1990,43151 Bay Circle,QA +ABC_65,Hermy Ravilus,27/05/1989,8 East Parkway,SYSTEM +ABC_66,Gabbie Hunsworth,30/03/1984,260 Ridgeway Pass,ADMIN +ABC_67,Faustina Lownes,18/12/1998,86 Graedel Terrace,ADMIN +ABC_68,Federica Kropp,16/07/1983,8 Melody Drive,QA +ABC_69,George Ammer,4/6/1983,0864 Logan Avenue,QA +ABC_70,Keen Antonelli,29/07/1986,48125 Mosinee Hill,SYSTEM +ABC_71,Raffaello Dain,23/07/1991,6 Laurel Point,ADMIN +ABC_72,Fanny Gathercole,27/11/1995,521 Michigan Street,QA +ABC_73,Isadore Stowers,3/12/1991,58 Village Green Point,MOBILE +ABC_74,Merrick Sugden,25/05/1991,19 Rockefeller Parkway,SYSTEM +ABC_75,Blondell Drepp,1/2/1988,498 Northport Hill,ADMIN +ABC_76,Oliviero Sheen,3/5/1985,4476 Northland Terrace,WEB +ABC_77,Marilin Crennell,10/10/1992,45 Gale Hill,WEB +ABC_78,Elva Holwell,4/11/1988,13 Nova Way,QA +ABC_79,Loria Reggio,17/11/1984,3559 Shopko Crossing,QA +ABC_80,Udale Teas,4/11/1980,9 Clyde Gallagher Center,QA +ABC_81,Betty Ibbeson,2/8/1993,39 Swallow Plaza,SYSTEM +ABC_82,Lodovico Lanfere,7/7/1992,5 Holmberg Point,QA +ABC_83,Sunny Carruth,28/05/1985,60 Orin Court,SYSTEM +ABC_84,Timmie Kinrade,21/11/1993,2 Pleasure Terrace,SYSTEM +ABC_85,Lucky Chese,22/10/1989,3 Tennessee Drive,SYSTEM +ABC_86,Keefer Garside,22/10/1984,662 Eliot Circle,SYSTEM +ABC_87,Yuma Cholomin,25/04/1987,1 Northridge Point,QA +ABC_88,Tirrell Romao,2/9/1981,6 Warner Crossing,WEB +ABC_89,Caresse Robillard,30/12/1982,0216 Hermina Road,MOBILE +ABC_90,Peder Chichgar,24/01/1990,144 Memorial Parkway,QA +ABC_91,Jemima Jachimiak,1/7/1987,1478 Kingsford Trail,MOBILE +ABC_92,Madel Summers,9/12/1991,1 Forest Road,MOBILE +ABC_93,Phelia O'Connel,12/2/1980,9420 Londonderry Avenue,ADMIN +ABC_94,Salvidor Mandre,22/02/1990,6 Redwing Plaza,MOBILE +ABC_95,Uri Eads,3/6/1989,0 Meadow Valley Road,SYSTEM +ABC_96,Stella Traher,28/04/1993,412 Eggendart Terrace,WEB +ABC_97,Lenci Teece,27/12/1981,6682 Springview Way,MOBILE +ABC_98,Birgit Boni,6/10/1993,879 Packers Hill,MOBILE +ABC_99,Georgi Spark,9/8/1984,61 Larry Alley,WEB +ABC_100,Donaugh Adlem,6/3/1996,42 Marquette Crossing,MOBILE +ABC_101,Barry Blaylock,2/4/1986,89 Montana Way,QA +ABC_102,Avictor Cornilli,2/7/1998,2 Oakridge Terrace,QA +ABC_103,Jerrie Tidcombe,11/9/1984,390 Melody Alley,QA +ABC_104,Ollie Kew,7/8/1993,94 Jay Plaza,ADMIN +ABC_105,Tierney Petrazzi,3/4/1987,047 Scofield Park,MOBILE +ABC_106,Carmella Pittway,10/3/1989,03 Kensington Avenue,WEB +ABC_107,Ros Besse,8/8/1982,1 Scott Avenue,WEB +ABC_108,Rubina Heinschke,22/08/1997,41521 American Terrace,MOBILE +ABC_109,Willetta Bosden,27/08/1982,0946 Petterle Park,ADMIN +ABC_110,Francene Croutear,11/7/1988,969 Glacier Hill Avenue,SYSTEM +ABC_111,Idell Huygens,27/10/1995,6498 Daystar Center,SYSTEM +ABC_112,Freeman Lackham,8/9/1992,0 Corben Center,WEB +ABC_113,Tatiana Seebright,11/3/1996,02845 Donald Circle,WEB +ABC_114,Keir Himpson,13/01/1986,6143 Columbus Park,SYSTEM +ABC_115,Euphemia Habbergham,6/7/1995,218 Harper Point,QA +ABC_116,Mallissa Cuardall,26/11/1986,9 Orin Place,SYSTEM +ABC_117,Padraic Vargas,21/12/1981,07 Emmet Parkway,WEB +ABC_118,Kristan Nelsen,28/08/1998,22 Lien Parkway,SYSTEM +ABC_119,Wadsworth Ceschini,12/1/1997,5 Porter Trail,MOBILE +ABC_120,Tull Bang,19/12/1986,47979 Russell Way,ADMIN +ABC_121,Charlean MacArthur,28/09/1985,3340 Blaine Center,MOBILE +ABC_122,Alta Tapp,29/01/1994,2 Judy Drive,MOBILE +ABC_123,Drugi La Grange,9/2/1996,5289 Anzinger Avenue,WEB +ABC_124,Dayle Cheke,27/11/1981,8172 Sutteridge Plaza,QA +ABC_125,Joell Hargrove,24/08/1980,217 Reinke Drive,WEB +ABC_126,Mei Deinhardt,13/09/1980,726 Lakewood Gardens Place,WEB +ABC_127,Sherlock Burtonwood,22/09/1999,45468 Blackbird Terrace,ADMIN +ABC_128,Felecia Tante,27/10/1997,6840 Bayside Hill,WEB +ABC_129,Afton Chatband,12/11/1999,7578 Lerdahl Crossing,ADMIN +ABC_130,Benito Kaye,12/6/1985,57741 Heffernan Park,ADMIN +ABC_131,Teriann Dimitrie,10/7/1999,00 Morrow Drive,QA +ABC_132,Bea Barnaby,12/1/1982,6190 Birchwood Parkway,MOBILE +ABC_133,Phoebe MacCaffery,13/09/1988,35 Monica Way,ADMIN +ABC_134,Maria Frow,12/4/1994,4 Sugar Parkway,MOBILE +ABC_135,Kimmi Whoston,30/04/1986,246 Bluestem Way,SYSTEM +ABC_136,Cassie Tisun,10/1/1994,74 Mendota Circle,WEB +ABC_137,Kaleb Mattsson,25/10/1987,2 Thackeray Road,WEB +ABC_138,Patsy Wiffill,15/07/1993,356 Myrtle Terrace,ADMIN +ABC_139,Alejandrina Durrell,18/09/1985,7210 Michigan Plaza,QA +ABC_140,Lew Miliffe,3/9/1995,2 Hoffman Crossing,MOBILE +ABC_141,Becca Labarre,24/09/1998,37 Sunnyside Alley,MOBILE +ABC_142,Willard MacCumeskey,1/6/1997,25 Dorton Parkway,SYSTEM +ABC_143,Gonzales Antoniutti,4/12/1997,56 Erie Point,WEB +ABC_144,Christabel Szabo,15/06/1980,48593 Dottie Junction,QA +ABC_145,Eva Walford,27/09/1997,0 Luster Avenue,WEB +ABC_146,Zahara Guidone,18/12/1984,7608 Dexter Park,QA +ABC_147,Toddy Fero,30/06/1981,0 Hovde Alley,SYSTEM +ABC_148,Geri Newall,22/09/1989,7442 Killdeer Hill,SYSTEM +ABC_149,Minnnie McNelly,1/8/1994,8442 Sycamore Pass,WEB +ABC_150,Spencer Oxford,7/7/1992,7 Debs Court,QA +ABC_151,Thedric Zeale,27/03/1989,44646 5th Parkway,SYSTEM +ABC_152,Ada Dykas,24/01/1987,13214 Spenser Parkway,QA +ABC_153,Cobby Cumberland,15/12/1996,4483 Arrowood Center,WEB +ABC_154,Ardelis Mallinder,23/03/1986,4772 Stephen Parkway,ADMIN +ABC_155,Kesley Caddell,23/03/1989,80436 Lukken Trail,QA +ABC_156,Viv Peaurt,12/3/1985,0 Eastwood Alley,SYSTEM +ABC_157,Winny Stopps,22/07/1983,7 Paget Avenue,QA +ABC_158,Faunie Briers,23/06/1990,92 Roth Terrace,ADMIN +ABC_159,Tilly Prester,12/12/1990,3 2nd Avenue,QA +ABC_160,Aldon Kunze,18/07/1981,65780 La Follette Junction,MOBILE +ABC_161,Mikey Mongain,12/11/1990,1 Kingsford Center,SYSTEM +ABC_162,Randolf Nowill,16/11/1986,8 Bayside Center,QA +ABC_163,Lotty Guyonneau,21/06/1994,8917 Mariners Cove Way,SYSTEM +ABC_164,Geri Mattusevich,30/07/1986,9 Blue Bill Park Parkway,WEB +ABC_165,Gretna Ling,17/04/1996,0081 Village Green Center,QA +ABC_166,Godart Joron,16/08/1996,09 Arapahoe Avenue,SYSTEM +ABC_167,Ulberto Shorrock,27/12/1994,7 Sutteridge Pass,SYSTEM +ABC_168,Mollie Buller,11/2/1983,388 Buell Street,WEB +ABC_169,Almeria MacBarron,27/12/1982,327 Tomscot Center,MOBILE +ABC_170,Rafferty Epsley,28/01/1985,47541 Crescent Oaks Place,QA +ABC_171,Rossie Julyan,27/02/1981,22805 Tennessee Place,QA +ABC_172,Alta Darnody,13/11/1980,0 Bashford Street,QA +ABC_173,Shaun Clitherow,12/10/1986,51660 Troy Avenue,MOBILE +ABC_174,Tessie Stockton,24/03/1994,69672 Canary Center,WEB +ABC_175,Kori Naisey,5/3/1998,03 Kenwood Plaza,QA +ABC_176,Enriqueta Shannon,27/10/1985,9488 Sachtjen Alley,WEB +ABC_177,Marina Rawcliffe,26/09/1985,6160 Anzinger Place,QA +ABC_178,Lesley Fawson,3/3/1989,488 Di Loreto Alley,QA +ABC_179,Krishna Smale,9/4/1984,74188 Kings Drive,SYSTEM +ABC_180,Sharia O'Harney,11/8/1988,97194 New Castle Lane,SYSTEM +ABC_181,Lynnet Cleft,10/5/1989,003 Red Cloud Drive,QA +ABC_182,Laughton Blakeslee,7/6/1995,56 Ohio Alley,WEB +ABC_183,Junia Kirkbride,27/09/1985,5153 Everett Circle,QA +ABC_184,Carmen O'Quin,22/07/1993,03 Crowley Road,SYSTEM +ABC_185,Sloane Childers,25/09/1986,1648 Tennyson Park,SYSTEM +ABC_186,Billye Gullivan,29/09/1999,969 Truax Lane,MOBILE +ABC_187,Tedman Rubee,24/02/1985,3 Anthes Center,WEB +ABC_188,Nannie Barry,16/10/1980,8 Nevada Hill,SYSTEM +ABC_189,Hanson Rosier,8/6/1992,452 Myrtle Center,MOBILE +ABC_190,Roma Longbottom,17/08/1989,9531 Nancy Road,WEB +ABC_191,Darlleen Boulton,17/10/1985,8 Hermina Pass,QA +ABC_192,Emmett Elbourn,31/08/1990,74211 Derek Drive,WEB +ABC_193,Isak Sloey,14/09/1982,71 Westport Park,SYSTEM +ABC_194,Parke Yorkston,22/08/1997,09 Hauk Circle,SYSTEM +ABC_195,Raye Griniov,15/05/1984,8 Warrior Way,WEB +ABC_196,Shana Staite,9/12/1987,7 Talisman Junction,SYSTEM +ABC_197,Vinnie Richardson,15/06/1998,8260 Summer Ridge Road,MOBILE +ABC_198,Cristina Elford,22/07/1998,1 Kings Center,QA +ABC_199,Siward Jellyman,16/10/1993,9 Ridge Oak Drive,ADMIN +ABC_200,Fidel Chapier,23/05/1997,3573 Vermont Hill,QA +ABC_201,Kathryne Rapsey,30/12/1984,55755 Birchwood Place,SYSTEM +ABC_202,Bendite Reichert,1/10/1993,3 Delladonna Way,WEB +ABC_203,Jarvis Sclater,2/8/1980,27478 Commercial Center,ADMIN +ABC_204,Donella Swatton,16/11/1993,586 Packers Trail,QA +ABC_205,Regan Mortell,6/11/1981,743 Westridge Lane,QA +ABC_206,Orbadiah Garlette,18/12/1997,10397 Elka Circle,MOBILE +ABC_207,Amanda Bisley,31/07/1988,882 Union Terrace,SYSTEM +ABC_208,Leoline Swatheridge,28/10/1989,7977 Petterle Place,WEB +ABC_209,Cathleen Rabson,26/05/1981,0045 Dryden Avenue,WEB +ABC_210,Pieter Routh,7/8/1986,7661 Barby Center,WEB +ABC_211,Northrup Shallo,3/4/1989,951 Old Shore Avenue,QA +ABC_212,Waite Swann,14/04/1999,95747 Alpine Junction,MOBILE +ABC_213,Mabel Kemwall,9/6/1997,3944 Lakewood Gardens Park,WEB +ABC_214,Darell Thombleson,17/03/1998,22 Valley Edge Junction,QA +ABC_215,Chas Crayker,25/05/1985,9 Sauthoff Trail,SYSTEM +ABC_216,Wilbert Douty,20/10/1986,068 Schmedeman Lane,WEB +ABC_217,Jilly Meharry,21/01/1997,14733 Oak Valley Park,WEB +ABC_218,Carrie Caldwall,26/01/1981,4427 Kenwood Road,WEB +ABC_219,Lauraine Shanahan,31/10/1991,44 Carey Place,QA +ABC_220,Wallis Epperson,5/7/1983,5 Northview Way,SYSTEM +ABC_221,Curcio Heamus,11/3/1983,4939 Crescent Oaks Court,WEB +ABC_222,Arlie Jellett,31/07/1984,85 Truax Place,ADMIN +ABC_223,Cletis Blackley,27/03/1998,3295 Helena Parkway,QA +ABC_224,Halimeda Spurryer,26/04/1988,08956 Di Loreto Avenue,MOBILE +ABC_225,Giralda Christol,18/01/1988,12 Lakewood Gardens Point,WEB +ABC_226,Haskell Hance,14/12/1985,87 Cambridge Pass,WEB +ABC_227,Florentia Borrie,26/08/1984,70914 Arkansas Avenue,WEB +ABC_228,Yalonda Jandl,14/11/1988,09101 Dahle Park,SYSTEM +ABC_229,Shara Blaasch,6/8/1991,94 Westridge Lane,WEB +ABC_230,Desiri Jobern,10/9/1998,335 Sommers Court,MOBILE +ABC_231,Giraldo Hansel,11/6/1985,09 Ludington Pass,QA +ABC_232,Marlane Blundin,14/03/1989,080 Hagan Road,MOBILE +ABC_233,Sioux Alfonsini,19/03/1981,9398 Towne Way,WEB +ABC_234,Winny Mulvey,12/3/1994,7 Susan Lane,SYSTEM +ABC_235,Zechariah Rosenfeld,9/7/1997,3 Stuart Junction,WEB +ABC_236,Dorotea Milburne,10/6/1997,8792 Calypso Court,MOBILE +ABC_237,Brita Cranham,16/12/1997,6352 Forest Alley,QA +ABC_238,Aylmar Ennion,29/05/1994,48375 Village Green Crossing,MOBILE +ABC_239,Farand Featherstonhalgh,22/02/1992,5 Veith Hill,WEB +ABC_240,Mohammed McGeagh,8/2/1994,84971 Graedel Place,SYSTEM +ABC_241,Suzie Probert,27/01/1987,59988 Southridge Crossing,QA +ABC_242,Toby De Giorgio,15/11/1989,056 East Parkway,SYSTEM +ABC_243,Donny Brea,29/08/1980,4 Miller Way,QA +ABC_244,Max Limerick,6/5/1999,833 Aberg Lane,MOBILE +ABC_245,Edita Giorgietto,29/12/1994,24 Pearson Alley,MOBILE +ABC_246,Sterne Summerfield,3/4/1999,259 Badeau Circle,QA +ABC_247,Fannie Garrud,24/06/1989,3294 Coleman Park,SYSTEM +ABC_248,Dinah Cockland,26/05/1989,98 Ryan Street,MOBILE +ABC_249,Aurelea Pittock,29/08/1994,53 Mariners Cove Street,WEB +ABC_250,Tana Rash,12/10/1986,81 Ramsey Circle,SYSTEM +ABC_251,Jammie Karpenya,6/10/1999,98018 Shopko Plaza,WEB +ABC_252,Clim Rashleigh,27/07/1999,68 Farwell Way,MOBILE +ABC_253,Lola Itzkovich,28/10/1989,49 Fuller Avenue,ADMIN +ABC_254,Aurie Mazin,18/08/1997,3143 Forest Dale Pass,MOBILE +ABC_255,Ingar Cooch,8/9/1997,738 Hudson Street,MOBILE +ABC_256,Conroy Condict,20/11/1988,5162 Ridgeview Trail,SYSTEM +ABC_257,Corny Jones,19/02/1987,865 Dexter Road,SYSTEM +ABC_258,Atlante Clougher,14/02/1989,6 Redwing Point,WEB +ABC_259,Betteann Malt,9/4/1986,12657 Kinsman Alley,QA +ABC_260,Christopher Hyndman,9/12/1990,58 Wayridge Trail,WEB +ABC_261,Alane Feakins,29/01/1983,58 Chinook Trail,WEB +ABC_262,Delphine Lancastle,13/02/1982,065 Melvin Trail,WEB +ABC_263,Valdemar Staves,14/05/1980,5 Fordem Center,WEB +ABC_264,Olympie Clacey,4/11/1987,081 Sunnyside Alley,MOBILE +ABC_265,Valencia Inker,29/11/1981,40 Johnson Place,QA +ABC_266,Cris Urwen,30/01/1983,96 Esch Crossing,ADMIN +ABC_267,Ulrike Kupec,22/10/1992,857 Kropf Point,MOBILE +ABC_268,Tabitha Attwater,10/4/1982,17 Crowley Parkway,WEB +ABC_269,Michelina Winsor,10/7/1992,96081 Loeprich Alley,ADMIN +ABC_270,Wash Kleinhaus,9/5/1987,523 School Alley,SYSTEM +ABC_271,Annetta Bachelor,11/11/1989,3205 7th Place,QA +ABC_272,Teddie Berard,23/09/1989,886 Forest Dale Terrace,MOBILE +ABC_273,Nicholle McLanaghan,3/4/1996,21 Butternut Way,SYSTEM +ABC_274,Bidget Forde,1/8/1984,63124 Melody Street,QA +ABC_275,Giraud Hapke,15/06/1991,1 Onsgard Crossing,WEB +ABC_276,Tremain Tonna,17/06/1991,9 Meadow Vale Plaza,MOBILE +ABC_277,Adela Andriuzzi,8/2/1987,3511 Graceland Alley,SYSTEM +ABC_278,Arden Elener,22/12/1985,018 Gulseth Crossing,WEB +ABC_279,Viki Purslow,9/7/1993,37 Almo Place,WEB +ABC_280,Camilla O'Dea,18/07/1996,6104 Stang Way,MOBILE +ABC_281,Rose Follett,10/10/1994,9 Forest Run Alley,ADMIN +ABC_282,Pavlov Evett,5/10/1982,27787 Lakewood Gardens Parkway,MOBILE +ABC_283,Aube Carlow,2/2/1988,0 Kensington Hill,ADMIN +ABC_284,Gates Willatt,17/05/1995,929 Comanche Lane,SYSTEM +ABC_285,Ossie Balsdone,24/02/1996,4 Bultman Center,WEB +ABC_286,Shannen Macari,21/10/1990,068 Russell Avenue,SYSTEM +ABC_287,Riobard Strowthers,11/1/1987,314 Oxford Parkway,SYSTEM +ABC_288,Kacy Infantino,16/07/1986,4391 Northwestern Pass,WEB +ABC_289,Orelle Behne,25/11/1998,963 Spaight Circle,SYSTEM +ABC_290,Edin Aseef,17/03/1985,5080 Acker Road,SYSTEM +ABC_291,Jackqueline Helmke,11/3/1998,6754 Lien Road,MOBILE +ABC_292,Shurwood Heasman,15/10/1981,799 Sunnyside Court,SYSTEM +ABC_293,Jeannie Coppo,6/1/1989,6642 Moulton Place,SYSTEM +ABC_294,Brant Syrett,14/06/1994,74 Scofield Lane,WEB +ABC_295,Carlee Gilkison,16/05/1986,01335 Macpherson Avenue,QA +ABC_296,Meriel Schowenburg,24/10/1993,8 Kenwood Parkway,SYSTEM +ABC_297,Klarrisa Simionato,11/12/1982,2414 Waywood Circle,SYSTEM +ABC_298,Inge Ginnally,25/04/1996,71327 Fairview Parkway,WEB +ABC_299,Jonell Harbard,2/10/1994,17 Lake View Point,WEB +ABC_300,Farrel Garrit,6/10/1994,2680 Warner Pass,WEB +ABC_301,Nikola Crutchley,17/05/1984,8 Cherokee Trail,QA +ABC_302,Lucina Hurren,6/11/1993,3 Duke Street,QA +ABC_303,Dulce Whifen,6/5/1999,96916 Jackson Terrace,ADMIN +ABC_304,Clementine Brandon,22/07/1983,0 Shopko Street,MOBILE +ABC_305,Florenza Stiell,30/08/1984,4 Schiller Lane,ADMIN +ABC_306,Aurelie Vaune,5/6/1995,4458 Del Mar Road,WEB +ABC_307,Baryram Merchant,22/11/1988,300 Summerview Drive,SYSTEM +ABC_308,Abeu Vallis,10/3/1989,14009 International Parkway,QA +ABC_309,Tobias Baynon,10/3/1988,671 Karstens Circle,SYSTEM +ABC_310,Vivienne Baszniak,29/07/1980,633 Columbus Road,SYSTEM +ABC_311,Myriam Kilbane,3/6/1992,03593 Derek Circle,ADMIN +ABC_312,Coop Clemendet,19/02/1988,37 Moland Trail,WEB +ABC_313,Ginnifer Harbert,17/04/1996,776 Meadow Valley Alley,QA +ABC_314,Alidia Terram,4/3/1992,9 Pine View Way,QA +ABC_315,Corinna Mewes,21/06/1989,78 Ridge Oak Alley,MOBILE +ABC_316,Tedmund Van der Daal,14/02/1994,22 Burning Wood Point,SYSTEM +ABC_317,Carlie Brompton,5/2/1991,98 Daystar Parkway,ADMIN +ABC_318,Roshelle Mathivet,13/12/1998,3118 Loftsgordon Pass,SYSTEM +ABC_319,Althea Spieght,20/04/1986,542 Kropf Junction,SYSTEM +ABC_320,Mattie Gadeaux,10/9/1995,0185 Park Meadow Junction,WEB +ABC_321,Vassily Garland,14/05/1983,23465 Summerview Road,ADMIN +ABC_322,Susann Hug,5/1/1983,30650 Packers Street,WEB +ABC_323,Margaux Kilfoyle,19/07/1994,1 Moland Terrace,MOBILE +ABC_324,Justinian Gillean,14/10/1999,92910 3rd Street,QA +ABC_325,Carey Sizland,14/11/1993,57627 Mariners Cove Drive,SYSTEM +ABC_326,Corrianne Clearie,28/09/1995,7 Bluejay Road,WEB +ABC_327,Sid Dowda,23/11/1986,73148 Mccormick Drive,QA +ABC_328,Terrie Milburne,3/5/1992,28035 Buhler Way,WEB +ABC_329,Meridel Craighill,23/06/1981,4590 Amoth Park,QA +ABC_330,Carolyne Mussettini,26/10/1982,8 Artisan Hill,WEB +ABC_331,Ricardo Pollard,11/1/1986,2887 Luster Hill,SYSTEM +ABC_332,Sergeant Dalbey,31/07/1998,557 Warbler Circle,SYSTEM +ABC_333,Coletta Dietz,7/8/1994,38 Pepper Wood Court,WEB +ABC_334,Amberly Capelow,23/11/1999,2 Hagan Parkway,SYSTEM +ABC_335,Korney Slader,28/01/1988,9460 Sunnyside Drive,WEB +ABC_336,Gerick O'Cosgra,20/04/1995,8005 Mitchell Park,WEB +ABC_337,Mendel De Moreno,13/04/1994,159 Badeau Junction,WEB +ABC_338,Joeann Eadon,18/04/1998,24 International Drive,WEB +ABC_339,Rooney Ochterlonie,15/12/1983,2 Magdeline Crossing,WEB +ABC_340,Jamie Woodall,30/03/1982,175 Artisan Street,QA +ABC_341,Aldus Foulkes,8/4/1990,523 Homewood Lane,WEB +ABC_342,Prince Macias,21/11/1986,60 Sauthoff Street,QA +ABC_343,Leticia Quest,22/03/1995,62301 Hansons Trail,QA +ABC_344,Curran Pipworth,22/05/1981,603 American Junction,MOBILE +ABC_345,Teador Brazer,12/9/1995,66 Corscot Pass,QA +ABC_346,Angel Dunbobin,1/11/1986,169 Rowland Lane,MOBILE +ABC_347,Berny Fessler,22/05/1987,3883 Hoepker Drive,QA +ABC_348,Maye Iiannoni,26/04/1993,6 Main Junction,SYSTEM +ABC_349,Killian Sciacovelli,11/10/1983,20 Burning Wood Center,MOBILE +ABC_350,Andie Dowd,3/4/1998,34 Burning Wood Crossing,WEB +ABC_351,Ida Eastam,2/2/1992,5 Forest Hill,WEB +ABC_352,Carlynne Rivard,25/02/1995,8 Delaware Plaza,MOBILE +ABC_353,Pollyanna Coleborn,7/10/1995,153 Dottie Alley,WEB +ABC_354,Maxim Clow,8/8/1998,1314 Mcbride Terrace,MOBILE +ABC_355,Katrine Sedcole,11/2/1984,448 Manley Drive,QA +ABC_356,Clemmy Pegler,23/11/1980,7 Pankratz Crossing,MOBILE +ABC_357,Mirelle de Zamora,13/09/1984,36082 Eliot Way,SYSTEM +ABC_358,Dode Croan,8/5/1982,97129 Esker Park,WEB +ABC_359,Dorene Lemmen,27/06/1988,91327 Iowa Alley,MOBILE +ABC_360,Inness Comford,28/08/1991,5 Morning Street,MOBILE +ABC_361,Lind Pickavant,26/06/1982,07748 Fairfield Street,WEB +ABC_362,Glen Sutherden,9/8/1999,77 Nelson Alley,ADMIN +ABC_363,Melonie Eykelbosch,16/09/1983,693 Cherokee Drive,ADMIN +ABC_364,Harriet Eltringham,26/06/1987,954 David Lane,WEB +ABC_365,Craggie Yablsley,4/6/1993,74 Dennis Terrace,WEB +ABC_366,Cletus Deport,22/04/1994,59 Eastlawn Park,QA +ABC_367,Noni Bagniuk,25/08/1986,5 Riverside Road,QA +ABC_368,Chico Christou,9/8/1986,1 Manufacturers Junction,ADMIN +ABC_369,Catharina Tremlett,21/11/1999,96 Scofield Center,SYSTEM +ABC_370,Violetta Bernhard,11/10/1983,29794 Algoma Street,WEB +ABC_371,Brit Matiebe,2/2/1981,24858 Burrows Circle,MOBILE +ABC_372,Goddard Annon,26/05/1988,1856 Coolidge Avenue,WEB +ABC_373,Hermione Coles,21/08/1997,557 Graceland Avenue,QA +ABC_374,Karna Croy,1/2/1997,8155 Anthes Street,WEB +ABC_375,Valentina Mozzini,23/12/1995,852 Chinook Street,WEB +ABC_376,Eileen Dutnell,3/11/1985,85956 Kinsman Point,WEB +ABC_377,Jenny Martinot,3/6/1983,55459 Londonderry Street,WEB +ABC_378,Danella Stenbridge,12/4/1992,56 Crest Line Point,SYSTEM +ABC_379,Delinda Harriagn,22/11/1988,41020 Bobwhite Junction,WEB +ABC_380,Bealle Otter,25/08/1980,39 Waywood Way,MOBILE +ABC_381,Matthieu Beiderbeck,3/9/1980,2519 Tony Drive,WEB +ABC_382,Janean Slaten,16/11/1998,059 Northridge Trail,ADMIN +ABC_383,Fidela Spain-Gower,30/10/1997,45979 Old Gate Crossing,SYSTEM +ABC_384,Candace Gubbins,22/11/1984,833 Onsgard Trail,SYSTEM +ABC_385,Marcela Renfrew,9/1/1991,6 Miller Hill,MOBILE +ABC_386,Brooke Crinkley,11/1/1991,37 Division Terrace,SYSTEM +ABC_387,Paco Crunden,21/02/1992,1 Logan Road,MOBILE +ABC_388,Rosemarie Colquite,10/10/1995,1 Glacier Hill Avenue,WEB +ABC_389,Betteanne Pigne,2/11/1986,95642 Hayes Street,WEB +ABC_390,Toinette Sandeman,10/6/1989,1910 Spenser Plaza,WEB +ABC_391,Gan Furmage,29/04/1982,01 Knutson Alley,MOBILE +ABC_392,Symon Toft,27/08/1993,11 Forest Run Alley,QA +ABC_393,Ulises Stack,14/11/1982,6 Moulton Circle,WEB +ABC_394,Carlynne Tart,5/12/1981,48376 Dwight Crossing,SYSTEM +ABC_395,Ashli Muggeridge,10/10/1980,533 Glendale Way,WEB +ABC_396,Lauryn Appleton,26/11/1989,34 Pine View Center,MOBILE +ABC_397,Chelsea Lilleman,30/08/1989,579 Holmberg Alley,MOBILE +ABC_398,Ora Daniely,12/10/1982,3 Canary Circle,WEB +ABC_399,Jerrold Goundrill,31/01/1982,348 Northfield Crossing,MOBILE +ABC_400,Hannie Zannetti,5/12/1988,84136 Arrowood Road,MOBILE +ABC_401,Lief Eberlein,22/07/1991,36748 Oxford Crossing,SYSTEM +ABC_402,Ania Smeal,6/9/1988,7376 Bartelt Court,SYSTEM +ABC_403,Redford Whipple,1/12/1988,854 La Follette Place,WEB +ABC_404,Sayres Towey,19/01/1985,90138 Vahlen Center,SYSTEM +ABC_405,Nial Bjerkan,1/9/1999,3 Chive Center,MOBILE +ABC_406,Blancha Eckley,31/12/1994,264 Bobwhite Point,MOBILE +ABC_407,Filberto Goulborn,22/05/1988,27 Continental Place,QA +ABC_408,Magdalene Dawdry,5/2/1994,51321 Susan Alley,WEB +ABC_409,Torre Murphy,13/10/1984,9 8th Place,SYSTEM +ABC_410,Lawton Ubank,29/12/1995,9362 Ridgeway Alley,QA +ABC_411,Olav Clay,10/8/1989,78 Cardinal Trail,WEB +ABC_412,Sigrid Waterstone,1/11/1995,1 Chive Avenue,QA +ABC_413,Rupert Curragh,31/08/1990,810 Graceland Center,WEB +ABC_414,Phaedra McGurgan,15/12/1992,86536 Mesta Center,SYSTEM +ABC_415,Imelda Davidow,28/11/1997,001 Judy Street,ADMIN +ABC_416,Ddene Stores,3/9/1981,185 Commercial Hill,ADMIN +ABC_417,Karalee McRitchie,14/02/1986,797 Starling Parkway,QA +ABC_418,Tucker Sarle,27/03/1981,9 Holmberg Drive,SYSTEM +ABC_419,Danell Hawkwood,30/06/1981,2 Anderson Plaza,QA +ABC_420,Misti Coldbathe,27/04/1997,7 Weeping Birch Trail,ADMIN +ABC_421,Robinia Barnsdall,17/11/1988,01987 Scott Parkway,MOBILE +ABC_422,Gussi Hampson,9/10/1983,267 Milwaukee Street,SYSTEM +ABC_423,Dasha Elph,10/12/1995,9934 Waywood Drive,ADMIN +ABC_424,Vernice Beushaw,4/9/1992,0 Independence Avenue,ADMIN +ABC_425,Keefer Christofol,3/4/1991,43416 Lerdahl Way,WEB +ABC_426,Eleanora Jehu,18/11/1980,6 Northridge Plaza,MOBILE +ABC_427,Corbet Sline,6/2/1987,640 Rieder Road,WEB +ABC_428,Lenard Tunnick,2/11/1988,7616 Harper Crossing,SYSTEM +ABC_429,Ingar Sealey,6/7/1983,872 Hazelcrest Avenue,QA +ABC_430,Jillene Plewright,6/9/1981,13 Anthes Place,QA +ABC_431,Neddie Merit,14/07/1997,733 Blue Bill Park Park,QA +ABC_432,Jayme Lowman,6/12/1986,149 Gateway Plaza,SYSTEM +ABC_433,Rooney Lacheze,28/03/1982,2970 Shasta Alley,ADMIN +ABC_434,Mae Capini,23/03/1999,15713 Division Hill,QA +ABC_435,Daniele Gowland,10/9/1988,494 Dapin Way,MOBILE +ABC_436,Murvyn Haseley,19/09/1987,00562 Russell Street,SYSTEM +ABC_437,Barry Adelsberg,17/08/1999,07 Summer Ridge Pass,WEB +ABC_438,Michelina Niccolls,8/5/1989,52 Warner Terrace,ADMIN +ABC_439,Rozanna Stennett,23/10/1984,20 Lakeland Street,SYSTEM +ABC_440,Francklin Rymour,6/1/1984,90 Elgar Terrace,WEB +ABC_441,Carlynne Tebbs,17/12/1990,5 Reinke Avenue,ADMIN +ABC_442,Sebastien O'Donoghue,7/4/1986,18398 Reindahl Junction,ADMIN +ABC_443,Monah Hollingby,14/11/1998,2489 Schiller Center,ADMIN +ABC_444,Helga Simmon,7/12/1985,8876 Burning Wood Terrace,MOBILE +ABC_445,Kerr Labden,20/03/1988,6250 Center Point,MOBILE +ABC_446,Jedd Boykett,19/11/1986,089 Stoughton Terrace,ADMIN +ABC_447,Demetris Patton,17/05/1999,8753 Hoepker Trail,QA +ABC_448,Gabriello Ick,29/12/1985,69702 Sutteridge Crossing,WEB +ABC_449,Alethea Burbage,29/07/1992,4813 Fulton Junction,WEB +ABC_450,Cristian MacAlister,15/02/1994,8268 Cordelia Junction,MOBILE +ABC_451,Karee Blagburn,13/07/1994,69 Loeprich Avenue,WEB +ABC_452,Birch Sizzey,22/02/1985,05914 Warrior Trail,WEB +ABC_453,Erwin Silcox,14/05/1998,1398 Vernon Point,QA +ABC_454,Antonin Lundberg,5/1/1983,26 Loomis Pass,QA +ABC_455,Rodi Jays,4/3/1980,7680 2nd Drive,MOBILE +ABC_456,Agretha Savory,17/02/1993,13 Linden Junction,QA +ABC_457,Lilas Binton,15/08/1999,15 Morningstar Lane,WEB +ABC_458,Chrisy Prevost,5/5/1993,84 Autumn Leaf Place,WEB +ABC_459,Jennica Gilogly,30/12/1995,6674 Mesta Court,MOBILE +ABC_460,Tades Pibsworth,7/3/1988,594 Maywood Crossing,QA +ABC_461,Bobbette Fantone,27/06/1986,44 Shopko Alley,WEB +ABC_462,Marice Harmson,14/05/1996,920 Muir Plaza,WEB +ABC_463,Karen Omrod,20/07/1980,9 Old Shore Drive,SYSTEM +ABC_464,Rafaela Rubes,15/11/1986,3821 Messerschmidt Junction,SYSTEM +ABC_465,Federica Duffyn,4/9/1996,25 Laurel Trail,MOBILE +ABC_466,Tades Novis,27/12/1984,5327 Luster Plaza,MOBILE +ABC_467,Tanney Aldam,31/01/1993,05021 Reindahl Park,MOBILE +ABC_468,Gareth Desquesnes,24/01/1986,10070 Melby Park,WEB +ABC_469,Marcelline McGrill,25/11/1980,67263 Sommers Court,SYSTEM +ABC_470,Elmore Ridout,7/9/1991,15 Northridge Way,WEB +ABC_471,Erich Riepel,22/03/1980,8 Gale Crossing,MOBILE +ABC_472,Ardyce O'Doherty,26/11/1993,63 Village Green Court,ADMIN +ABC_473,Roger Whitby,11/8/1998,6 Almo Trail,SYSTEM +ABC_474,Lotta Cannon,24/06/1993,5 North Junction,WEB +ABC_475,Jdavie De Vere,1/4/1988,984 Buhler Point,ADMIN +ABC_476,Olly Rugiero,11/2/1996,7461 Brickson Park Plaza,ADMIN +ABC_477,Ardella Kubelka,31/07/1982,1480 Heath Pass,WEB +ABC_478,Haleigh Devil,12/9/1987,0657 Eastlawn Hill,QA +ABC_479,Germana Baudrey,19/11/1981,027 Clove Circle,WEB +ABC_480,Marigold Klaas,19/05/1992,6823 Glacier Hill Place,WEB +ABC_481,Judith Sedgeman,22/04/1998,84757 Brentwood Plaza,QA +ABC_482,Talbot Lundie,28/07/1993,6710 Amoth Street,MOBILE +ABC_483,Suzette Balfour,14/08/1987,2458 Express Court,QA +ABC_484,Ernie Attryde,7/7/1983,8 Heffernan Parkway,SYSTEM +ABC_485,Jerrine Fearick,12/11/1998,90 Schlimgen Drive,WEB +ABC_486,Farlay Reilly,16/11/1997,41031 Hintze Plaza,ADMIN +ABC_487,Benjamin Yakebovitch,22/12/1989,438 Corscot Road,MOBILE +ABC_488,Alanna Burnand,20/02/1980,421 Clyde Gallagher Junction,ADMIN +ABC_489,Nixie Pedlar,14/12/1993,47 Birchwood Junction,SYSTEM +ABC_490,Grover Spatari,20/11/1988,913 Knutson Hill,MOBILE +ABC_491,Bartie Pelosi,30/06/1980,718 Dapin Place,SYSTEM +ABC_492,Micky Murricanes,16/02/1989,664 Cardinal Circle,MOBILE +ABC_493,Imojean Bisley,22/07/1995,73 Graedel Circle,MOBILE +ABC_494,Kari Verry,20/01/1985,991 Center Street,WEB +ABC_495,Alta Morfett,23/02/1981,2 Prairieview Pass,WEB +ABC_496,Talyah Bragg,16/04/1998,833 Bunker Hill Parkway,ADMIN +ABC_497,Maridel Allnatt,3/3/1993,5419 Hoard Park,SYSTEM +ABC_498,Konstanze Dicken,29/11/1994,788 Gulseth Street,WEB +ABC_499,Lyssa Poxon,14/11/1998,19 Kim Pass,WEB +ABC_500,Berkie Beynkn,25/12/1985,69 Springs Plaza,SYSTEM +ABC_501,Cesaro Busse,25/04/1983,905 Chive Trail,WEB +ABC_502,Blondell Tyce,30/09/1990,98246 Buena Vista Crossing,MOBILE +ABC_503,North Morrieson,7/4/1981,726 Heffernan Street,WEB +ABC_504,Tove Courtman,28/05/1995,52571 Fulton Park,ADMIN +ABC_505,Rhianon Tomney,7/11/1983,86 Petterle Terrace,SYSTEM +ABC_506,Row Chaney,28/04/1983,9 Express Hill,QA +ABC_507,Garvy Varnam,29/08/1988,17 Norway Maple Place,WEB +ABC_508,Alfonso Joynson,11/5/1980,85 West Alley,ADMIN +ABC_509,Hakim Peter,26/07/1991,96 Merry Point,QA +ABC_510,Felike Craydon,8/7/1987,6573 Mccormick Street,MOBILE +ABC_511,Arabella Winslade,30/05/1996,4481 Waubesa Drive,MOBILE +ABC_512,Kristos Hargess,26/04/1981,3 Mallory Hill,SYSTEM +ABC_513,Sigismond Cafe,23/11/1992,75406 Tennessee Road,WEB +ABC_514,Lewie Millbank,5/9/1991,2034 Florence Road,MOBILE +ABC_515,Dani Haet,11/5/1988,43 Buhler Circle,WEB +ABC_516,Normand Squelch,14/12/1996,78 Parkside Parkway,MOBILE +ABC_517,Gilberto Bettinson,11/11/1989,51497 Tennessee Lane,WEB +ABC_518,Waring Pineaux,16/01/1994,964 Florence Parkway,ADMIN +ABC_519,Jennee McCready,24/01/1986,1406 Parkside Terrace,QA +ABC_520,Franciskus Hapgood,8/2/1988,0 Starling Parkway,MOBILE +ABC_521,Emilie Ruprecht,14/12/1983,6984 Canary Lane,ADMIN +ABC_522,Kerby Poynter,28/04/1980,10234 Troy Terrace,SYSTEM +ABC_523,Natka Yurevich,5/7/1994,4 Chive Center,QA +ABC_524,Miner Eustis,19/08/1994,5 Springview Avenue,WEB +ABC_525,Sacha Aiskovitch,26/10/1983,9808 4th Junction,QA +ABC_526,Bealle Stait,25/07/1992,7010 Summit Hill,MOBILE +ABC_527,Virgil Denyer,11/6/1994,94 Graceland Street,WEB +ABC_528,Orland Beals,31/05/1996,9 Barnett Crossing,SYSTEM +ABC_529,Ken Mesnard,7/12/1998,58317 Nevada Plaza,SYSTEM +ABC_530,Justine Pringour,3/4/1989,8 Sycamore Way,WEB +ABC_531,Whit Carette,30/05/1990,8961 Carioca Park,WEB +ABC_532,Pierson Redmond,5/10/1995,0452 Bartillon Park,SYSTEM +ABC_533,Rebbecca Mohring,1/2/1985,303 Cordelia Circle,QA +ABC_534,Colleen Harrald,21/06/1981,79828 Blackbird Lane,ADMIN +ABC_535,Thatcher Daunter,23/05/1993,8163 Independence Plaza,MOBILE +ABC_536,Kimberlee Letford,15/03/1983,48 1st Way,WEB +ABC_537,Holt Eskrigg,28/03/1989,14364 Orin Lane,WEB +ABC_538,Grier LeEstut,30/10/1993,582 Mifflin Circle,SYSTEM +ABC_539,Meagan Manz,11/4/1990,47 Arkansas Street,ADMIN +ABC_540,Athene Batiste,6/2/1983,0 Melby Drive,SYSTEM +ABC_541,Jeannette Jest,31/03/1980,81 Shoshone Parkway,MOBILE +ABC_542,Moreen Paulou,27/06/1986,751 Brickson Park Pass,SYSTEM +ABC_543,Tiebold Benitti,5/4/1998,4876 Autumn Leaf Park,MOBILE +ABC_544,Claudetta Kennion,7/4/1988,818 Butternut Way,MOBILE +ABC_545,Genna Babonau,25/04/1980,84655 Oneill Point,SYSTEM +ABC_546,Theo Gavagan,17/09/1986,055 Glacier Hill Drive,SYSTEM +ABC_547,Clovis Saffell,8/9/1995,1272 Shopko Crossing,WEB +ABC_548,Sandie Aymeric,10/1/1983,0821 Briar Crest Alley,WEB +ABC_549,Daniella Cutridge,19/04/1982,32 Village Terrace,SYSTEM +ABC_550,Verge Infantino,9/8/1987,9635 Becker Pass,MOBILE +ABC_551,Mick O'Dee,8/4/1985,43322 Manitowish Street,MOBILE +ABC_552,Chic Noore,14/09/1991,378 Forest Run Pass,QA +ABC_553,Burton Gerretsen,29/01/1993,76266 Oakridge Pass,SYSTEM +ABC_554,Keene Pethick,15/11/1985,2 Sutherland Pass,MOBILE +ABC_555,Jakie Dragonette,23/08/1990,314 Huxley Court,WEB +ABC_556,Alexio Swalowe,19/06/1985,63 Buena Vista Alley,MOBILE +ABC_557,Dav Radcliffe,15/08/1985,172 Columbus Court,MOBILE +ABC_558,Amalee Lisamore,13/11/1985,6 Shoshone Drive,MOBILE +ABC_559,Alameda Mees,11/11/1980,41084 Bowman Pass,ADMIN +ABC_560,Adolph Albrighton,27/03/1996,589 Jana Alley,QA +ABC_561,Packston Dubique,24/04/1992,24 Bartillon Drive,SYSTEM +ABC_562,Scarlet Rewan,12/4/1987,9515 Waywood Street,SYSTEM +ABC_563,Mel Follows,13/09/1985,7 Muir Lane,MOBILE +ABC_564,Eachelle Ghioni,24/07/1997,7 Reindahl Junction,MOBILE +ABC_565,Hoyt Twinterman,25/01/1998,075 Brickson Park Way,SYSTEM +ABC_566,Danie Tanguy,14/10/1985,13841 Spenser Terrace,QA +ABC_567,Bing Castenda,12/9/1984,66 Karstens Parkway,QA +ABC_568,Gardener Heineking,20/03/1990,437 Westport Park,MOBILE +ABC_569,Elsy Paten,30/03/1995,40067 Linden Pass,ADMIN +ABC_570,Mariele Geertz,19/10/1980,568 Michigan Place,ADMIN +ABC_571,Jordana Litton,2/7/1980,4575 Badeau Way,WEB +ABC_572,Ina Nowaczyk,27/04/1985,8 Bellgrove Alley,QA +ABC_573,Bing Yurivtsev,28/11/1984,251 Bunting Crossing,MOBILE +ABC_574,Silvio MacCarter,6/9/1993,9769 Grim Trail,QA +ABC_575,Virgilio Skowcraft,6/10/1989,88 Wayridge Road,MOBILE +ABC_576,Leticia Bisgrove,12/1/1986,35 Grim Drive,QA +ABC_577,Beckie Shervil,8/8/1996,2 Bay Center,MOBILE +ABC_578,Jerri Golding,19/07/1983,3551 Forest Run Hill,SYSTEM +ABC_579,Eryn Kennsley,24/09/1995,17527 Stoughton Alley,QA +ABC_580,Erika Schachter,15/07/1996,7481 Holy Cross Road,WEB +ABC_581,Farra Bendare,25/01/1991,18 Arrowood Plaza,WEB +ABC_582,Carney MacMeeking,6/8/1992,39036 Village Way,MOBILE +ABC_583,Harri Coughlan,11/1/1998,3 Coleman Hill,QA +ABC_584,Efren Ximenez,11/1/1987,9160 Little Fleur Plaza,QA +ABC_585,Christian Hedworth,11/1/1987,8579 Raven Junction,MOBILE +ABC_586,Loella Ping,24/11/1980,028 Hoepker Street,SYSTEM +ABC_587,Nydia Zannolli,31/01/1996,03004 Washington Point,QA +ABC_588,Gipsy Henri,8/5/1992,311 Bobwhite Court,QA +ABC_589,Shawnee Freathy,20/10/1982,48 Chinook Lane,QA +ABC_590,Damita Markussen,1/5/1984,50451 Spaight Place,SYSTEM +ABC_591,Maribel Spalls,6/6/1985,6564 7th Crossing,WEB +ABC_592,Albertine Rosoni,5/11/1985,434 Jackson Pass,MOBILE +ABC_593,Rancell McCreery,9/6/1983,268 Merrick Center,WEB +ABC_594,Giles Cubitt,7/5/1986,19195 Independence Avenue,MOBILE +ABC_595,Jule Goatman,13/05/1983,22 Mifflin Lane,WEB +ABC_596,Saudra Birdsall,8/10/1982,7 Doe Crossing Plaza,QA +ABC_597,Lotte Gresser,21/08/1989,24174 Browning Junction,SYSTEM +ABC_598,Glen Quenell,7/11/1983,82 Victoria Pass,SYSTEM +ABC_599,Shepard Langhorn,30/01/1992,385 7th Park,WEB +ABC_600,Jamill Prosser,29/08/1998,10510 Ruskin Trail,MOBILE +ABC_601,Errol Bovingdon,7/1/1983,06 Ilene Circle,ADMIN +ABC_602,Fernanda Fairholme,2/5/1991,9709 Mallard Plaza,SYSTEM +ABC_603,Bartolomeo D'Adamo,3/12/1984,917 La Follette Junction,MOBILE +ABC_604,Iona Ludovici,3/5/1987,1 Lake View Junction,MOBILE +ABC_605,Chlo Lovelace,13/09/1984,39874 Hollow Ridge Trail,ADMIN +ABC_606,Mariquilla Tavener,4/6/1992,63 Kings Place,ADMIN +ABC_607,Ursuline Doull,30/07/1986,7 Armistice Hill,WEB +ABC_608,Barbey O'Brallaghan,1/5/1985,26 Pond Crossing,ADMIN +ABC_609,Ola Sheere,19/01/1998,9678 Towne Court,WEB +ABC_610,Dareen Rattrie,18/02/1990,55307 Kedzie Point,MOBILE +ABC_611,Randolf Jimson,3/10/1980,4 Commercial Lane,MOBILE +ABC_612,Fidela Greger,13/06/1996,538 Longview Avenue,SYSTEM +ABC_613,Eugenie Hrinchenko,19/06/1981,1 Morrow Crossing,WEB +ABC_614,Olly Hickisson,20/01/1991,450 Village Parkway,MOBILE +ABC_615,Daryl Boar,26/10/1980,7555 Debs Way,WEB +ABC_616,Franklyn Shovelton,4/7/1983,35964 Mitchell Place,ADMIN +ABC_617,Whitby Samwaye,28/06/1989,207 Moose Lane,WEB +ABC_618,Randy Gueny,19/08/1994,2 Elgar Center,WEB +ABC_619,Stanislaw Moyers,24/05/1983,97743 Lakewood Gardens Junction,SYSTEM +ABC_620,Bethany Bache,19/04/1982,54 Buhler Point,WEB +ABC_621,Ailis Piche,28/02/1991,7 Moulton Lane,WEB +ABC_622,Fedora Whybray,8/1/1996,8 Oxford Place,ADMIN +ABC_623,Jaquenetta Sandal,26/07/1980,88295 Elmside Pass,MOBILE +ABC_624,Sadie Mylechreest,14/11/1985,65155 Tennessee Crossing,WEB +ABC_625,Tara Greer,24/06/1991,83 Vahlen Avenue,WEB +ABC_626,Lilah Curnok,14/09/1994,3 Welch Street,QA +ABC_627,Eben Birkby,26/05/1991,5 Mariners Cove Pass,MOBILE +ABC_628,Colby McCaffrey,6/8/1998,44047 Oak Alley,ADMIN +ABC_629,Raine McTrustey,5/3/1981,90826 Cherokee Hill,QA +ABC_630,Dalli Heisler,11/10/1981,317 Del Mar Place,QA +ABC_631,Juliane Tucsell,21/06/1998,7 Reindahl Park,SYSTEM +ABC_632,Nicolai Badger,27/10/1990,73 Merrick Road,MOBILE +ABC_633,Case Harrisson,12/4/1991,55790 Killdeer Terrace,WEB +ABC_634,Sibylle Peerless,21/09/1990,6 Rusk Drive,ADMIN +ABC_635,Fredrika Simione,7/3/1988,908 Little Fleur Avenue,WEB +ABC_636,Maximilian Ackrill,27/10/1987,55858 Sullivan Parkway,MOBILE +ABC_637,Humbert Heyns,15/05/1999,5 Ryan Alley,MOBILE +ABC_638,Ferdinand Waddell,24/02/1989,548 Logan Park,ADMIN +ABC_639,Deloria Yeliashev,6/6/1996,44196 Green Parkway,ADMIN +ABC_640,Cissiee Lias,17/05/1983,435 Aberg Pass,MOBILE +ABC_641,Ricard Mandrake,14/07/1992,60507 Continental Circle,MOBILE +ABC_642,Esra Antusch,10/4/1994,01296 Lakeland Center,WEB +ABC_643,Coleman Guppy,30/12/1986,54 Bluestem Circle,QA +ABC_644,Gorden Tebbut,28/04/1997,54709 Blackbird Lane,QA +ABC_645,Jolynn Tailby,8/5/1997,57 Namekagon Point,WEB +ABC_646,Lona Soden,26/08/1988,7931 Spohn Terrace,WEB +ABC_647,De Rudeyeard,18/07/1995,666 Morningstar Terrace,SYSTEM +ABC_648,Eimile Kindread,9/9/1993,72908 Main Street,WEB +ABC_649,Minette Marsie,28/05/1987,131 Northport Avenue,WEB +ABC_650,Robinson Belt,30/11/1991,0 Debs Avenue,QA +ABC_651,Maison O'Finan,7/3/1990,01689 Hallows Pass,ADMIN +ABC_652,Borg Meuse,2/8/1993,40 International Alley,SYSTEM +ABC_653,Seka Colborn,14/06/1983,1 Anderson Crossing,WEB +ABC_654,Alicia Penhalurick,1/2/1984,4 New Castle Lane,ADMIN +ABC_655,Raine Couser,22/07/1992,489 Thompson Way,ADMIN +ABC_656,Coretta Glencorse,30/09/1992,58 Claremont Road,ADMIN +ABC_657,Kaila Roderighi,29/01/1999,9745 Lien Terrace,SYSTEM +ABC_658,Dari Diddams,4/9/1998,1 Ridgeview Road,WEB +ABC_659,Ethelred Carrabott,30/07/1982,26 Talmadge Way,ADMIN +ABC_660,Newton Isacsson,26/07/1982,98 Vahlen Place,WEB +ABC_661,Dwayne Garside,31/07/1987,85 Reindahl Alley,QA +ABC_662,Pier Petkens,20/08/1996,968 Melvin Place,WEB +ABC_663,Dacy Walker,7/7/1994,2265 Harper Pass,WEB +ABC_664,Timmie Shotboult,6/5/1995,28183 Barby Plaza,MOBILE +ABC_665,Winnifred Onraet,3/2/1988,282 Maple Road,MOBILE +ABC_666,Dunc Heimes,16/10/1992,30380 Mallory Way,QA +ABC_667,Sandra Till,3/5/1981,35112 Buell Lane,QA +ABC_668,Olga Chattaway,21/05/1994,8527 Mandrake Lane,QA +ABC_669,Oralle Hatwells,11/8/1980,36 Toban Avenue,SYSTEM +ABC_670,Blayne Ovett,3/12/1991,2 Upham Point,ADMIN +ABC_671,Dinah Kissell,14/12/1985,1 Darwin Center,MOBILE +ABC_672,Theresita Mico,17/11/1998,09 Glendale Parkway,MOBILE +ABC_673,Catherine Hebbs,21/05/1988,490 Old Shore Junction,QA +ABC_674,Drusy Micheau,6/6/1996,5450 Ohio Court,QA +ABC_675,Garnet Harlock,28/04/1980,1177 Service Alley,WEB +ABC_676,Sandor Opdenort,8/2/1983,5194 Colorado Trail,WEB +ABC_677,Angelico Galiero,20/09/1995,23108 Brown Street,MOBILE +ABC_678,Welsh Carlisi,25/11/1982,48200 Pepper Wood Alley,MOBILE +ABC_679,Trescha Billyard,16/12/1982,90 Bay Drive,ADMIN +ABC_680,Ivar Meneur,3/5/1993,3 Menomonie Way,WEB +ABC_681,Irene Heinke,14/01/1998,776 Fairview Point,SYSTEM +ABC_682,Derk Dorro,4/12/1988,363 Valley Edge Street,SYSTEM +ABC_683,Jessamine Boorn,22/10/1987,5088 Hintze Junction,QA +ABC_684,Cal Loseke,30/12/1988,71 Tennessee Place,MOBILE +ABC_685,Gwenny Leebetter,19/09/1981,9 Towne Park,WEB +ABC_686,Simonne Winspeare,2/10/1983,80 Scott Alley,MOBILE +ABC_687,Nelly Minter,23/10/1984,406 Loeprich Lane,WEB +ABC_688,Pris Bellhanger,2/10/1980,8148 Michigan Street,WEB +ABC_689,Tammi Mellanby,23/06/1980,6 Hintze Alley,WEB +ABC_690,Lydon Melladew,29/07/1990,81211 Grover Pass,WEB +ABC_691,Lucais Campbell-Dunlop,14/08/1995,0957 Welch Junction,MOBILE +ABC_692,Perle MacNish,19/01/1992,44147 Harbort Lane,SYSTEM +ABC_693,Alphonse Willgrass,8/9/1980,2891 Farmco Way,MOBILE +ABC_694,Revkah Pinner,9/8/1985,0 Farragut Center,QA +ABC_695,Tris Bortolomei,2/11/1991,01256 Troy Hill,WEB +ABC_696,Phip Coronas,20/08/1995,55992 Mcbride Trail,MOBILE +ABC_697,Elberta Friese,16/08/1991,82432 Park Meadow Terrace,QA +ABC_698,Tisha Carver,5/3/1980,60 Schiller Place,SYSTEM +ABC_699,Nadeen Whyteman,20/03/1981,55437 Kim Trail,SYSTEM +ABC_700,Dacia Dominici,3/12/1992,06 Badeau Junction,SYSTEM +ABC_701,Rancell Mewburn,18/06/1982,190 Lerdahl Street,SYSTEM +ABC_702,Maxi Otton,1/4/1991,1 Warner Avenue,QA +ABC_703,Aristotle Nabbs,9/5/1991,286 5th Junction,MOBILE +ABC_704,Elsbeth Schoales,8/2/1986,088 Manley Road,QA +ABC_705,Berri Brewins,25/03/1994,88 Shopko Hill,QA +ABC_706,Reggie Howie,25/06/1996,7335 Northwestern Junction,WEB +ABC_707,Alberik Stangroom,22/01/1982,13 Eagan Street,WEB +ABC_708,Gerrilee O'Halloran,7/9/1983,029 Magdeline Crossing,QA +ABC_709,Yves Foxon,23/05/1995,45 Fulton Avenue,MOBILE +ABC_710,Clementia Yukhnin,17/03/1993,6733 Victoria Pass,QA +ABC_711,Trent Minshull,9/3/1994,87 Morning Point,MOBILE +ABC_712,Obadiah O'Fallone,25/02/1984,35 Service Drive,WEB +ABC_713,Sarita Neissen,23/11/1991,48 Stuart Avenue,MOBILE +ABC_714,Rosie Plews,2/2/1990,0411 Waubesa Way,SYSTEM +ABC_715,Cammy Glanville,6/1/1997,0605 Hayes Pass,WEB +ABC_716,Maxy Bartleman,19/10/1993,1557 1st Court,WEB +ABC_717,Radcliffe Heisham,29/06/1982,9 Fisk Hill,MOBILE +ABC_718,Ritchie De Cristoforo,29/09/1999,3 Derek Place,QA +ABC_719,Conway Lightbowne,18/01/1984,2 Green Ridge Drive,ADMIN +ABC_720,Giraud Casini,11/8/1981,07503 Melby Crossing,QA +ABC_721,Jeth Winson,6/10/1997,4 Truax Terrace,MOBILE +ABC_722,Row Howels,1/12/1995,48860 Scoville Point,WEB +ABC_723,Heinrick Palser,17/09/1999,37570 Swallow Trail,WEB +ABC_724,Dennie Kosiada,1/7/1982,6655 Chive Circle,SYSTEM +ABC_725,Tabbie Edworthie,17/06/1988,40 International Crossing,WEB +ABC_726,Garrick Ridesdale,13/02/1993,610 Stone Corner Lane,WEB +ABC_727,Ethelred Alpine,25/03/1981,28 Brentwood Circle,ADMIN +ABC_728,Curt Bezemer,18/10/1986,70733 American Ash Point,SYSTEM +ABC_729,Henderson Hornung,22/07/1990,86022 Vermont Way,QA +ABC_730,Bobby Fishwick,27/05/1993,569 Jenifer Pass,SYSTEM +ABC_731,Jefferey Dorow,29/01/1991,3905 Jenifer Alley,MOBILE +ABC_732,Gerome O'Doherty,27/12/1990,34 Southridge Lane,SYSTEM +ABC_733,Sayer Baud,22/09/1986,77 Nova Pass,SYSTEM +ABC_734,Paco Handsheart,23/01/1982,205 Fieldstone Trail,SYSTEM +ABC_735,Abbe Wigginton,22/10/1988,6 Sachtjen Park,ADMIN +ABC_736,Paule Denyukhin,17/09/1985,1513 Drewry Road,MOBILE +ABC_737,Cynthea Barette,11/5/1998,4 Elgar Road,ADMIN +ABC_738,Renelle Moulton,10/2/1985,5722 Talmadge Parkway,SYSTEM +ABC_739,Cacilia Whilder,15/07/1999,710 Farragut Street,SYSTEM +ABC_740,Farra Sparey,23/06/1994,9 Bowman Hill,WEB +ABC_741,Austin Treagus,10/10/1996,37 Bay Drive,WEB +ABC_742,Sheff Van Cassel,23/08/1998,6623 Waubesa Court,QA +ABC_743,Tatum Creasey,7/8/1998,66 West Place,QA +ABC_744,Zita Stenner,22/06/1980,4950 Dwight Avenue,WEB +ABC_745,Sheree Durno,26/05/1993,9408 Starling Court,MOBILE +ABC_746,Francesco Upson,18/11/1996,09 Mcbride Hill,WEB +ABC_747,Ruthann Barbera,27/06/1982,1151 Eggendart Road,SYSTEM +ABC_748,Laurena Renforth,2/8/1998,3667 Prentice Alley,WEB +ABC_749,Rosy Jakov,24/09/1989,63971 Eggendart Plaza,QA +ABC_750,Dina Vann,21/11/1987,08 Carpenter Avenue,WEB +ABC_751,Lars Karpol,21/02/1982,8 Paget Trail,SYSTEM +ABC_752,Marylinda Acey,5/4/1995,1116 Grasskamp Road,QA +ABC_753,Logan Fitton,23/10/1985,30362 Summit Park,QA +ABC_754,Fredia Lynas,29/08/1983,40 Lakewood Terrace,MOBILE +ABC_755,Arny Degenhardt,18/12/1995,1830 Dovetail Trail,WEB +ABC_756,Rodrique Adriani,27/02/1994,8459 Gale Park,SYSTEM +ABC_757,Hubey Gunter,28/05/1986,0665 Pankratz Avenue,WEB +ABC_758,Annemarie Bartlomiejczyk,30/05/1987,9 Huxley Center,MOBILE +ABC_759,Carly Osan,5/11/1986,7 Norway Maple Court,QA +ABC_760,Irvin Congrave,18/09/1995,340 Sachtjen Junction,WEB +ABC_761,Hobey Heersema,25/12/1992,30987 Eagle Crest Trail,MOBILE +ABC_762,Jana Pettie,1/4/1991,694 Ohio Hill,SYSTEM +ABC_763,Dewain Probate,28/07/1995,71873 Oakridge Drive,SYSTEM +ABC_764,Charlene Lamberth,22/04/1986,96041 Summit Drive,WEB +ABC_765,Jacques Doubleday,5/2/1987,787 Parkside Road,SYSTEM +ABC_766,Nick Eadmead,29/05/1986,1774 Buhler Plaza,MOBILE +ABC_767,Korrie Markl,11/2/1982,168 Union Crossing,MOBILE +ABC_768,Nickey O'Crigane,11/9/1988,25836 Ridge Oak Place,ADMIN +ABC_769,Ali Hulmes,22/07/1999,79888 Stone Corner Circle,MOBILE +ABC_770,Brandy Gittins,30/05/1995,6607 Magdeline Way,QA +ABC_771,Egor MacMenamie,15/03/1986,8 Little Fleur Parkway,WEB +ABC_772,Wynne Pinkie,8/8/1996,20048 Autumn Leaf Junction,ADMIN +ABC_773,Wilfrid Gibbs,30/01/1998,55 North Park,WEB +ABC_774,Jyoti Findlay,26/04/1986,3 Maple Road,SYSTEM +ABC_775,Marita Blumfield,25/07/1982,913 Center Parkway,ADMIN +ABC_776,Boniface Peron,27/12/1994,49929 Carberry Parkway,WEB +ABC_777,Gianina Pepon,30/03/1982,7142 Declaration Parkway,SYSTEM +ABC_778,Lanae Challener,13/09/1982,37089 Green Point,ADMIN +ABC_779,Ricard Witherspoon,8/3/1999,23475 Sunnyside Crossing,MOBILE +ABC_780,Mattheus Folan,8/5/1995,8 Northview Drive,WEB +ABC_781,Nariko Diggons,19/05/1987,1 Prairieview Parkway,WEB +ABC_782,Aylmar Borthwick,25/01/1985,69460 Washington Center,MOBILE +ABC_783,Dedra Wormstone,20/06/1991,0309 Erie Crossing,WEB +ABC_784,Andrew Ketchaside,9/12/1985,0071 Canary Trail,SYSTEM +ABC_785,Ody Siggens,1/8/1999,098 Dixon Place,ADMIN +ABC_786,Hephzibah Steers,15/08/1989,50279 Rigney Terrace,SYSTEM +ABC_787,Nikkie Trimbey,25/08/1993,08 Hayes Terrace,MOBILE +ABC_788,Ketti Matthiesen,7/5/1982,69 Sunnyside Trail,QA +ABC_789,Clayborn Starrs,3/1/1990,32340 Schurz Center,MOBILE +ABC_790,Goldie Crow,12/7/1989,18 Waubesa Court,ADMIN +ABC_791,Ronnica Legion,4/7/1986,526 Vahlen Pass,QA +ABC_792,Miran Lesmonde,23/08/1981,3512 Stephen Junction,MOBILE +ABC_793,Franzen Kaygill,7/2/1981,13033 Hovde Way,WEB +ABC_794,Ron Hughs,23/08/1983,27 Columbus Point,ADMIN +ABC_795,Rozanne Grabham,29/06/1996,7 Chinook Lane,WEB +ABC_796,Konrad Seiller,6/12/1983,949 Rigney Avenue,WEB +ABC_797,Salomon Abramovitz,18/12/1991,36 Caliangt Crossing,ADMIN +ABC_798,Englebert Keunemann,3/4/1983,03 Pine View Court,ADMIN +ABC_799,Gherardo Rootes,17/06/1986,10 Algoma Center,SYSTEM +ABC_800,Onofredo Butte,10/3/1991,1 Johnson Place,ADMIN +ABC_801,Gaynor Dominici,27/09/1996,2 Debra Park,WEB +ABC_802,Henka Bodle,28/04/1995,911 Hanover Avenue,SYSTEM +ABC_803,Gus Bricknall,17/11/1988,34 Carberry Alley,MOBILE +ABC_804,Wilona Cawkill,4/6/1988,75 Pepper Wood Pass,SYSTEM +ABC_805,Lorry Sings,29/10/1992,7399 Rutledge Trail,QA +ABC_806,Maryl Childerley,19/03/1992,84 Russell Alley,MOBILE +ABC_807,Rochester Ruler,22/11/1999,0 Bowman Street,WEB +ABC_808,Albrecht Tarbath,8/6/1994,31 4th Trail,ADMIN +ABC_809,Shari West,13/03/1995,2987 Pankratz Drive,QA +ABC_810,Andriette Havoc,23/11/1994,148 Havey Point,WEB +ABC_811,Garek Gallehawk,12/1/1994,3 Corry Pass,MOBILE +ABC_812,Reuven Yeend,23/03/1989,7286 Oak Valley Center,WEB +ABC_813,Ashely Wyllcocks,11/11/1989,757 Melrose Plaza,MOBILE +ABC_814,Hilton Levay,10/8/1995,003 Hanson Plaza,ADMIN +ABC_815,Hatti Alberts,22/11/1994,7499 Artisan Circle,QA +ABC_816,Gilberto McKern,21/05/1990,0879 Old Gate Point,WEB +ABC_817,Gaby Eccles,3/10/1991,80 Mosinee Hill,MOBILE +ABC_818,Calypso Physick,13/09/1995,49242 Anthes Way,MOBILE +ABC_819,Iosep Rathe,30/11/1990,31420 Cody Alley,MOBILE +ABC_820,Berri Yurov,11/3/1993,83746 Ridgeway Crossing,MOBILE +ABC_821,Whittaker Georgescu,24/01/1992,60646 Fairview Street,QA +ABC_822,Korella Sygroves,16/09/1999,7 Lakeland Point,QA +ABC_823,Walker Ibeson,15/02/1998,0414 Northwestern Terrace,WEB +ABC_824,Hunter Puckett,6/8/1998,77 Center Park,ADMIN +ABC_825,Silvia Ilem,20/07/1993,127 Ridgeview Road,QA +ABC_826,Fiorenze Whyler,16/04/1981,6 Fieldstone Pass,MOBILE +ABC_827,Rheba MacCarter,27/08/1985,295 Golf View Center,SYSTEM +ABC_828,Nikkie McAw,22/10/1995,214 Hooker Pass,MOBILE +ABC_829,Marybelle Loren,24/12/1990,104 Gina Crossing,QA +ABC_830,Samuel Lippiello,29/11/1982,274 Melvin Plaza,SYSTEM +ABC_831,Jodi De Castri,4/6/1993,61497 Sunbrook Center,MOBILE +ABC_832,Gannon Sherston,22/02/1992,80064 Scott Avenue,MOBILE +ABC_833,Gilbertina Bew,16/12/1998,48 Elka Junction,SYSTEM +ABC_834,Ciro Blumfield,16/07/1999,91134 Dwight Point,MOBILE +ABC_835,Leone MacKaig,25/05/1983,7646 Victoria Crossing,QA +ABC_836,Georgi Brownhall,15/01/1997,1 Claremont Terrace,WEB +ABC_837,Arda Fathers,29/10/1983,25132 Grover Park,QA +ABC_838,Justino Shawdforth,19/01/1980,6 Summerview Way,SYSTEM +ABC_839,Foss Walter,17/01/1986,5 Pine View Plaza,QA +ABC_840,Noella Toms,24/06/1999,6 Brown Alley,QA +ABC_841,Hew Chalker,21/04/1989,78 Prairie Rose Trail,WEB +ABC_842,Tudor Braybrooks,5/8/1981,48 Banding Lane,WEB +ABC_843,Brande Vickers,22/06/1996,66425 Fulton Pass,ADMIN +ABC_844,Gratiana Reuben,1/1/1986,1 Grayhawk Park,MOBILE +ABC_845,Emanuele Whatling,23/08/1995,33 Sloan Parkway,SYSTEM +ABC_846,Margalo Canadas,22/06/1984,19 Milwaukee Junction,WEB +ABC_847,Tamra Berthon,11/6/1991,0 Swallow Plaza,ADMIN +ABC_848,Harlene Cowoppe,27/11/1995,978 Amoth Court,WEB +ABC_849,Bill Betterton,30/08/1996,0599 Stoughton Road,MOBILE +ABC_850,Jamima Aimson,13/08/1983,9678 Bartillon Hill,WEB +ABC_851,Annice McMurraya,24/11/1994,3 Buell Trail,QA +ABC_852,Dominga Martignoni,13/08/1992,8330 3rd Alley,MOBILE +ABC_853,Yetta Cracker,5/3/1985,294 Katie Trail,MOBILE +ABC_854,Stephi Crosen,15/06/1982,0 Saint Paul Point,QA +ABC_855,Janene Dinsell,30/07/1997,75657 Fairview Point,WEB +ABC_856,Welby Maidment,10/5/1980,0089 Kennedy Road,WEB +ABC_857,Sande Garnar,15/07/1993,6833 Nova Parkway,WEB +ABC_858,Jacquie Scaddon,11/5/1993,50 Clemons Street,QA +ABC_859,Christi Tomkys,6/5/1983,0507 Saint Paul Drive,ADMIN +ABC_860,Bernete Pretswell,3/11/1981,283 Johnson Park,MOBILE +ABC_861,Ailee Blues,29/04/1985,06 Mayer Park,MOBILE +ABC_862,Fee Breffit,4/3/1981,64 Hanson Trail,QA +ABC_863,Tedmund Castello,11/3/1983,5 Longview Terrace,WEB +ABC_864,Cozmo Martijn,20/09/1992,5 Lighthouse Bay Circle,WEB +ABC_865,Sherlocke Ridesdale,4/12/1995,866 American Ash Court,SYSTEM +ABC_866,Kile Kirkam,26/02/1997,751 Eagan Alley,SYSTEM +ABC_867,Mic Baldam,20/11/1982,40 Cody Center,MOBILE +ABC_868,Lesya Cairney,20/05/1981,750 Onsgard Junction,SYSTEM +ABC_869,Cathi Phipps,4/9/1991,68 Emmet Park,ADMIN +ABC_870,Gillian Mackelworth,5/2/1980,553 Huxley Way,SYSTEM +ABC_871,Russ Quayle,1/8/1987,75155 Forest Road,MOBILE +ABC_872,Solomon Kirkbright,12/11/1983,77 Lakewood Lane,QA +ABC_873,Chrystal Lownds,14/12/1996,56708 Green Place,QA +ABC_874,Jock Le Blond,6/4/1988,26041 Harbort Road,MOBILE +ABC_875,Frederich Rother,7/1/1981,614 Calypso Terrace,WEB +ABC_876,Miner MacMickan,11/4/1985,78 Colorado Junction,SYSTEM +ABC_877,Mallory Goley,29/06/1990,20131 Westend Center,SYSTEM +ABC_878,Christa Zanini,30/10/1989,7034 Thackeray Trail,WEB +ABC_879,Konstantin Olander,1/2/1996,37070 Macpherson Center,SYSTEM +ABC_880,Ayn Reasce,20/07/1981,2734 Gulseth Plaza,WEB +ABC_881,Hebert Cescot,28/05/1999,3 Monica Avenue,WEB +ABC_882,Hercule Francescuzzi,18/08/1983,98 Di Loreto Road,QA +ABC_883,Barris Edmead,25/05/1995,0083 Union Road,WEB +ABC_884,Lorianna Stoltz,24/08/1982,0200 Butterfield Lane,WEB +ABC_885,Tabbi Borland,10/6/1991,844 Bowman Street,WEB +ABC_886,Dusty Priestley,6/3/1999,0 Thierer Point,WEB +ABC_887,Wildon Yurenev,19/09/1994,029 Birchwood Avenue,ADMIN +ABC_888,Luther Kittles,20/08/1998,420 Burrows Lane,SYSTEM +ABC_889,Kalinda Byne,11/5/1998,56467 Magdeline Avenue,WEB +ABC_890,Hendrick Bean,20/08/1984,1 Namekagon Park,WEB +ABC_891,Yanaton Bayly,5/7/1994,166 Wayridge Hill,WEB +ABC_892,Elfrieda Wadly,17/06/1981,1937 Ruskin Parkway,SYSTEM +ABC_893,Otes Balderstone,14/05/1982,383 Golf Court,ADMIN +ABC_894,Amye Woolvett,1/8/1992,33825 Fuller Terrace,QA +ABC_895,Giacomo Candwell,9/11/1985,33 Shopko Junction,WEB +ABC_896,Prudy Fridd,16/06/1984,961 Michigan Circle,SYSTEM +ABC_897,Ferris Waterstone,18/05/1997,8054 Upham Trail,WEB +ABC_898,Glenn Faas,14/04/1996,214 Messerschmidt Street,MOBILE +ABC_899,Lyssa Bridgewood,13/09/1997,88 Memorial Road,SYSTEM +ABC_900,Rikki O'Hanley,29/09/1999,3 Lighthouse Bay Junction,SYSTEM +ABC_901,Wilton Camplen,21/09/1982,5866 Cordelia Crossing,MOBILE +ABC_902,Garret Skillings,20/01/1993,53972 Center Avenue,QA +ABC_903,Glenn Colomb,6/2/1998,76704 Westerfield Drive,WEB +ABC_904,Cammie Fancet,29/09/1997,4763 Mallard Drive,SYSTEM +ABC_905,Mindy Worling,20/10/1990,0 Thierer Crossing,ADMIN +ABC_906,Kit Maureen,9/11/1990,9 Cascade Circle,SYSTEM +ABC_907,Hurlee John,28/04/1983,12164 Stang Point,QA +ABC_908,Vanna Nancekivell,8/9/1993,7 Londonderry Way,WEB +ABC_909,Lewie Tattam,31/08/1995,73659 Macpherson Drive,WEB +ABC_910,Celestyna Giabuzzi,12/6/1991,8 Buhler Trail,SYSTEM +ABC_911,Billy Loades,21/12/1983,79 Butterfield Hill,WEB +ABC_912,Kay Fidgett,15/07/1991,22414 Debs Road,ADMIN +ABC_913,Alexina Moukes,30/04/1986,0887 Jenna Drive,QA +ABC_914,Andrus Cafferky,14/06/1990,240 Erie Terrace,MOBILE +ABC_915,Alida Franzke,19/04/1994,167 Moland Road,ADMIN +ABC_916,Amalita Scohier,13/10/1990,065 Dawn Center,ADMIN +ABC_917,Bearnard Monksfield,8/12/1980,84357 Scoville Plaza,WEB +ABC_918,Tonnie Clemenceau,1/1/1992,74404 Lukken Circle,ADMIN +ABC_919,Phoebe Tuer,9/8/1990,24130 Becker Court,MOBILE +ABC_920,Erastus Scyone,28/11/1990,7 Alpine Pass,MOBILE +ABC_921,Casey Lankham,12/12/1986,1052 Dawn Hill,WEB +ABC_922,Gladys Lacy,19/03/1993,515 Oakridge Street,WEB +ABC_923,Yale Oda,3/10/1992,35604 Northwestern Center,SYSTEM +ABC_924,Ellery Parkyn,19/05/1991,70477 Esch Point,WEB +ABC_925,Olia Killiner,9/1/1998,6535 Porter Court,WEB +ABC_926,Lavinie O'Hederscoll,30/10/1998,23914 Clyde Gallagher Drive,WEB +ABC_927,Ryley Shales,17/12/1984,6 Amoth Terrace,SYSTEM +ABC_928,Greggory Lindblom,15/07/1982,86363 Monument Trail,ADMIN +ABC_929,Will Emmer,21/10/1988,5488 Merry Trail,MOBILE +ABC_930,Linoel Paddeley,1/4/1987,00 Maple Place,ADMIN +ABC_931,Ryan Hassett,2/2/1989,42 Autumn Leaf Trail,MOBILE +ABC_932,Mayor Derby,7/8/1999,19 Barby Crossing,QA +ABC_933,Dorian Grimolbie,4/3/1983,01 New Castle Center,SYSTEM +ABC_934,Lauren Harradence,4/7/1991,7365 Towne Crossing,SYSTEM +ABC_935,Mar Lamburn,15/11/1993,8458 Meadow Vale Park,WEB +ABC_936,Padraig Fittes,12/4/1980,43713 Charing Cross Trail,SYSTEM +ABC_937,Felipe Buckle,17/12/1996,7 Killdeer Trail,MOBILE +ABC_938,Teressa Durgan,12/3/1997,8 Dawn Terrace,MOBILE +ABC_939,Winnifred Chelsom,20/04/1991,984 Stone Corner Parkway,QA +ABC_940,Xaviera Whal,6/4/1987,678 Sommers Place,ADMIN +ABC_941,Jobina Foulstone,1/4/1980,141 Hallows Way,WEB +ABC_942,Dannye Dreghorn,29/09/1995,08 Roth Place,SYSTEM +ABC_943,Wilbert Tuft,13/08/1982,0646 Badeau Center,WEB +ABC_944,Abbott Agiolfinger,3/10/1982,40094 Crescent Oaks Terrace,QA +ABC_945,Ilaire Tremoille,1/3/1990,5 Vermont Terrace,WEB +ABC_946,Pauly Pfaffel,4/1/1991,3988 Truax Junction,MOBILE +ABC_947,Elspeth Nelane,30/11/1993,43 Russell Crossing,ADMIN +ABC_948,Tracie Duckitt,16/07/1993,1302 Dorton Center,SYSTEM +ABC_949,Dennet McCathie,29/10/1985,514 Sherman Alley,WEB +ABC_950,Hogan Fiddiman,14/06/1989,6 Raven Hill,ADMIN +ABC_951,Trev Everix,17/06/1995,65 West Street,WEB +ABC_952,Ag Raiman,25/12/1992,370 Sundown Lane,QA +ABC_953,Janela Symcock,16/04/1996,6671 Mosinee Place,MOBILE +ABC_954,Violante Nitti,19/12/1985,96969 Kenwood Way,WEB +ABC_955,Penelope Brettor,18/08/1987,9 Stephen Circle,WEB +ABC_956,Arliene Ferber,25/12/1985,50 Lien Alley,QA +ABC_957,Tabb Noteyoung,16/02/1990,50 8th Pass,WEB +ABC_958,Alva Blackshaw,11/1/1992,14 Longview Avenue,WEB +ABC_959,Roxanna Jarrold,21/09/1984,69866 Beilfuss Center,WEB +ABC_960,Myca Caroline,20/08/1984,57041 High Crossing Alley,WEB +ABC_961,Larry Maund,31/08/1999,5863 Vera Place,MOBILE +ABC_962,Benedikt Hart,25/07/1993,89913 Springs Parkway,WEB +ABC_963,Neel Moneypenny,27/04/1998,87 Rigney Point,WEB +ABC_964,Chrissy Lightfoot,7/9/1982,3980 Cascade Trail,QA +ABC_965,Kirk Vickors,27/04/1989,63958 Columbus Circle,WEB +ABC_966,Charline Lees,2/11/1992,47628 Oriole Plaza,QA +ABC_967,Dinnie Klemencic,23/02/1981,8731 Arrowood Point,ADMIN +ABC_968,Jordana Gibbe,26/03/1982,5038 Upham Avenue,SYSTEM +ABC_969,Cyrus Ollivier,26/06/1996,48 Banding Lane,SYSTEM +ABC_970,Bryan Batham,12/1/1989,471 Browning Parkway,QA +ABC_971,Tessi Finessy,18/06/1985,233 Colorado Trail,QA +ABC_972,Winn Atchly,6/8/1985,81964 Pierstorff Court,QA +ABC_973,Brandon Thynn,23/08/1999,27453 Sutteridge Point,ADMIN +ABC_974,Dasya Schoenrock,28/08/1991,536 Nevada Junction,MOBILE +ABC_975,Shirlee Poolman,24/04/1997,211 Welch Lane,ADMIN +ABC_976,Thomasin Sedwick,30/03/1996,4389 Superior Hill,QA +ABC_977,Saunder Arrigucci,26/02/1983,71808 Kensington Court,MOBILE +ABC_978,Timmy Paterson,2/1/1992,2380 Fremont Terrace,WEB +ABC_979,Ilaire Beaves,20/06/1993,15423 Artisan Court,WEB +ABC_980,Laetitia Jerrard,15/10/1997,2 Forest Run Center,SYSTEM +ABC_981,Law Drennan,26/11/1990,03 Talmadge Crossing,QA +ABC_982,Kirbie Salliere,18/08/1983,21 Lerdahl Terrace,SYSTEM +ABC_983,Randee Leuren,14/12/1998,722 Schlimgen Drive,SYSTEM +ABC_984,Arabella Postan,18/10/1989,28 Blue Bill Park Crossing,SYSTEM +ABC_985,Winifield Allom,28/02/1993,0 Golf Lane,ADMIN +ABC_986,Victoir Forder,10/8/1984,96144 Macpherson Road,WEB +ABC_987,Trstram Kennington,12/8/1989,4 Crescent Oaks Center,QA +ABC_988,Rodd Flahy,11/12/1984,6 Roth Place,MOBILE +ABC_989,Cherey Tripony,15/12/1998,11574 Dwight Alley,MOBILE +ABC_990,Scotti Pape,31/08/1997,4142 Eggendart Drive,SYSTEM +ABC_991,Si Huleatt,26/04/1998,71 Bellgrove Court,MOBILE +ABC_992,Adele Murkitt,18/04/1990,6782 Declaration Crossing,MOBILE +ABC_993,Revkah Charnock,20/06/1997,475 Rusk Terrace,QA +ABC_994,Tiebold Drinkeld,12/4/1983,74 Hooker Center,QA +ABC_995,Latisha Zuanelli,23/11/1993,21 Michigan Plaza,MOBILE +ABC_996,Rorke Stelfax,6/9/1998,8 Sachtjen Terrace,MOBILE +ABC_997,Ethe Joder,13/04/1984,93 Killdeer Road,MOBILE +ABC_998,Findlay Sprouls,31/01/1994,88 Northwestern Road,MOBILE +ABC_999,Jacquetta Perham,19/06/1990,3201 Parkside Junction,MOBILE +ABC_1000,Sofie Nevitt,14/07/1989,87 Dexter Plaza,SYSTEM +ABC_1001,Mick Theurer,19/12/1990,57010 Morrow Alley,MOBILE +ABC_1002,Peyton Gaskall,1/7/1999,6412 Tennyson Alley,WEB +ABC_1003,Jillie Klaus,8/10/1993,9500 Northland Pass,SYSTEM +ABC_1004,Addi McOwan,7/3/1986,909 Loomis Park,SYSTEM +ABC_1005,Roxine Carnegy,29/09/1981,25136 Lakewood Gardens Pass,MOBILE +ABC_1006,Georg Motton,27/08/1982,093 Hollow Ridge Parkway,SYSTEM +ABC_1007,Angelle Keates,2/7/1990,6517 Butternut Alley,ADMIN +ABC_1008,Juieta Sharpe,14/02/1984,8568 Basil Plaza,MOBILE +ABC_1009,Shamus Rate,18/01/1980,6 East Place,MOBILE +ABC_1010,Kincaid Mellmoth,9/12/1983,7 Evergreen Alley,WEB +ABC_1011,Angelita Titt,10/7/1987,65425 Homewood Alley,MOBILE +ABC_1012,Randene Quipp,22/08/1997,836 Washington Crossing,ADMIN +ABC_1013,Cesaro Jakubovicz,18/12/1986,45090 Nancy Plaza,WEB +ABC_1014,Nan Fitzroy,2/5/1983,93 Morrow Court,WEB +ABC_1015,Jaimie Lilian,6/7/1991,36016 Porter Street,QA +ABC_1016,Leone Keniwell,12/3/1983,4884 Becker Point,MOBILE +ABC_1017,Louis Beazley,21/10/1987,31 Sloan Trail,ADMIN +ABC_1018,Jeffy Handforth,26/04/1981,75759 Brentwood Alley,QA +ABC_1019,Jenelle Greenwood,17/02/1996,30 Loomis Park,QA +ABC_1020,Millicent Roiz,31/10/1987,0867 Hanover Place,MOBILE +ABC_1021,Ilene Ketteringham,14/06/1987,2 Buena Vista Lane,SYSTEM +ABC_1022,Dugald Geyton,31/07/1989,61372 Rockefeller Place,WEB +ABC_1023,Norean Brinsford,31/12/1991,6874 Daystar Junction,QA +ABC_1024,Lorens Newis,22/12/1987,084 Weeping Birch Pass,MOBILE +ABC_1025,Jodee Denyer,21/05/1996,60 Karstens Way,QA +ABC_1026,Jacki Kreutzer,5/6/1984,7 La Follette Circle,SYSTEM +ABC_1027,Alfons Johananoff,14/02/1999,6951 Meadow Ridge Place,ADMIN +ABC_1028,Jackie Standidge,27/12/1998,8 Butternut Drive,MOBILE +ABC_1029,Myra Havis,19/06/1992,496 Mallard Alley,SYSTEM +ABC_1030,Rainer Wooldridge,28/04/1990,39661 Oak Terrace,WEB +ABC_1031,Lurlene Eudall,4/3/1995,58 Farmco Pass,SYSTEM +ABC_1032,Conny Queyeiro,23/03/1990,598 Texas Terrace,SYSTEM +ABC_1033,Rubin Rown,21/12/1986,68 Lotheville Drive,MOBILE +ABC_1034,Randy Stoter,13/11/1993,18 Melby Alley,ADMIN +ABC_1035,Syman Trimme,5/12/1990,15351 Vera Road,MOBILE +ABC_1036,Freemon Blankley,1/10/1997,32 Russell Terrace,SYSTEM +ABC_1037,Bernadina Gerber,3/5/1980,85 Marquette Terrace,WEB +ABC_1038,Edythe Krzyzanowski,9/1/1999,28673 Gale Junction,MOBILE +ABC_1039,Elia Circuitt,13/10/1999,4 Steensland Crossing,WEB +ABC_1040,Adriena Eason,21/10/1980,217 Logan Pass,MOBILE +ABC_1041,Jaquith Groomebridge,3/3/1987,42 Waxwing Terrace,SYSTEM +ABC_1042,Moreen Carstairs,9/8/1993,6107 Eagan Avenue,QA +ABC_1043,Payton Covotti,19/08/1992,26190 Riverside Street,QA +ABC_1044,Vivyanne Colam,3/2/1996,38830 Maple Wood Road,WEB +ABC_1045,Tybalt Barnewall,4/4/1985,78759 Trailsway Lane,WEB +ABC_1046,Nickolas Bourke,27/10/1994,32497 Waxwing Center,SYSTEM +ABC_1047,Kevina Bonelle,29/10/1995,91 Eliot Road,WEB +ABC_1048,Lorri Bifield,31/12/1983,61914 Oneill Alley,WEB +ABC_1049,Upton Meiningen,14/06/1981,419 Waxwing Drive,SYSTEM +ABC_1050,Nevin Scone,14/03/1984,6 Donald Junction,MOBILE +ABC_1051,Caitrin Scarr,22/12/1986,13063 Iowa Crossing,MOBILE +ABC_1052,Jourdan Pucker,11/1/1999,43201 Hagan Junction,SYSTEM +ABC_1053,Lennie Stratten,13/12/1984,639 Grim Lane,SYSTEM +ABC_1054,Lila Ganing,5/7/1980,74 Heffernan Road,ADMIN +ABC_1055,Bella Goldberg,28/11/1986,24588 Thompson Parkway,MOBILE +ABC_1056,Marnia Screen,15/01/1981,5 Saint Paul Street,SYSTEM +ABC_1057,Angele Bullar,4/6/1984,53 Bartillon Park,WEB +ABC_1058,Roosevelt Andrejevic,17/08/1981,4675 Jay Drive,ADMIN +ABC_1059,Finn Redgrave,23/12/1992,17317 Scott Trail,QA +ABC_1060,Odille Glander,4/2/1986,37 Basil Way,SYSTEM +ABC_1061,Jessica Thurske,22/02/1997,1 Gina Terrace,WEB +ABC_1062,Heida MacKnight,28/09/1983,207 Macpherson Park,SYSTEM +ABC_1063,Gerhardt Hartus,14/07/1991,8 Melody Junction,SYSTEM +ABC_1064,Clemente Emanueli,8/11/1985,12668 Forest Pass,ADMIN +ABC_1065,Hinda Danet,9/5/1983,24 Paget Junction,ADMIN +ABC_1066,Roxanne Dahler,25/11/1999,30 Esch Circle,QA +ABC_1067,Viviene Duberry,11/5/1989,7 Stone Corner Center,WEB +ABC_1068,Cori Pitway,14/07/1995,809 Maple Wood Court,MOBILE +ABC_1069,Arlana Gooda,6/2/1987,259 Mesta Trail,SYSTEM +ABC_1070,Pearl Boyse,10/11/1995,9148 Lillian Drive,ADMIN +ABC_1071,Hubert Frowd,31/01/1990,99 Debs Place,WEB +ABC_1072,Anderson Clemo,5/7/1988,3361 Bluestem Pass,QA +ABC_1073,Rollin Delyth,13/12/1982,35 Bunting Junction,QA +ABC_1074,Jeddy MacHostie,17/03/1982,1274 Duke Court,SYSTEM +ABC_1075,Arman Burnep,2/8/1983,628 Surrey Center,QA +ABC_1076,Morten Lesly,6/5/1989,9522 Boyd Circle,ADMIN +ABC_1077,Alleen Chinge de Hals,16/02/1999,7 Burning Wood Lane,QA +ABC_1078,Tyrone Derry,3/6/1992,6 Corben Circle,WEB +ABC_1079,Melicent Wartonby,14/11/1990,50 Magdeline Way,MOBILE +ABC_1080,Genovera Connechie,29/08/1981,7390 Nova Center,SYSTEM +ABC_1081,Fernando Cheel,23/10/1981,8 Corry Street,WEB +ABC_1082,Carissa Leisman,10/9/1994,1950 Atwood Road,QA +ABC_1083,Silvana Clarycott,28/05/1980,9125 Burrows Way,ADMIN +ABC_1084,Guss Melwall,23/05/1985,68940 Carey Drive,QA +ABC_1085,Trever Schorah,30/11/1986,1265 Hanover Trail,ADMIN +ABC_1086,Web Compston,4/9/1983,2606 Mandrake Circle,QA +ABC_1087,Rufus Drogan,28/06/1994,1 Kipling Alley,MOBILE +ABC_1088,Babb Gomersal,25/04/1992,206 Marcy Hill,SYSTEM +ABC_1089,Cosimo Dyneley,11/4/1994,04924 Pearson Park,WEB +ABC_1090,Trstram Marthen,3/10/1998,99 Loomis Park,SYSTEM +ABC_1091,Darya Brunicke,19/05/1998,7 Hoepker Crossing,MOBILE +ABC_1092,Ruttger Kettow,3/4/1991,378 Transport Place,ADMIN +ABC_1093,Leonie Vollam,30/04/1995,8 Walton Road,WEB +ABC_1094,Eduardo Lye,22/11/1993,534 Blackbird Alley,SYSTEM +ABC_1095,Ardene Rodbourne,30/05/1998,30505 Rigney Junction,WEB +ABC_1096,Dov Heyfield,30/06/1991,40 Cottonwood Pass,MOBILE +ABC_1097,Ingaborg Heaps,8/1/1994,2 Dwight Trail,SYSTEM +ABC_1098,Neils Large,22/05/1992,0 Manufacturers Plaza,SYSTEM +ABC_1099,Carlee Gammie,1/7/1998,824 Clove Hill,WEB +ABC_1100,Jolie Starsmeare,16/08/1987,7521 Petterle Crossing,QA +ABC_1101,Manfred Laybourn,4/6/1997,603 Alpine Point,SYSTEM +ABC_1102,Flossie Worthington,1/8/1984,2 Becker Crossing,SYSTEM +ABC_1103,Feodor Igo,16/11/1989,23883 Messerschmidt Drive,MOBILE +ABC_1104,Claudine Mac Giolla Pheadair,21/05/1991,21389 Arrowood Hill,WEB +ABC_1105,Raynard Telfer,22/04/1981,928 Michigan Point,QA +ABC_1106,Karla Rugge,15/08/1999,13777 American Place,WEB +ABC_1107,Leroi Rugg,23/04/1999,4 Hoard Parkway,MOBILE +ABC_1108,Osgood O'Dowd,27/01/1983,1941 Victoria Plaza,WEB +ABC_1109,Christina Banane,8/8/1982,54645 Merchant Park,WEB +ABC_1110,Barnabe Attkins,22/03/1985,41 Loeprich Terrace,SYSTEM +ABC_1111,Norrie Dugdale,2/3/1991,684 Oak Street,MOBILE +ABC_1112,Nicola Mulhall,7/5/1990,3519 Forest Run Parkway,ADMIN +ABC_1113,Bree Billison,26/01/1982,20 Dapin Crossing,MOBILE +ABC_1114,Paulina McGeorge,24/09/1987,1 Mcguire Parkway,QA +ABC_1115,Baily Idney,25/03/1998,587 Lunder Street,WEB +ABC_1116,Paulo Vasyushkhin,9/3/1985,8106 Hermina Park,WEB +ABC_1117,Judd Kollach,4/9/1997,83 Kropf Hill,MOBILE +ABC_1118,Gussy Mott,14/09/1988,0944 Delladonna Plaza,MOBILE +ABC_1119,Inigo Albro,14/03/1994,2 Weeping Birch Park,WEB +ABC_1120,Gillan Broader,4/11/1985,36 Monica Avenue,QA +ABC_1121,Isis Oxborrow,29/01/1997,57 Northwestern Place,MOBILE +ABC_1122,Selma Tindle,26/11/1990,4871 Village Green Trail,MOBILE +ABC_1123,Mandel Cornner,1/1/1992,5914 Lukken Junction,SYSTEM +ABC_1124,Bordy Sammes,17/05/1984,31 Eagle Crest Parkway,QA +ABC_1125,Wally Tarn,14/01/1992,4918 Elmside Road,WEB +ABC_1126,Carine Roadknight,18/09/1984,01 Maywood Way,SYSTEM +ABC_1127,Myles Vermer,28/12/1994,3 Carioca Crossing,QA +ABC_1128,Corella Vickars,21/08/1991,68038 Sage Pass,ADMIN +ABC_1129,Katheryn Paquet,12/8/1991,2 Dottie Pass,WEB +ABC_1130,Ailyn Yerby,24/02/1997,9315 Walton Way,QA +ABC_1131,Gordan Moses,11/4/1981,9959 Nova Point,SYSTEM +ABC_1132,Blondie Stair,12/11/1985,9 Gale Trail,WEB +ABC_1133,Geri Andries,7/6/1981,916 Stephen Alley,WEB +ABC_1134,Eduino Florence,12/7/1984,1 Brentwood Place,WEB +ABC_1135,Bond Larvent,4/6/1985,701 Maple Wood Hill,MOBILE +ABC_1136,Correy Baugham,22/01/1988,2018 Loomis Crossing,WEB +ABC_1137,Patrica Dudmarsh,6/8/1987,242 Rieder Circle,MOBILE +ABC_1138,Brynne Duer,2/7/1995,472 Victoria Court,WEB +ABC_1139,Val Totterdell,3/10/1998,488 John Wall Lane,ADMIN +ABC_1140,Archibald Knevett,14/09/1991,79 Bowman Street,QA +ABC_1141,Donella Revie,7/1/1987,43217 Walton Road,MOBILE +ABC_1142,Karon Pierrepont,5/8/1989,32655 Marquette Point,SYSTEM +ABC_1143,Glynda Graysmark,26/05/1995,5599 Esker Road,WEB +ABC_1144,Debora Tarbett,16/08/1987,1494 Mallory Hill,WEB +ABC_1145,Allan Manilow,5/9/1997,7050 Maryland Parkway,WEB +ABC_1146,Torie Dring,12/11/1983,02 Riverside Crossing,WEB +ABC_1147,Kyle Stiggles,29/07/1999,16628 Fair Oaks Court,QA +ABC_1148,Pennie Tewes,28/05/1987,4 Carpenter Road,QA +ABC_1149,Devon Gundrey,19/06/1984,0801 Helena Parkway,WEB +ABC_1150,Violante Halvorsen,6/4/1985,3 Melody Parkway,SYSTEM +ABC_1151,Kaye Brace,4/9/1998,1 Killdeer Street,WEB +ABC_1152,Dell Caldroni,10/3/1995,843 Lakewood Park,QA +ABC_1153,Danice Haining,23/09/1983,542 Homewood Drive,WEB +ABC_1154,Kayley Devey,1/1/1990,17 Spenser Lane,ADMIN +ABC_1155,Agnola Ofer,6/6/1993,85228 Northland Place,SYSTEM +ABC_1156,Augustin Daintier,14/10/1989,3041 Spenser Road,WEB +ABC_1157,Gallagher Gimeno,13/05/1983,8 Glendale Trail,WEB +ABC_1158,Alair Gartsyde,30/11/1997,7 Paget Junction,SYSTEM +ABC_1159,Sofie Portinari,3/1/1989,01416 Clarendon Crossing,MOBILE +ABC_1160,Glennis Philipard,17/04/1981,0816 Dovetail Parkway,MOBILE +ABC_1161,Wendi MacNair,27/08/1994,474 Nova Center,ADMIN +ABC_1162,Christian Spence,26/09/1984,711 Meadow Ridge Terrace,WEB +ABC_1163,Gusty Riply,4/1/1987,292 Cambridge Crossing,WEB +ABC_1164,Vernon Starbucke,12/2/1995,88 Golf Trail,MOBILE +ABC_1165,Hendrik Mariet,8/1/1998,16 Banding Parkway,MOBILE +ABC_1166,Adan Bloan,14/04/1980,575 Shoshone Circle,QA +ABC_1167,Yankee Buncombe,15/07/1981,1 Union Park,MOBILE +ABC_1168,Beau Deny,6/7/1982,10 Wayridge Hill,WEB +ABC_1169,Conn Andrew,9/1/1987,294 Dakota Circle,ADMIN +ABC_1170,Lennard Merrgen,24/01/1981,227 Muir Park,QA +ABC_1171,Barty Le Pruvost,14/01/1991,005 Dapin Center,MOBILE +ABC_1172,Jeromy Khristoforov,6/4/1985,7334 Dottie Plaza,WEB +ABC_1173,Mile Robyns,2/2/1999,66 Amoth Plaza,WEB +ABC_1174,Christophe Archley,3/7/1981,37 Mendota Point,WEB +ABC_1175,Lilian Chaddock,10/9/1981,37 Myrtle Road,SYSTEM +ABC_1176,Egan Crux,8/2/1980,0011 Kinsman Park,MOBILE +ABC_1177,Gwyneth Norvell,13/12/1981,70899 Magdeline Way,SYSTEM +ABC_1178,Edlin Checkley,18/05/1982,158 Namekagon Terrace,QA +ABC_1179,Giulia Malsher,26/05/1980,82 Farragut Hill,QA +ABC_1180,Tandi Bacop,25/03/1998,960 Randy Alley,QA +ABC_1181,Giffer Loachhead,2/5/1996,036 North Court,MOBILE +ABC_1182,Abbye Mourgue,17/08/1999,3562 Badeau Trail,WEB +ABC_1183,Wade Gobeau,4/12/1986,01617 Brickson Park Court,ADMIN +ABC_1184,Florri Culverhouse,13/03/1983,936 Dottie Hill,MOBILE +ABC_1185,Mair Dowd,31/12/1984,69 Blaine Point,QA +ABC_1186,Wendeline Whitear,3/12/1980,4071 Waubesa Drive,WEB +ABC_1187,Diane Flay,29/01/1987,184 Thompson Point,QA +ABC_1188,Tod Lehr,22/08/1999,81 Brown Circle,MOBILE +ABC_1189,Jerrine Shadrack,21/08/1990,7437 Thompson Junction,WEB +ABC_1190,Corina Kensitt,10/3/1981,948 Eastwood Terrace,QA +ABC_1191,Alonzo Oman,8/10/1998,7238 Stoughton Way,ADMIN +ABC_1192,Ofella Duigan,31/05/1986,7 David Court,QA +ABC_1193,Dirk Glazer,23/05/1986,3 Dennis Circle,ADMIN +ABC_1194,Leroi Ruddell,10/5/1982,79 Dovetail Center,SYSTEM +ABC_1195,Tate Quelch,18/07/1999,0763 Onsgard Street,MOBILE +ABC_1196,Ralph Cleeves,22/09/1999,1 Vera Avenue,WEB +ABC_1197,Solomon Chippindale,26/11/1985,06 Union Street,SYSTEM +ABC_1198,Paulette Jerche,30/06/1980,27985 Eastlawn Pass,SYSTEM +ABC_1199,Moritz Blakden,21/02/1989,7287 Talisman Place,ADMIN +ABC_1200,Valma Trehearne,2/7/1994,08898 Swallow Crossing,MOBILE +ABC_1201,Candy Lalevee,17/08/1997,48681 Waxwing Park,QA +ABC_1202,Gilli Berndtssen,3/5/1982,210 Center Street,MOBILE +ABC_1203,Ricardo Simnell,8/10/1984,9 Banding Point,SYSTEM +ABC_1204,Engracia Minci,19/09/1986,7 Mitchell Avenue,SYSTEM +ABC_1205,Sari Loges,12/4/1996,2 Talmadge Crossing,QA +ABC_1206,Alvira Franzman,13/11/1991,3 Express Drive,MOBILE +ABC_1207,Margy Pendock,6/4/1982,072 Hanson Terrace,QA +ABC_1208,Betsey Choffin,17/11/1992,24 Lien Pass,QA +ABC_1209,Grover Ruller,13/08/1984,2 Spohn Hill,MOBILE +ABC_1210,Nanete Thatcher,26/01/1994,390 Garrison Center,QA +ABC_1211,Sylvan Mustoo,6/6/1986,04414 Hooker Alley,MOBILE +ABC_1212,Dniren Wilkie,14/12/1987,0 Arrowood Pass,WEB +ABC_1213,Duane Chieze,26/09/1985,1 Springs Road,QA +ABC_1214,Colet Damrell,28/06/1993,92 Huxley Drive,ADMIN +ABC_1215,Kary Matchell,1/3/1984,69 Longview Hill,ADMIN +ABC_1216,Eben Minghi,20/07/1982,3891 Eggendart Lane,ADMIN +ABC_1217,Bern Sijmons,12/1/1983,2059 Warrior Way,MOBILE +ABC_1218,Luis Mumbey,19/11/1980,9 Porter Alley,ADMIN +ABC_1219,Sonya Ary,2/9/1982,5259 Havey Alley,WEB +ABC_1220,Gilberto Bowerbank,26/08/1980,78162 Annamark Avenue,SYSTEM +ABC_1221,Nickie Eilers,2/4/1990,8 Leroy Terrace,QA +ABC_1222,Clarissa MacFaul,24/11/1999,6279 Butternut Drive,QA +ABC_1223,Hamil Alliband,27/06/1994,251 Lakewood Gardens Place,SYSTEM +ABC_1224,Zacharie Gennings,1/11/1989,6247 Brickson Park Hill,ADMIN +ABC_1225,Corabelle Baber,19/08/1989,27 Gulseth Crossing,ADMIN +ABC_1226,Sadie Hayto,27/04/1996,658 Steensland Alley,QA +ABC_1227,Kellen Hinkens,20/05/1980,50510 Northport Parkway,WEB +ABC_1228,Micheil Sawnwy,3/10/1992,8969 Sheridan Circle,WEB +ABC_1229,Lynnelle Stride,5/5/1987,4213 Saint Paul Circle,MOBILE +ABC_1230,Cris Roalfe,7/4/1985,6 Anderson Terrace,WEB +ABC_1231,Lisa Grahlman,18/06/1999,145 Cardinal Road,QA +ABC_1232,Uri Stirrip,19/05/1981,784 American Center,QA +ABC_1233,Florette Strathern,27/04/1988,408 Oneill Center,QA +ABC_1234,Erina Cochern,29/07/1998,88 Dwight Street,QA +ABC_1235,Edythe Corneljes,2/12/1998,1 Arapahoe Lane,SYSTEM +ABC_1236,Bari Iddons,4/6/1998,35 Coleman Avenue,MOBILE +ABC_1237,Adda Prettyman,21/06/1981,639 Eliot Junction,SYSTEM +ABC_1238,Rutter Yves,29/01/1987,23342 Goodland Street,MOBILE +ABC_1239,Helsa Houdhury,27/09/1984,6489 Corscot Terrace,WEB +ABC_1240,Lesley De Beneditti,8/3/1996,75542 Loeprich Pass,QA +ABC_1241,Arvy Jedrzejewsky,6/10/1980,5 Quincy Crossing,QA +ABC_1242,Briant Manach,2/3/1988,588 Sherman Junction,WEB +ABC_1243,Alard McEvay,28/03/1992,957 Towne Crossing,MOBILE +ABC_1244,Stefano Ikringill,5/2/1986,440 Riverside Point,MOBILE +ABC_1245,Pippa Beekmann,2/3/1990,6 Russell Hill,WEB +ABC_1246,Chelsey Haquard,30/03/1987,20299 Straubel Plaza,MOBILE +ABC_1247,Jeannine Catlin,25/03/1988,1546 Commercial Hill,QA +ABC_1248,Alvin Vassay,4/10/1995,66724 4th Avenue,ADMIN +ABC_1249,Adelle Janse,12/4/1991,4 Caliangt Pass,SYSTEM +ABC_1250,Allyn Glaisner,24/03/1998,53786 Golf Avenue,MOBILE +ABC_1251,Baxie Buckenhill,29/04/1980,831 Dottie Pass,SYSTEM +ABC_1252,Clair Hatliffe,20/04/1984,15669 Miller Street,SYSTEM +ABC_1253,Kelwin Bliben,22/01/1997,00703 Manufacturers Plaza,SYSTEM +ABC_1254,Pernell Davidowsky,25/09/1988,159 Main Point,WEB +ABC_1255,Liane Kerner,8/7/1988,333 Golden Leaf Crossing,SYSTEM +ABC_1256,Roze Berriball,17/05/1996,9021 Pine View Alley,MOBILE +ABC_1257,Janel Plumbe,4/10/1997,22 Schurz Pass,ADMIN +ABC_1258,Denna Chamberlen,26/12/1993,5 Longview Junction,MOBILE +ABC_1259,Curry Heselwood,29/07/1987,81023 Onsgard Terrace,QA +ABC_1260,Cos MacPhail,28/02/1980,16 Spaight Road,WEB +ABC_1261,Bank Giorgeschi,11/5/1998,41 Cascade Avenue,MOBILE +ABC_1262,Genia Bartolozzi,14/08/1999,68702 Rutledge Lane,QA +ABC_1263,Joelle Mollon,14/01/1990,80969 Packers Lane,SYSTEM +ABC_1264,Marina Monkton,13/04/1988,12 Lien Alley,MOBILE +ABC_1265,Orel Flegg,8/4/1996,3 Lien Center,QA +ABC_1266,Robinette Gobeaux,17/05/1998,67785 Melrose Alley,QA +ABC_1267,Emlyn Lindblom,22/07/1995,49176 Hagan Court,SYSTEM +ABC_1268,Doretta Cowin,12/12/1980,10 Green Ridge Junction,MOBILE +ABC_1269,Valeria Montgomery,13/10/1984,449 Towne Road,SYSTEM +ABC_1270,Dulcea Minget,28/03/1984,000 Springs Drive,SYSTEM +ABC_1271,Norry Stephens,20/08/1995,91 Carberry Circle,WEB +ABC_1272,Mathe Whanstall,9/5/1988,060 Longview Way,WEB +ABC_1273,Thain Howlings,12/1/1993,708 Comanche Parkway,WEB +ABC_1274,Tirrell Figliovanni,25/11/1993,67 Heath Trail,MOBILE +ABC_1275,Gonzalo Robbert,28/04/1989,4 Annamark Circle,SYSTEM +ABC_1276,Daron Mourton,18/05/1980,7 Carey Hill,WEB +ABC_1277,Madelon Bollans,19/03/1993,439 Hoepker Drive,ADMIN +ABC_1278,Robert Koopman,6/5/1996,096 Maple Wood Pass,WEB +ABC_1279,Al Bridson,23/05/1986,31 Merrick Circle,WEB +ABC_1280,Puff De Mattei,31/05/1984,59 Rigney Junction,WEB +ABC_1281,Sumner Pinar,4/7/1995,12 Bashford Parkway,WEB +ABC_1282,Corabelle Hardinge,7/7/1988,3145 Shoshone Junction,ADMIN +ABC_1283,Ebeneser Gillease,24/12/1984,161 Killdeer Lane,WEB +ABC_1284,Carrie Tildesley,20/10/1997,3997 Fairfield Terrace,SYSTEM +ABC_1285,Kelila Bastone,22/10/1991,037 Kennedy Point,ADMIN +ABC_1286,Bearnard Garatty,16/01/1997,2 Fremont Way,WEB +ABC_1287,Gayel Clue,13/05/1992,11324 Ridgeview Pass,SYSTEM +ABC_1288,Pamela Tassaker,5/5/1992,781 Towne Alley,QA +ABC_1289,Brittaney Scriver,20/12/1998,93239 Buena Vista Street,QA +ABC_1290,Brody Durston,1/8/1999,218 Pawling Road,WEB +ABC_1291,Tanner Passmore,2/7/1996,380 David Center,MOBILE +ABC_1292,Avrit Sparks,20/02/1996,895 Vahlen Avenue,SYSTEM +ABC_1293,Alisha Pollitt,23/11/1987,1983 Ridge Oak Alley,QA +ABC_1294,Ivette Aland,23/10/1983,17290 Dorton Alley,WEB +ABC_1295,Fania Coomer,12/9/1980,094 Briar Crest Avenue,SYSTEM +ABC_1296,Ignaz McCrudden,26/05/1997,7906 Spaight Parkway,ADMIN +ABC_1297,Damita Easthope,3/1/1985,88 Johnson Court,MOBILE +ABC_1298,Wanids Corbitt,2/3/1991,437 Pankratz Street,WEB +ABC_1299,Rona Houlston,1/8/1994,57922 Glacier Hill Crossing,MOBILE +ABC_1300,Kris Pickersail,8/3/1986,79796 Reindahl Terrace,WEB +ABC_1301,Jeanie Sellstrom,15/09/1999,65438 Starling Drive,QA +ABC_1302,Basilio Pacey,5/1/1986,958 Continental Court,QA +ABC_1303,Claiborn Ygoe,30/03/1983,58633 Dwight Road,MOBILE +ABC_1304,Ingaberg Allatt,12/7/1980,6745 Mcbride Terrace,WEB +ABC_1305,La verne Francisco,25/08/1983,66242 Myrtle Place,MOBILE +ABC_1306,Prissie Spelman,25/07/1994,56955 Farragut Parkway,QA +ABC_1307,Rosmunda Dalmon,5/12/1983,57 Sugar Parkway,SYSTEM +ABC_1308,Keefer Ubsdall,14/08/1994,78 Susan Park,WEB +ABC_1309,Anatole Dundredge,17/12/1998,5492 Buell Hill,QA +ABC_1310,Nana Hibbart,12/3/1988,9 Onsgard Pass,QA +ABC_1311,Robyn Fielders,13/10/1988,310 Manley Crossing,ADMIN +ABC_1312,Mal Chaters,29/03/1989,26 Little Fleur Point,WEB +ABC_1313,Trude Beckenham,7/11/1998,3393 Mosinee Street,MOBILE +ABC_1314,Ada Slayford,1/11/1991,56774 Fairview Park,MOBILE +ABC_1315,Charmine Vitte,14/10/1980,9563 5th Junction,MOBILE +ABC_1316,Christyna Athridge,20/09/1992,963 Rieder Point,SYSTEM +ABC_1317,Raychel Spoward,15/11/1983,73886 Grasskamp Plaza,ADMIN +ABC_1318,Stearn Yurevich,3/6/1980,348 Corry Way,SYSTEM +ABC_1319,Shirley MacCathay,1/2/1985,395 Union Crossing,WEB +ABC_1320,Francene Splain,1/11/1996,7633 Schlimgen Circle,ADMIN +ABC_1321,Alexandra Secretan,1/2/1990,758 Bayside Alley,WEB +ABC_1322,Dulce Lanchberry,20/09/1988,1 Hanson Avenue,ADMIN +ABC_1323,Dulcine Harrill,25/02/1999,2994 Towne Terrace,MOBILE +ABC_1324,Wini Gonneau,13/04/1991,1 New Castle Park,MOBILE +ABC_1325,Dorisa Krahl,24/11/1989,116 Farmco Park,WEB +ABC_1326,Luce Adnam,30/07/1985,28 American Plaza,WEB +ABC_1327,Alanah Grewcock,30/03/1990,3 Rusk Court,SYSTEM +ABC_1328,Willetta Scutter,3/4/1985,40065 Sheridan Center,SYSTEM +ABC_1329,Elvira Kondratovich,14/06/1996,1400 Schlimgen Court,SYSTEM +ABC_1330,Silvie Moreman,23/02/1999,0255 Gerald Drive,SYSTEM +ABC_1331,Esma Trighton,18/12/1988,77365 West Crossing,WEB +ABC_1332,Orel Bucknill,19/08/1980,0675 Novick Parkway,WEB +ABC_1333,Layla Kyne,18/07/1999,1 Nevada Hill,MOBILE +ABC_1334,Weston O'Duilleain,11/5/1982,44511 Dryden Plaza,SYSTEM +ABC_1335,Kirby Moorman,26/07/1994,4452 Prairieview Street,QA +ABC_1336,Nadia Jobling,29/06/1991,69 Glacier Hill Street,MOBILE +ABC_1337,Gaven Blabie,17/05/1984,60 Jackson Terrace,WEB +ABC_1338,Krystle Steffan,24/07/1980,88730 Transport Junction,QA +ABC_1339,Ina Faichney,26/07/1993,2 Laurel Hill,WEB +ABC_1340,Gael Vennart,26/09/1993,00455 Sunfield Street,SYSTEM +ABC_1341,Charleen Parzis,8/8/1988,5 Macpherson Pass,WEB +ABC_1342,Maryjo Ripsher,17/03/1980,002 Old Shore Plaza,QA +ABC_1343,Lisabeth Wilby,17/12/1980,88 Autumn Leaf Parkway,MOBILE +ABC_1344,Sigvard Durtnal,19/12/1981,4 Texas Point,QA +ABC_1345,Koenraad Zealander,1/10/1984,55 Stoughton Drive,MOBILE +ABC_1346,Sean Osban,12/5/1993,8323 Butterfield Center,QA +ABC_1347,Isac Coster,12/4/1989,0 Utah Road,WEB +ABC_1348,Lenci Assard,5/11/1996,1848 Duke Street,SYSTEM +ABC_1349,Dannie Occleshaw,5/2/1999,285 Cody Road,WEB +ABC_1350,Dayle Chmarny,13/08/1989,516 Heffernan Street,QA +ABC_1351,Lianna Rintoul,6/7/1995,720 Parkside Crossing,WEB +ABC_1352,Carlina Rowena,20/01/1981,9691 Graedel Crossing,SYSTEM +ABC_1353,Eryn McQuarter,6/3/1998,59 Comanche Street,MOBILE +ABC_1354,Van Maleney,5/9/1985,82475 Farwell Point,QA +ABC_1355,Danika Cookley,4/1/1986,8 Beilfuss Court,QA +ABC_1356,Ruggiero Ibbotson,17/01/1982,1 Bunting Park,QA +ABC_1357,Ronald Thom,16/06/1986,167 Lillian Pass,WEB +ABC_1358,Jayme Leggon,4/12/1995,6678 Loeprich Pass,WEB +ABC_1359,Veronica Grange,4/9/1980,338 Annamark Court,SYSTEM +ABC_1360,Oliviero Kington,11/10/1982,55 Farragut Street,MOBILE +ABC_1361,Jorrie Phillp,2/3/1988,753 Fallview Center,SYSTEM +ABC_1362,Melinda Trinbey,16/03/1994,535 Linden Avenue,MOBILE +ABC_1363,Lucas Thebe,16/01/1998,22 Muir Junction,MOBILE +ABC_1364,Case Beney,17/05/1993,46 Fremont Court,ADMIN +ABC_1365,Teri Olyff,16/05/1993,3 Texas Hill,WEB +ABC_1366,Konstantine Fergyson,13/07/1994,100 Talmadge Center,SYSTEM +ABC_1367,Randell Hurl,17/09/1993,981 Hintze Plaza,WEB +ABC_1368,Marietta Irving,27/04/1987,248 Burrows Crossing,WEB +ABC_1369,Berkie Chilton,10/2/1985,5 La Follette Hill,QA +ABC_1370,Rosco Deverille,10/6/1992,022 Donald Drive,WEB +ABC_1371,Brett Coker,18/09/1990,9 Susan Avenue,QA +ABC_1372,Ansel Hanfrey,9/11/1999,386 Hollow Ridge Terrace,WEB +ABC_1373,Wiley Ianelli,20/07/1996,472 Northwestern Park,MOBILE +ABC_1374,Nancie Oxterby,19/02/1993,38367 Londonderry Plaza,QA +ABC_1375,Danna Lamperd,5/7/1990,5540 Caliangt Pass,QA +ABC_1376,Ibrahim Alejo,29/12/1997,6 Clarendon Avenue,QA +ABC_1377,Cristionna Brian,17/08/1992,57255 Mcbride Crossing,QA +ABC_1378,Mile Datte,25/05/1988,506 Lakeland Park,MOBILE +ABC_1379,Adara Blundin,21/06/1993,7 Division Way,QA +ABC_1380,Hetty Pohlak,11/5/1983,861 1st Lane,WEB +ABC_1381,Binni Artharg,10/5/1986,361 Mesta Center,WEB +ABC_1382,Allie Dibbe,30/07/1987,75284 Beilfuss Way,WEB +ABC_1383,Aubert Owers,14/04/1994,5 Mosinee Street,QA +ABC_1384,Jordan Westman,1/12/1992,7935 Iowa Lane,QA +ABC_1385,Jane O'Shavlan,12/9/1995,6861 Hauk Terrace,MOBILE +ABC_1386,Krispin Gyde,20/05/1985,7143 Blaine Hill,MOBILE +ABC_1387,Marcellus Moehle,4/12/1982,29613 Sycamore Junction,MOBILE +ABC_1388,Gilly Droghan,9/8/1981,65 Badeau Junction,SYSTEM +ABC_1389,Cassi Aleksandrikin,6/9/1980,93 Main Plaza,QA +ABC_1390,Marquita Romagosa,23/06/1998,0 Kipling Plaza,QA +ABC_1391,Cordi Gebuhr,20/01/1990,96960 Bunting Alley,MOBILE +ABC_1392,Urban Leavens,19/06/1993,62 Bunker Hill Place,MOBILE +ABC_1393,Darsey Channon,18/07/1997,0 Bayside Crossing,ADMIN +ABC_1394,Bamby Boorman,2/8/1981,788 Duke Junction,SYSTEM +ABC_1395,Hugh Beccero,4/5/1999,6 Heath Street,SYSTEM +ABC_1396,Morgana Mervyn,16/04/1983,31747 Delaware Alley,ADMIN +ABC_1397,Brendis Roake,23/02/1996,712 Cherokee Circle,MOBILE +ABC_1398,Johnna Myrie,12/3/1993,5 Schmedeman Parkway,SYSTEM +ABC_1399,Sonia Larrat,1/9/1985,62041 Redwing Pass,MOBILE +ABC_1400,Rochell Ledekker,16/10/1995,85 Bartelt Junction,SYSTEM +ABC_1401,Belle Duplan,4/8/1983,86 Michigan Park,ADMIN +ABC_1402,Sax Pauly,22/09/1992,638 Jana Crossing,SYSTEM +ABC_1403,Sarette Spofforth,24/08/1980,19 Oak Valley Crossing,SYSTEM +ABC_1404,Riki Battman,21/03/1996,697 Killdeer Point,WEB +ABC_1405,Obediah Hillatt,13/11/1987,86 Gateway Crossing,QA +ABC_1406,Morten Hise,7/11/1994,08320 Killdeer Lane,WEB +ABC_1407,Loretta Whightman,15/05/1997,5 Artisan Circle,WEB +ABC_1408,Shelby Blackborne,14/04/1999,89167 Forest Run Hill,MOBILE +ABC_1409,Gilberto Loffill,5/8/1980,99925 Forest Run Parkway,MOBILE +ABC_1410,Vivia Steely,22/05/1981,83466 Northwestern Crossing,MOBILE +ABC_1411,Dorie Lettice,16/10/1996,8193 American Lane,WEB +ABC_1412,Ozzy Paffitt,28/04/1998,08 Doe Crossing Avenue,MOBILE +ABC_1413,Rozanna Volant,2/4/1984,28 Manley Street,QA +ABC_1414,Kassia Hartil,5/4/1980,63 Starling Hill,WEB +ABC_1415,Forster Hurring,16/09/1993,6115 Moose Junction,WEB +ABC_1416,Kelwin Fonteyne,21/07/1987,03 Mesta Park,QA +ABC_1417,Costanza Redington,6/9/1980,06926 Thierer Drive,MOBILE +ABC_1418,Nichole Baulch,30/06/1990,0 Bobwhite Trail,MOBILE +ABC_1419,Flemming Blower,31/01/1988,73 Ridge Oak Lane,WEB +ABC_1420,Kimmi Finnimore,19/11/1999,5554 Esker Junction,WEB +ABC_1421,Amandy Bethell,30/09/1992,90 Johnson Way,ADMIN +ABC_1422,Polly Lots,13/01/1987,78 Rusk Point,QA +ABC_1423,Viv Gerring,26/12/1981,2 Jenna Street,QA +ABC_1424,Linet Stump,27/03/1995,401 Sauthoff Park,ADMIN +ABC_1425,Alden Burstow,6/10/1987,606 Montana Trail,SYSTEM +ABC_1426,Sherie Groves,20/09/1990,8427 Fremont Lane,ADMIN +ABC_1427,Martin Wittey,16/12/1981,0 Northport Parkway,MOBILE +ABC_1428,Horatius Yakovl,15/08/1993,2 Barnett Street,MOBILE +ABC_1429,Breanne Lempenny,28/03/1982,57587 Vidon Pass,ADMIN +ABC_1430,Sabra Chrismas,10/1/1987,34 Anderson Way,QA +ABC_1431,Bjorn Creffeild,14/03/1994,7 Boyd Parkway,MOBILE +ABC_1432,Aeriel Reihm,16/07/1986,6583 Michigan Way,WEB +ABC_1433,Dino Sclanders,24/08/1980,9 Bartillon Pass,MOBILE +ABC_1434,Krissy Osselton,28/06/1997,2 Basil Way,MOBILE +ABC_1435,Cornelius Imbrey,12/5/1989,67378 Northwestern Drive,SYSTEM +ABC_1436,Jud Coxwell,10/5/1999,159 Brickson Park Junction,QA +ABC_1437,Art Bowden,22/09/1996,03468 Longview Circle,SYSTEM +ABC_1438,Wainwright Van Leijs,9/3/1984,67656 Roth Court,QA +ABC_1439,Yuri Rannald,21/03/1987,4 Lillian Lane,QA +ABC_1440,Berenice Perceval,24/12/1982,587 Little Fleur Court,WEB +ABC_1441,Stevena Huddle,6/11/1981,3769 Pankratz Trail,WEB +ABC_1442,Mendy Doyley,28/06/1999,2 Basil Hill,MOBILE +ABC_1443,Franklin Coupman,10/10/1988,48786 Granby Terrace,WEB +ABC_1444,Devondra Lisimore,30/07/1982,368 South Trail,WEB +ABC_1445,Cassius Applebee,11/2/1985,0012 Tennyson Street,WEB +ABC_1446,Floria Kassidy,27/03/1991,20153 Brentwood Court,MOBILE +ABC_1447,Carey Renon,2/6/1984,211 Butterfield Hill,QA +ABC_1448,Cthrine Jiroutka,8/2/1990,3252 Lotheville Circle,SYSTEM +ABC_1449,Theda Amor,29/05/1993,45 Nelson Junction,SYSTEM +ABC_1450,Ruddy Jackalin,17/05/1987,2280 Norway Maple Park,WEB +ABC_1451,Jacinta Chiverton,6/5/1990,1113 Dahle Point,WEB +ABC_1452,Fenelia Hulmes,30/06/1983,95 Columbus Park,ADMIN +ABC_1453,Chelsy Burless,3/10/1992,4061 Manufacturers Place,MOBILE +ABC_1454,Bailey Fitzmaurice,3/7/1990,580 Tomscot Place,ADMIN +ABC_1455,Lilas O' Donohue,16/03/1984,6 Summer Ridge Place,WEB +ABC_1456,Claudette Blaw,4/4/1997,817 Kings Avenue,WEB +ABC_1457,Elayne Rowlatt,18/05/1985,709 Moose Lane,WEB +ABC_1458,Marcello Swaffield,24/03/1988,88137 Sachs Alley,QA +ABC_1459,Mahala Brevitt,8/2/1998,3 American Hill,SYSTEM +ABC_1460,Dinah Blackaller,17/07/1995,1 Packers Parkway,ADMIN +ABC_1461,Channa Linsay,31/01/1997,1831 Fairfield Point,SYSTEM +ABC_1462,Louisette Gibbie,17/11/1987,976 Calypso Court,QA +ABC_1463,Xenia Fosdick,26/01/1997,66642 Sycamore Circle,ADMIN +ABC_1464,Lisabeth Butterley,4/3/1981,960 Hoepker Trail,SYSTEM +ABC_1465,Saunderson Fortin,9/10/1983,5989 Esch Street,MOBILE +ABC_1466,Corinne Stallebrass,18/05/1987,25228 Paget Place,WEB +ABC_1467,Haven Billing,15/06/1986,615 Melrose Street,ADMIN +ABC_1468,Courtney Favell,19/06/1980,738 Oak Valley Crossing,QA +ABC_1469,Kaia Cortes,7/1/1989,657 Oakridge Trail,MOBILE +ABC_1470,Perkin Oxtaby,1/1/1995,3 Nelson Junction,QA +ABC_1471,Dore Eldrid,1/12/1986,901 Buhler Road,MOBILE +ABC_1472,Twyla Prendeguest,14/01/1983,7 8th Junction,WEB +ABC_1473,Winthrop Cisco,11/6/1992,46586 Rockefeller Way,ADMIN +ABC_1474,Taylor Benoix,30/07/1992,21509 Pierstorff Terrace,MOBILE +ABC_1475,Berke Santo,10/11/1992,49 Birchwood Drive,MOBILE +ABC_1476,Fitz Sharville,20/01/1981,37 Burrows Park,MOBILE +ABC_1477,Gerda Olivella,17/04/1989,9845 Rigney Pass,WEB +ABC_1478,Nat Souley,23/10/1981,10 Kenwood Avenue,SYSTEM +ABC_1479,Mitchel Maddra,29/09/1987,788 Evergreen Crossing,MOBILE +ABC_1480,Henrik Saltsberger,19/10/1994,222 Dawn Court,MOBILE +ABC_1481,Patrizio Tuohy,2/10/1985,345 Claremont Point,WEB +ABC_1482,Sylvia Killock,9/10/1990,033 Coleman Alley,WEB +ABC_1483,Peggy Wannell,6/3/1998,276 Kensington Crossing,QA +ABC_1484,Isabella Berick,2/9/1980,32 Green Alley,WEB +ABC_1485,Melli Connolly,7/5/1998,99 Esch Park,WEB +ABC_1486,Margo Kinchin,23/01/1986,50141 Forest Circle,WEB +ABC_1487,Evangelin Giorio,15/08/1986,300 Steensland Road,WEB +ABC_1488,Saunder Bohling,1/8/1988,83033 Golf Court,QA +ABC_1489,Jakob Quinney,29/06/1996,2792 Blaine Pass,MOBILE +ABC_1490,Korry Youdell,14/10/1996,481 Lerdahl Center,MOBILE +ABC_1491,Rance Turmall,12/2/1991,47 Northland Junction,WEB +ABC_1492,Zelma Allabarton,19/03/1995,7166 Lukken Road,QA +ABC_1493,Liv Pennell,17/01/1986,9 Leroy Circle,WEB +ABC_1494,Kyle Cockin,17/04/1989,32 Rowland Terrace,QA +ABC_1495,Tate Bristoe,21/11/1998,17955 Barby Street,SYSTEM +ABC_1496,Sasha Peach,18/08/1997,627 Leroy Drive,WEB +ABC_1497,Greta Bromley,12/12/1998,93106 Anniversary Trail,QA +ABC_1498,Celeste Slevin,24/01/1984,92553 Brown Point,MOBILE +ABC_1499,Dall Layus,27/07/1991,597 Ryan Way,WEB +ABC_1500,Derrek Lackey,15/02/1984,49 Milwaukee Drive,WEB +ABC_1501,Nyssa Guichard,9/4/1980,3 Sycamore Park,QA +ABC_1502,Ebeneser Nelius,24/07/1980,8 Briar Crest Alley,WEB +ABC_1503,Edik Alywin,1/6/1993,22204 Miller Drive,WEB +ABC_1504,Florina Bride,11/12/1993,042 Sugar Crossing,SYSTEM +ABC_1505,Haskel Dallosso,14/12/1994,513 Marcy Circle,SYSTEM +ABC_1506,Sheffie Featherbie,23/03/1985,34907 Arapahoe Alley,MOBILE +ABC_1507,Micky Kelsell,19/04/1984,2 Ramsey Circle,WEB +ABC_1508,Dunn Eddis,26/04/1981,25993 Grim Alley,MOBILE +ABC_1509,Felisha Borghese,16/02/1999,36130 Elka Circle,WEB +ABC_1510,Rooney Bew,8/9/1993,13495 Sachs Trail,WEB +ABC_1511,Ardelle Brilleman,7/1/1988,6269 Rigney Avenue,WEB +ABC_1512,Arlee Goalby,19/07/1997,0 Cardinal Point,WEB +ABC_1513,Marco Wollen,1/2/1995,3568 Jay Junction,QA +ABC_1514,Percival Cahey,14/04/1993,121 Pepper Wood Lane,WEB +ABC_1515,Dulcie Hourihane,25/06/1980,92 Glacier Hill Terrace,WEB +ABC_1516,Erika Mariotte,1/5/1986,44 Judy Road,QA +ABC_1517,Arda Risbridger,27/06/1999,0 Fair Oaks Plaza,MOBILE +ABC_1518,Anatol Fargher,12/1/1988,4350 Eagan Parkway,SYSTEM +ABC_1519,Andreana Hackey,2/3/1998,4850 Northview Drive,WEB +ABC_1520,Prudence Leander,2/9/1999,8344 Nelson Junction,WEB +ABC_1521,Ramsey Sanpere,12/8/1989,5 Paget Drive,MOBILE +ABC_1522,Celestina Dunford,10/12/1992,52 Garrison Drive,MOBILE +ABC_1523,Giovanna Siddall,28/09/1984,64 Stang Center,SYSTEM +ABC_1524,Darelle Beagan,24/02/1994,7203 Jay Parkway,SYSTEM +ABC_1525,Dania Pirrone,19/10/1998,2506 Pawling Circle,MOBILE +ABC_1526,Katine Crackett,25/07/1991,2936 Debs Parkway,MOBILE +ABC_1527,Adrian Buddock,31/10/1997,936 Anhalt Pass,MOBILE +ABC_1528,Loria Clampin,29/01/1985,8339 Superior Terrace,WEB +ABC_1529,Cathrine Eyree,10/4/1992,75 Ryan Alley,MOBILE +ABC_1530,Colleen Ricardot,24/02/1982,4 Shoshone Court,WEB +ABC_1531,Zollie Attreed,1/12/1980,76242 7th Lane,WEB +ABC_1532,Perren Sextie,9/6/1993,24234 La Follette Drive,QA +ABC_1533,Francois Edmund,27/03/1983,019 Charing Cross Drive,QA +ABC_1534,Wallis Cellier,11/12/1993,36575 Eliot Road,MOBILE +ABC_1535,Odella Hostan,22/04/1993,0050 Anderson Crossing,QA +ABC_1536,Quinta Whebell,1/2/1990,2 Vidon Plaza,WEB +ABC_1537,Normand Barthelme,9/12/1995,74 American Pass,SYSTEM +ABC_1538,Alfie Kensington,20/07/1986,10945 Washington Plaza,SYSTEM +ABC_1539,Salomi Ghidetti,6/11/1987,5063 Northridge Lane,ADMIN +ABC_1540,Sondra Mahaddie,4/5/1982,2701 Evergreen Parkway,QA +ABC_1541,Huntington Tanfield,8/7/1982,91 Hintze Circle,WEB +ABC_1542,Son Lutty,12/3/1995,59 Bowman Junction,WEB +ABC_1543,Wendel Ulyatt,2/9/1999,35 Mayfield Place,WEB +ABC_1544,Christoph Presnell,26/07/1989,07 Tony Way,ADMIN +ABC_1545,Ruthanne Stive,18/03/1991,71287 Maple Wood Alley,MOBILE +ABC_1546,Kial Smethurst,8/3/1995,2 Myrtle Parkway,WEB +ABC_1547,Lamar Huthart,28/04/1984,5 Little Fleur Alley,ADMIN +ABC_1548,Stanislaus Vondrak,6/6/1994,9399 Pierstorff Junction,ADMIN +ABC_1549,Carce Mizzen,10/2/1985,48969 Meadow Valley Point,MOBILE +ABC_1550,Cirilo Merrgen,28/08/1984,8 Sutteridge Junction,MOBILE +ABC_1551,Martita Dowdell,9/11/1993,95 Fieldstone Alley,WEB +ABC_1552,Derry Blannin,13/06/1994,8 Meadow Vale Lane,ADMIN +ABC_1553,Vilma Poundsford,30/08/1990,3693 Golf Place,SYSTEM +ABC_1554,Caryn Jayes,4/12/1982,3 Messerschmidt Alley,QA +ABC_1555,Caesar Killiner,12/5/1989,09371 Sachs Center,QA +ABC_1556,Alisun Temple,12/10/1991,12063 Melody Plaza,QA +ABC_1557,Alys Perrigo,29/03/1981,3930 Riverside Park,SYSTEM +ABC_1558,Cyrillus Dunseath,31/01/1983,874 Forster Trail,MOBILE +ABC_1559,Halli Carder,29/01/1982,88648 Arrowood Place,SYSTEM +ABC_1560,Drew Shemmin,9/9/1985,91583 Garrison Pass,ADMIN +ABC_1561,Rees Ingon,27/08/1990,505 Dexter Point,MOBILE +ABC_1562,Cacilia Doggrell,26/11/1989,67540 Monica Street,WEB +ABC_1563,Brenda Rodda,19/09/1984,447 Granby Street,MOBILE +ABC_1564,Quinn Solomonides,1/9/1992,4 Oak Place,SYSTEM +ABC_1565,Fawn Krishtopaittis,5/1/1992,139 Esker Way,WEB +ABC_1566,Vitoria Braffington,4/5/1988,65660 Hauk Lane,QA +ABC_1567,Robby Bee,19/11/1990,9 Ronald Regan Place,WEB +ABC_1568,Nikolai Serotsky,17/08/1985,80490 Lyons Place,WEB +ABC_1569,Sonya Hurch,22/09/1992,4 Packers Alley,WEB +ABC_1570,Gabbie Thyer,13/04/1989,449 Northview Crossing,WEB +ABC_1571,Dasha Topaz,1/2/1995,5 Anthes Trail,SYSTEM +ABC_1572,Roma Jacques,9/4/1990,6661 Sycamore Lane,WEB +ABC_1573,Rickert Lightbowne,14/04/1981,78020 Mendota Park,MOBILE +ABC_1574,Weidar Einchcombe,26/04/1988,3 American Ash Way,QA +ABC_1575,Thorpe Chewter,16/12/1995,959 Bunting Pass,QA +ABC_1576,Hillie Haycock,21/10/1982,256 Monterey Street,MOBILE +ABC_1577,Dena Dubarry,3/12/1982,7572 Hoepker Alley,ADMIN +ABC_1578,Evaleen Storck,3/1/1986,00 Luster Street,WEB +ABC_1579,Nikolaos Damato,8/3/1987,1649 Little Fleur Place,SYSTEM +ABC_1580,Antin Emby,10/9/1993,02085 Birchwood Road,QA +ABC_1581,Jobie Khomin,19/12/1995,8 Amoth Drive,WEB +ABC_1582,Jori Tofts,8/9/1999,68335 Village Green Pass,WEB +ABC_1583,Lee Atmore,21/05/1990,838 Norway Maple Avenue,ADMIN +ABC_1584,Ernst Mackleden,20/10/1993,9 Northport Road,MOBILE +ABC_1585,Harman Cave,14/02/1980,218 Lotheville Lane,MOBILE +ABC_1586,Sheela Kerwen,19/05/1990,4 Charing Cross Center,WEB +ABC_1587,Marrissa Crummay,26/02/1988,4124 Chinook Place,WEB +ABC_1588,Rose Bomb,4/1/1990,80255 Union Place,WEB +ABC_1589,Myra Zoren,21/08/1995,265 Miller Junction,MOBILE +ABC_1590,Tracie Bidewell,15/10/1985,59 Oriole Pass,SYSTEM +ABC_1591,Kym Forster,6/9/1988,995 Ryan Point,MOBILE +ABC_1592,Shae Andreev,21/06/1995,371 Valley Edge Court,ADMIN +ABC_1593,Franky Passey,21/04/1989,39938 Hudson Terrace,MOBILE +ABC_1594,Allyce Oldall,14/09/1992,79345 Meadow Vale Road,ADMIN +ABC_1595,Stephie Fletcher,8/4/1982,52835 Anthes Court,WEB +ABC_1596,Agnella Salzberger,22/10/1994,17808 Goodland Circle,MOBILE +ABC_1597,Nelie Browning,12/2/1995,212 6th Center,QA +ABC_1598,Angy Martschke,9/4/1987,04881 Dawn Street,MOBILE +ABC_1599,Swen Tuison,30/09/1986,3340 Troy Hill,QA +ABC_1600,Kelsey Spollen,5/8/1994,96 Truax Parkway,QA +ABC_1601,Zahara Quipp,14/06/1980,94 Old Shore Pass,WEB +ABC_1602,Norah Grimsditch,20/02/1989,03 Myrtle Center,WEB +ABC_1603,Malanie Wankel,5/1/1982,9 Hagan Hill,MOBILE +ABC_1604,Albert Dady,30/05/1991,2 Lakeland Alley,MOBILE +ABC_1605,Welch Lindenbluth,6/1/1989,176 Corry Place,WEB +ABC_1606,Rozanne Giblin,15/02/1992,632 Fallview Street,WEB +ABC_1607,Mariette Dybell,2/11/1992,2 Alpine Crossing,WEB +ABC_1608,Jayme Cerie,2/9/1981,6 Old Gate Crossing,WEB +ABC_1609,Staford Kilfoyle,16/03/1982,50 Killdeer Park,WEB +ABC_1610,Bernetta Muscat,5/4/1995,12915 Comanche Alley,WEB +ABC_1611,Wyndham Milliken,16/07/1988,943 Ridge Oak Place,SYSTEM +ABC_1612,Pierson Mannock,24/11/1983,94664 Jackson Place,WEB +ABC_1613,Barbra Benoy,25/11/1987,1054 Lighthouse Bay Park,SYSTEM +ABC_1614,Prescott Benedyktowicz,13/10/1983,8600 Swallow Crossing,WEB +ABC_1615,Amber Chance,20/02/1987,7921 Moose Lane,ADMIN +ABC_1616,Meridith Jessep,1/11/1982,990 Carberry Parkway,MOBILE +ABC_1617,Karine Tonn,13/03/1998,3 Prairie Rose Terrace,ADMIN +ABC_1618,Lari Bastide,1/1/1996,6 Toban Hill,MOBILE +ABC_1619,Shaw Fassbindler,22/07/1997,7756 Elmside Circle,QA +ABC_1620,Niccolo Ganders,19/05/1988,68864 Miller Place,ADMIN +ABC_1621,Portie Eidler,11/3/1981,8 Darwin Avenue,MOBILE +ABC_1622,Agnese Bruniges,19/03/1987,42 Artisan Point,ADMIN +ABC_1623,Dasya Vlasyev,22/10/1991,761 Jana Drive,MOBILE +ABC_1624,Lacey Bruckmann,18/08/1992,94215 Victoria Place,QA +ABC_1625,Alta Cisco,18/06/1997,57363 Anniversary Trail,QA +ABC_1626,Zsazsa Lavrick,11/4/1996,7591 Packers Park,MOBILE +ABC_1627,Mill Woodson,9/3/1986,414 Heffernan Road,WEB +ABC_1628,Amii Figg,9/9/1984,17 Morrow Avenue,ADMIN +ABC_1629,Hall Lamplugh,11/8/1992,1303 Buhler Terrace,MOBILE +ABC_1630,Spenser Venour,4/2/1982,8 Lawn Trail,QA +ABC_1631,Crissy Leidl,12/9/1984,4 Center Center,WEB +ABC_1632,Dniren Exell,14/11/1998,372 Mosinee Avenue,MOBILE +ABC_1633,Briano Sample,28/04/1981,84 Village Green Junction,MOBILE +ABC_1634,Rutter Sweet,4/7/1990,129 Spaight Road,SYSTEM +ABC_1635,Ilysa Wix,27/06/1990,9 Knutson Hill,ADMIN +ABC_1636,Angeline Mummery,23/09/1984,56190 Dapin Junction,MOBILE +ABC_1637,Jessalin Snoxall,14/03/1988,16 Loomis Trail,SYSTEM +ABC_1638,Billi Leet,16/11/1982,30 Eagle Crest Road,MOBILE +ABC_1639,Anselma Nerne,14/02/1989,562 Farmco Avenue,MOBILE +ABC_1640,Regine Joan,3/12/1984,314 Corry Crossing,ADMIN +ABC_1641,Ramon Vasiliev,27/11/1983,5 Algoma Drive,WEB +ABC_1642,Daloris Delbergue,5/7/1980,8 Mendota Junction,QA +ABC_1643,Merna Janew,9/3/1994,9 Coleman Way,QA +ABC_1644,Brendin Guidoni,6/5/1986,66118 Stang Circle,QA +ABC_1645,Abelard Ramsdale,22/03/1996,70 Fieldstone Hill,MOBILE +ABC_1646,Boone Walesby,15/07/1982,0 Huxley Crossing,QA +ABC_1647,Remington Doughartie,6/9/1983,806 Tennessee Circle,QA +ABC_1648,Giovanni Houltham,1/4/1999,4479 Di Loreto Center,MOBILE +ABC_1649,Bambi Kleinerman,28/06/1987,35234 Mandrake Trail,MOBILE +ABC_1650,Alyson Wilber,30/05/1999,7 Valley Edge Circle,QA +ABC_1651,Jehanna Hattrick,15/04/1995,6 Susan Circle,SYSTEM +ABC_1652,Giulia Pabelik,9/9/1982,1 Maple Wood Place,SYSTEM +ABC_1653,Gustavo Barrington,13/12/1999,773 Fair Oaks Point,ADMIN +ABC_1654,Orel Leggin,16/07/1998,0 Bobwhite Plaza,WEB +ABC_1655,Carline Kimble,25/09/1984,50 Colorado Center,MOBILE +ABC_1656,Jakie Dummer,11/6/1980,19841 Thompson Pass,SYSTEM +ABC_1657,Almeta Simonou,30/04/1993,04 Michigan Way,ADMIN +ABC_1658,Wallie Gorioli,6/9/1998,4972 Truax Way,SYSTEM +ABC_1659,Sander Van Weedenburg,31/07/1987,6 Green Ridge Avenue,QA +ABC_1660,Alayne Dakin,2/5/1993,109 Pearson Point,WEB +ABC_1661,Alick Cuardall,20/10/1986,95423 Milwaukee Drive,SYSTEM +ABC_1662,Hastings Kunz,7/5/1987,60048 Karstens Crossing,MOBILE +ABC_1663,Gerrie Woolhouse,10/1/1997,9741 Northridge Plaza,MOBILE +ABC_1664,Ag Radley,13/09/1985,44 Melody Lane,SYSTEM +ABC_1665,Rusty Maliphant,1/7/1987,2 Hoffman Alley,QA +ABC_1666,Michaeline Rigbye,22/11/1981,353 Moland Plaza,ADMIN +ABC_1667,Angie Merrgen,23/11/1984,2993 Lien Trail,WEB +ABC_1668,Kylen Muslim,16/08/1991,82 Warrior Drive,SYSTEM +ABC_1669,Florence Colnet,22/12/1989,38 Hintze Court,MOBILE +ABC_1670,Mohandas Hair,6/1/1984,5026 Evergreen Center,ADMIN +ABC_1671,Alasdair Shepstone,22/05/1980,34 Bowman Point,SYSTEM +ABC_1672,Roze Kiwitz,15/06/1985,5 Schurz Avenue,MOBILE +ABC_1673,Faythe Hindmoor,16/06/1990,42560 Birchwood Drive,WEB +ABC_1674,Jami Tabord,7/10/1996,4668 Maywood Trail,QA +ABC_1675,Ellen Mohun,25/02/1983,421 Blackbird Center,QA +ABC_1676,El Brennan,26/05/1986,8 Shoshone Plaza,WEB +ABC_1677,Cathrine Farnish,11/1/1982,58422 West Parkway,MOBILE +ABC_1678,Elane Bleything,1/5/1995,6299 Grim Crossing,WEB +ABC_1679,Bartram Kitt,10/7/1986,8 Hagan Pass,QA +ABC_1680,Lek Rathmell,14/05/1995,3 Dovetail Road,ADMIN +ABC_1681,Rozanna Plesing,23/10/1988,1 Dorton Way,QA +ABC_1682,Milena Bravington,18/01/1980,58946 Rutledge Hill,QA +ABC_1683,Alic Earie,19/11/1984,84 Marquette Junction,QA +ABC_1684,Bronson Cromarty,23/05/1997,9 Namekagon Pass,WEB +ABC_1685,Bria Southerden,20/05/1982,9 Reinke Road,ADMIN +ABC_1686,Ogdon Ferronel,8/2/1983,2593 Eastwood Court,SYSTEM +ABC_1687,Aloysius Coviello,3/1/1989,37479 Meadow Vale Circle,QA +ABC_1688,Somerset Trunchion,16/11/1995,7494 Dovetail Pass,MOBILE +ABC_1689,Abramo Easton,31/08/1995,321 Sloan Lane,MOBILE +ABC_1690,Dyane Coyle,20/10/1994,18693 East Point,WEB +ABC_1691,Seward O'Mullally,18/01/1985,7295 Spenser Circle,QA +ABC_1692,Christy Bontine,14/05/1982,33900 Summer Ridge Park,QA +ABC_1693,Amos Maffey,5/11/1994,23694 Reinke Way,WEB +ABC_1694,Gard Barefoot,13/02/1990,1 Eliot Junction,MOBILE +ABC_1695,Lynelle Nyssen,28/05/1998,70 Mitchell Way,WEB +ABC_1696,Mariann O' Molan,24/04/1995,73800 Laurel Circle,QA +ABC_1697,Karlan Harbach,15/06/1993,00860 Northland Plaza,WEB +ABC_1698,Rey Knaggs,13/10/1997,96 Harbort Point,WEB +ABC_1699,Bibbye Benmore,16/01/1981,7600 Green Point,MOBILE +ABC_1700,Granger Pirdue,26/12/1995,957 Bartelt Drive,MOBILE +ABC_1701,Legra Celloni,2/2/1991,1 Memorial Plaza,MOBILE +ABC_1702,Kori Lempertz,13/12/1995,902 Hooker Trail,QA +ABC_1703,Rosie Gerdts,13/11/1987,1 Nobel Terrace,WEB +ABC_1704,Koenraad Gartshore,21/06/1988,11780 Bobwhite Pass,WEB +ABC_1705,Amos Wann,12/6/1981,32430 Toban Parkway,SYSTEM +ABC_1706,Staci Orbell,9/1/1988,93 Barnett Junction,SYSTEM +ABC_1707,Lenard McCullagh,23/12/1995,28307 Jenifer Plaza,MOBILE +ABC_1708,Kate Brennans,29/09/1981,1 Buhler Hill,SYSTEM +ABC_1709,Kelci Westney,1/5/1994,89 Brickson Park Alley,MOBILE +ABC_1710,Valenka Nunn,27/12/1992,9230 Fuller Center,MOBILE +ABC_1711,Isa Cowdray,25/06/1997,561 Manitowish Trail,SYSTEM +ABC_1712,Cathe Bendix,8/8/1993,9 Jackson Lane,ADMIN +ABC_1713,Rollins Pyser,4/12/1997,025 Shasta Crossing,MOBILE +ABC_1714,Saraann Matussov,17/04/1989,3516 Arapahoe Pass,WEB +ABC_1715,Adrea Amy,23/04/1993,75 Victoria Parkway,WEB +ABC_1716,Gilli Swettenham,28/10/1996,2 Luster Street,WEB +ABC_1717,Michael Apted,29/03/1980,16430 Schmedeman Parkway,ADMIN +ABC_1718,Malinda Khristyukhin,16/04/1984,0142 Hudson Park,SYSTEM +ABC_1719,Jen Custy,20/10/1982,1134 Moose Park,ADMIN +ABC_1720,Sabine Boyes,17/08/1998,66 Lukken Avenue,QA +ABC_1721,Nester Gronow,10/8/1986,206 Karstens Court,MOBILE +ABC_1722,Dianne Bridgeman,3/3/1990,6123 Lunder Road,QA +ABC_1723,Catarina Ianniello,19/10/1998,19 Rowland Trail,WEB +ABC_1724,Hedvig Raspin,19/01/1993,15 Ryan Court,MOBILE +ABC_1725,Caesar Tute,30/09/1980,17 Heffernan Court,ADMIN +ABC_1726,Wren Zecchii,23/09/1992,10 Londonderry Crossing,SYSTEM +ABC_1727,Gilemette Langtry,12/1/1985,2 Oneill Place,WEB +ABC_1728,Barny Iwanczyk,5/4/1986,55 Cordelia Drive,MOBILE +ABC_1729,Joletta Boliver,26/05/1982,14 Boyd Trail,QA +ABC_1730,Misty Skelton,15/07/1994,3 Kingsford Park,WEB +ABC_1731,Berget Broxton,28/07/1984,7 Oak Hill,SYSTEM +ABC_1732,Emory Stelli,24/05/1995,597 Dorton Drive,MOBILE +ABC_1733,Trev Cheng,2/6/1989,109 Express Parkway,MOBILE +ABC_1734,Harli Quest,18/07/1998,4631 Doe Crossing Avenue,MOBILE +ABC_1735,Tressa Rabbage,11/5/1993,21800 Anthes Crossing,QA +ABC_1736,Milty Henworth,25/10/1996,84698 Ridgeview Circle,MOBILE +ABC_1737,Dwain McElory,4/5/1990,5942 Hauk Junction,WEB +ABC_1738,Mignon Clayworth,10/4/1993,5 Sugar Trail,QA +ABC_1739,Amandi Schindler,30/08/1983,85 Nobel Street,MOBILE +ABC_1740,Lincoln Playhill,10/4/1980,33 Waubesa Avenue,SYSTEM +ABC_1741,Kermy Hagger,11/5/1999,88839 Mallory Center,WEB +ABC_1742,Lorelle Yakubovics,15/10/1998,70 Continental Alley,MOBILE +ABC_1743,Elisa Florio,8/10/1988,522 Valley Edge Parkway,WEB +ABC_1744,Charil Breckell,21/11/1983,2 Artisan Hill,ADMIN +ABC_1745,Daven Banbrigge,3/1/1992,58481 Kings Terrace,WEB +ABC_1746,Cicily Larcombe,20/06/1991,06911 Straubel Plaza,WEB +ABC_1747,Isaac Cortnay,4/2/1985,7864 Oneill Pass,WEB +ABC_1748,Abigail Lornsen,25/04/1993,1 Summerview Center,SYSTEM +ABC_1749,Keane Chaise,4/11/1993,2346 Cody Terrace,ADMIN +ABC_1750,Gustaf Fermor,23/02/1988,2 Shoshone Street,MOBILE +ABC_1751,Ara Roe,23/01/1992,4 Sunbrook Place,WEB +ABC_1752,Charita Hellens,8/5/1992,11205 Florence Parkway,ADMIN +ABC_1753,Eleanore Dubock,5/6/1983,07 Miller Avenue,QA +ABC_1754,Revkah Bateup,4/3/1995,28 Pierstorff Junction,WEB +ABC_1755,Clywd Gobbett,14/09/1996,42 Huxley Point,MOBILE +ABC_1756,Cicely Grinin,12/8/1983,2760 Pierstorff Drive,SYSTEM +ABC_1757,Vita Ebbetts,23/01/1985,07 Packers Drive,MOBILE +ABC_1758,Robbie Forri,22/02/1983,07191 Parkside Crossing,MOBILE +ABC_1759,Lucilia Friett,18/02/1989,5 Continental Junction,SYSTEM +ABC_1760,Bert Dunckley,6/8/1995,30 Charing Cross Road,WEB +ABC_1761,Emylee Devennie,5/8/1991,51725 Evergreen Trail,QA +ABC_1762,Kaylyn Tuson,16/09/1982,774 Schmedeman Court,QA +ABC_1763,Vinita Cromack,26/11/1980,1963 Elmside Plaza,QA +ABC_1764,Deane Twiname,17/05/1985,4782 Texas Plaza,ADMIN +ABC_1765,Cyb Lobell,14/10/1986,7 Jay Crossing,QA +ABC_1766,Mildred Guyet,24/10/1996,07 Ohio Avenue,SYSTEM +ABC_1767,Hendrick McElree,13/09/1981,67770 Lighthouse Bay Court,WEB +ABC_1768,Veronike Mayers,22/03/1980,7 Havey Center,ADMIN +ABC_1769,Malvin Sultana,27/08/1985,8524 North Road,SYSTEM +ABC_1770,Bernette Merredy,8/7/1999,341 Luster Street,MOBILE +ABC_1771,Jedd Couve,6/9/1986,6645 Johnson Parkway,MOBILE +ABC_1772,Jessi Oxtarby,2/7/1992,3782 Oakridge Crossing,MOBILE +ABC_1773,Rosita Doumer,2/2/1991,066 Northland Street,WEB +ABC_1774,Arty Olivetta,1/5/1998,3524 Grover Trail,SYSTEM +ABC_1775,Shanna Aldiss,31/08/1983,42 Crest Line Parkway,MOBILE +ABC_1776,Sebastian Beldan,3/7/1995,0 Manufacturers Lane,SYSTEM +ABC_1777,Udell Friatt,9/12/1981,09 Banding Parkway,QA +ABC_1778,Cecile Lewsley,12/3/1991,44169 Westridge Alley,ADMIN +ABC_1779,Jacquenetta Abelson,18/12/1984,16972 Kropf Circle,MOBILE +ABC_1780,Matelda Madgin,6/11/1980,914 4th Hill,SYSTEM +ABC_1781,Skippy Howick,2/10/1994,2 Goodland Drive,SYSTEM +ABC_1782,Welsh Towe,11/11/1984,681 Clyde Gallagher Pass,MOBILE +ABC_1783,Lane Fayne,27/12/1991,0 Dunning Place,MOBILE +ABC_1784,Berk Batsford,16/01/1982,9 Myrtle Avenue,WEB +ABC_1785,Even Ronnay,28/10/1993,140 Hermina Hill,MOBILE +ABC_1786,Garrek Castles,19/04/1994,2169 Esch Circle,WEB +ABC_1787,Vince Marchi,21/04/1985,62637 American Lane,SYSTEM +ABC_1788,Breanne Penniall,28/12/1980,320 Armistice Hill,ADMIN +ABC_1789,Gwenneth Mahon,22/10/1998,0 Sachs Road,WEB +ABC_1790,Roi Haveline,6/6/1988,8 Kinsman Way,SYSTEM +ABC_1791,Jsandye Dutton,7/9/1994,7 Oneill Place,MOBILE +ABC_1792,Koressa Rance,29/03/1984,14 Veith Place,SYSTEM +ABC_1793,Tallulah Blindmann,9/8/1990,59 Blaine Drive,WEB +ABC_1794,Engelbert O'Kane,19/01/1995,03395 Burrows Park,MOBILE +ABC_1795,Siouxie Burge,8/11/1993,265 Sachtjen Plaza,WEB +ABC_1796,Ladonna Rue,29/10/1992,1399 Talisman Hill,QA +ABC_1797,Quinton Sword,15/10/1997,63996 Oak Center,QA +ABC_1798,Roley Castagna,8/11/1995,22452 Ridgeway Crossing,MOBILE +ABC_1799,Ursuline Moors,2/10/1995,905 Rowland Alley,MOBILE +ABC_1800,Witty Rosser,16/12/1995,19 Nevada Drive,WEB +ABC_1801,Julius Bolino,13/04/1995,7179 Westport Road,MOBILE +ABC_1802,Rudie Mounfield,5/6/1999,0 Delladonna Trail,MOBILE +ABC_1803,Jesse Quilliam,16/03/1994,28355 Debs Circle,QA +ABC_1804,Koenraad Weston,14/05/1999,74880 Debs Circle,QA +ABC_1805,Martin Castana,25/10/1995,6244 Longview Center,WEB +ABC_1806,Kathryn Baldree,27/12/1989,050 Forest Dale Crossing,QA +ABC_1807,Vernice Ollet,23/03/1982,74167 Comanche Point,QA +ABC_1808,Gillan Gong,13/08/1984,0 Lunder Alley,SYSTEM +ABC_1809,Codie Woodwind,13/02/1997,43 Little Fleur Court,SYSTEM +ABC_1810,Abbey Smouten,8/9/1986,2 Laurel Trail,QA +ABC_1811,Alyce Deegin,15/10/1988,46937 Westerfield Park,ADMIN +ABC_1812,Kiley Berg,16/04/1982,626 Gale Way,SYSTEM +ABC_1813,Alexia Timlin,17/02/1981,762 Thierer Junction,MOBILE +ABC_1814,Katie Goudard,6/8/1995,9 Holmberg Trail,WEB +ABC_1815,Elijah Howe,22/07/1985,2 Derek Center,WEB +ABC_1816,Cynde Dewerson,17/05/1986,8 8th Street,ADMIN +ABC_1817,Duncan Culleford,2/8/1996,0 Laurel Court,WEB +ABC_1818,Clarke Cumpsty,15/05/1985,31899 Arrowood Plaza,QA +ABC_1819,Nicholas Scola,28/09/1981,5 Blaine Crossing,MOBILE +ABC_1820,Annaliese Le Cornu,9/11/1986,0075 2nd Parkway,WEB +ABC_1821,Gilberte Halsted,25/09/1999,97 Dayton Plaza,SYSTEM +ABC_1822,Goldie Preshous,2/10/1983,45 Fair Oaks Parkway,MOBILE +ABC_1823,Bili Lainton,26/01/1998,10163 Thackeray Hill,QA +ABC_1824,Dinnie Ginman,18/09/1983,295 Nancy Court,SYSTEM +ABC_1825,Elly Fasset,19/02/1986,3 Mayer Way,MOBILE +ABC_1826,Cecilla Wallbutton,21/06/1991,6343 Helena Terrace,QA +ABC_1827,Blaine Lidgley,15/12/1996,5 Garrison Hill,MOBILE +ABC_1828,Jada Hasling,20/04/1982,1 Barby Pass,MOBILE +ABC_1829,Calli Coaster,19/02/1989,47 Elka Terrace,ADMIN +ABC_1830,Marrissa Darko,2/4/1987,4543 Mcguire Park,MOBILE +ABC_1831,Franny Jizhaki,8/9/1984,88 Westport Point,ADMIN +ABC_1832,Odele Duchenne,18/06/1996,2057 Sutherland Park,QA +ABC_1833,Arte Felstead,29/02/1996,27306 Delaware Way,MOBILE +ABC_1834,Sophey Mathieson,14/02/1989,212 Stone Corner Terrace,MOBILE +ABC_1835,Ferdinanda Tarbet,12/6/1998,2 Hermina Avenue,WEB +ABC_1836,Elsbeth Sarfat,16/08/1989,00180 Elmside Place,SYSTEM +ABC_1837,Jaquelin Masding,30/03/1987,3 Atwood Parkway,ADMIN +ABC_1838,Idette Standering,9/11/1997,7 Hovde Park,WEB +ABC_1839,Brittani Byatt,16/02/1984,85 Goodland Road,MOBILE +ABC_1840,Tracy Bramhill,15/03/1985,36451 Orin Place,WEB +ABC_1841,Sidney Bulcroft,1/6/1993,218 8th Parkway,WEB +ABC_1842,Sawyer Paolo,9/2/1982,98185 Loeprich Park,QA +ABC_1843,Friedrich Norcross,11/2/1984,0 2nd Street,WEB +ABC_1844,Vivyan Hebbes,4/9/1984,775 Mendota Plaza,SYSTEM +ABC_1845,Barbra Grewer,4/9/1995,501 Welch Circle,QA +ABC_1846,Maurise Aguirre,16/12/1990,60 Crescent Oaks Trail,WEB +ABC_1847,Leroi Sueter,1/1/1986,94 Saint Paul Center,SYSTEM +ABC_1848,Ansell Prium,10/12/1995,25580 Hauk Trail,MOBILE +ABC_1849,Vikki Sutherns,25/04/1989,8 La Follette Pass,QA +ABC_1850,Layney Gatlin,4/8/1980,22 Oneill Hill,ADMIN +ABC_1851,Gregoire Bangham,9/3/1988,479 Reinke Lane,ADMIN +ABC_1852,Shepperd Petrelli,19/03/1986,1035 Darwin Place,SYSTEM +ABC_1853,Paulette Jako,16/07/1992,9 Eliot Terrace,SYSTEM +ABC_1854,Clotilda Arnke,2/8/1986,9 Cottonwood Street,WEB +ABC_1855,Jermayne Sheilds,15/11/1987,5577 Fordem Junction,QA +ABC_1856,Hewett Lynthal,29/12/1983,37078 Nancy Lane,WEB +ABC_1857,Sam Ropkins,13/01/1998,697 Beilfuss Road,SYSTEM +ABC_1858,Aristotle Popping,27/04/1980,647 Manufacturers Terrace,QA +ABC_1859,Anabal Wong,25/08/1995,97 Portage Parkway,MOBILE +ABC_1860,Alicia Attoe,31/05/1985,723 Petterle Street,MOBILE +ABC_1861,Berta Matovic,31/05/1996,9 Vermont Crossing,WEB +ABC_1862,Ingamar Callar,3/2/1989,806 Holmberg Circle,MOBILE +ABC_1863,Hastings Venus,2/6/1986,0 Pankratz Plaza,ADMIN +ABC_1864,Edmund Colliford,5/1/1985,506 Valley Edge Way,SYSTEM +ABC_1865,Thain Sendley,7/3/1984,536 Pond Street,SYSTEM +ABC_1866,Alonzo Cleife,10/12/1995,67051 Troy Parkway,MOBILE +ABC_1867,Jenine Cartin,31/08/1996,695 Fisk Point,SYSTEM +ABC_1868,Merna Gobat,28/07/1992,17 Hauk Center,WEB +ABC_1869,Yetty Kattenhorn,18/10/1992,33272 Oneill Road,ADMIN +ABC_1870,Joyce Maurice,15/11/1991,6 Johnson Junction,SYSTEM +ABC_1871,Phelia O'Kennavain,5/12/1987,9252 Waxwing Avenue,MOBILE +ABC_1872,Waldo Sawney,13/06/1982,0698 Hanson Place,WEB +ABC_1873,Rollo Dodshun,2/2/1981,293 Corry Point,ADMIN +ABC_1874,Gladi Meharry,16/06/1999,23 Schiller Parkway,SYSTEM +ABC_1875,Kitty Blum,3/3/1996,0764 Sage Parkway,MOBILE +ABC_1876,Timmy Ryman,6/8/1995,97944 Utah Street,WEB +ABC_1877,Auberon Vicarey,6/12/1982,4 Arkansas Avenue,WEB +ABC_1878,Siana Medina,2/4/1996,088 Laurel Court,MOBILE +ABC_1879,Dorie Ohlsen,1/12/1997,4316 Quincy Drive,WEB +ABC_1880,Yasmin Cuttler,4/7/1990,1 Grayhawk Drive,WEB +ABC_1881,Hollis Kleisle,5/10/1996,5 Forster Point,SYSTEM +ABC_1882,Ilyse Lanston,14/08/1990,8 Forest Run Crossing,MOBILE +ABC_1883,Nissy Tembey,20/10/1983,6 Luster Place,QA +ABC_1884,Gwenette Dundon,23/02/1997,6 Raven Way,MOBILE +ABC_1885,Carlye Stickels,22/11/1991,10 Dovetail Crossing,QA +ABC_1886,Clerc Chumley,9/2/1989,9479 Morning Drive,MOBILE +ABC_1887,Mathilda Mattisssen,17/08/1988,30 Katie Terrace,SYSTEM +ABC_1888,Inga Kelsall,26/07/1992,4486 Summer Ridge Point,WEB +ABC_1889,Orin Creech,8/1/1997,0643 Bashford Hill,SYSTEM +ABC_1890,Anjanette Pethrick,27/10/1987,702 Cherokee Terrace,QA +ABC_1891,Sindee Lammin,25/06/1989,19092 Moulton Park,WEB +ABC_1892,Grange MacIllrick,20/07/1983,4949 Rutledge Parkway,QA +ABC_1893,Tommie Bragginton,1/11/1990,208 Cordelia Point,MOBILE +ABC_1894,Barrie Dell Casa,20/11/1987,5 Duke Point,WEB +ABC_1895,Alexi Cheney,23/01/1982,102 Glendale Trail,QA +ABC_1896,Lisha Fennick,15/07/1993,8649 Surrey Junction,SYSTEM +ABC_1897,Jewell Gallego,30/05/1988,4952 Onsgard Court,SYSTEM +ABC_1898,Marylee Richardson,7/11/1999,9 Cascade Street,WEB +ABC_1899,Roxy Kennaird,30/06/1981,59 Heath Way,WEB +ABC_1900,Matelda Dewdney,4/4/1987,15171 Sutherland Hill,ADMIN +ABC_1901,Robin Thomesson,17/03/1995,13517 Bayside Junction,WEB +ABC_1902,Dion Berston,5/10/1984,3594 Scoville Court,ADMIN +ABC_1903,Albertina Griston,24/10/1981,6 Washington Crossing,WEB +ABC_1904,Beulah Nugent,12/1/1999,242 Mcguire Road,QA +ABC_1905,Thorvald Frackiewicz,18/09/1980,4299 Utah Circle,QA +ABC_1906,Mac Petrusch,28/06/1988,52783 Mockingbird Park,WEB +ABC_1907,Agneta Kollasch,26/03/1992,158 Hagan Terrace,WEB +ABC_1908,Gallard Dow,6/8/1988,0295 Arkansas Parkway,ADMIN +ABC_1909,Nelson Bratchell,18/12/1998,1 Dakota Avenue,SYSTEM +ABC_1910,Darb Brunstan,4/3/1992,6620 Glacier Hill Road,MOBILE +ABC_1911,Clarita Pollendine,23/07/1987,408 Division Lane,ADMIN +ABC_1912,Gasper MacLardie,7/5/1998,6 Raven Way,QA +ABC_1913,Owen Domnick,22/12/1997,05 Carberry Place,QA +ABC_1914,Rheba Torfin,11/1/1987,9595 Vermont Hill,MOBILE +ABC_1915,Jordain Devonish,13/09/1996,0612 Center Plaza,QA +ABC_1916,Delphinia Tuftin,22/09/1985,89 Holmberg Court,WEB +ABC_1917,Gilburt Greenall,19/07/1989,15 Gateway Point,WEB +ABC_1918,Holli Matkin,15/07/1995,5 Jenna Plaza,WEB +ABC_1919,Eva Medcalfe,25/11/1980,44010 Magdeline Pass,QA +ABC_1920,Jaimie Thomerson,16/06/1993,3 Mallory Center,QA +ABC_1921,Delly Doorey,12/7/1994,32 Prairieview Circle,MOBILE +ABC_1922,Arleta Risbridge,17/08/1993,1 Burning Wood Circle,WEB +ABC_1923,Tommi Mews,19/07/1997,1 Dahle Place,QA +ABC_1924,Kerby Vicar,20/10/1997,55 Meadow Vale Alley,WEB +ABC_1925,Calley Waleran,29/04/1982,44 Sloan Plaza,QA +ABC_1926,Elsbeth Ware,26/06/1987,51 Logan Trail,QA +ABC_1927,Willa Ilchuk,17/09/1995,79462 Dovetail Circle,WEB +ABC_1928,Winnie Turneux,15/09/1980,13830 Vermont Crossing,SYSTEM +ABC_1929,Lawry Hellings,12/8/1988,5778 Carey Way,ADMIN +ABC_1930,Brendin Dagleas,5/12/1984,493 Northfield Lane,WEB +ABC_1931,Nikita Purle,28/08/1986,36 Ryan Terrace,MOBILE +ABC_1932,Virge Rilton,24/04/1990,433 Waywood Parkway,SYSTEM +ABC_1933,Amabelle Heberden,16/09/1988,22327 Eliot Road,SYSTEM +ABC_1934,Donica Duddin,5/6/1997,213 Corben Alley,MOBILE +ABC_1935,Anna-maria Rodgier,4/3/1991,699 Valley Edge Crossing,QA +ABC_1936,Thoma Petrolli,2/4/1994,35850 Moose Terrace,ADMIN +ABC_1937,Gareth Broadfoot,28/05/1983,8 Glendale Street,WEB +ABC_1938,Midge Burgill,9/10/1991,26 Nobel Pass,SYSTEM +ABC_1939,Orville Dowrey,16/04/1987,433 Independence Junction,SYSTEM +ABC_1940,Inge Peverell,4/12/1990,35301 Morningstar Hill,SYSTEM +ABC_1941,Ginnie Hammand,3/11/1989,1 Westridge Way,WEB +ABC_1942,Caprice Dell Casa,6/8/1995,8 Upham Park,MOBILE +ABC_1943,Esteban Stapells,2/12/1982,45491 Corben Trail,WEB +ABC_1944,Marylinda Hartzog,23/10/1991,0 Delladonna Trail,WEB +ABC_1945,Xymenes Exley,22/10/1984,53 Knutson Circle,QA +ABC_1946,Rosemary Notton,11/4/1988,2 Summer Ridge Avenue,WEB +ABC_1947,Myrilla Elderfield,7/3/1991,462 Manitowish Center,WEB +ABC_1948,Raphaela Dowsey,10/5/1989,4 Jay Park,WEB +ABC_1949,Gerardo Hawkridge,17/07/1997,0641 Parkside Crossing,ADMIN +ABC_1950,Fernande Troth,13/11/1998,27321 Killdeer Lane,WEB +ABC_1951,Dorise Brammall,26/07/1993,9899 Northridge Point,SYSTEM +ABC_1952,Peri Wastie,17/01/1983,03940 Graedel Place,SYSTEM +ABC_1953,Lammond Tocknell,24/07/1991,147 Dayton Road,ADMIN +ABC_1954,Willamina Tissiman,23/08/1990,12145 7th Drive,MOBILE +ABC_1955,Wallas Towell,5/3/1989,4123 Browning Court,WEB +ABC_1956,Cozmo Dutnall,3/11/1984,7722 Bluestem Crossing,WEB +ABC_1957,Judi Blakeway,19/01/1993,292 Merrick Parkway,ADMIN +ABC_1958,Lisette Duthie,24/05/1996,8 Summer Ridge Point,QA +ABC_1959,Ariela Holcroft,5/1/1990,4191 Elka Street,SYSTEM +ABC_1960,Milli Faudrie,22/12/1987,943 Katie Park,QA +ABC_1961,Waneta Stoves,2/2/1980,738 Dawn Center,MOBILE +ABC_1962,Obidiah Stanbro,4/1/1993,561 Truax Hill,MOBILE +ABC_1963,Jedediah Jansema,22/03/1999,6 Farragut Avenue,WEB +ABC_1964,Margeaux Ducker,19/11/1990,7 Main Point,SYSTEM +ABC_1965,Rosalinde Marchand,5/3/1984,51338 Meadow Ridge Way,WEB +ABC_1966,Ollie Haddock,23/06/1990,6100 Cherokee Court,MOBILE +ABC_1967,Adelina Dayer,29/11/1997,6 Browning Parkway,MOBILE +ABC_1968,Berta Downham,11/3/1998,673 Oriole Street,ADMIN +ABC_1969,Lynna Andover,29/04/1986,66989 International Lane,WEB +ABC_1970,Saxe Frusher,30/11/1990,0821 Mccormick Place,WEB +ABC_1971,Mar Steuhlmeyer,19/03/1992,8 Stephen Park,QA +ABC_1972,Sydney Reasun,27/06/1985,271 Forest Dale Drive,WEB +ABC_1973,Roberta Olle,14/06/1990,4 Kropf Circle,WEB +ABC_1974,Clemmy Gatheridge,6/2/1994,3624 Golden Leaf Park,SYSTEM +ABC_1975,Breanne Sinnocke,2/8/1991,6636 Parkside Court,SYSTEM +ABC_1976,Twyla Lamprecht,21/06/1997,39 Hermina Pass,SYSTEM +ABC_1977,Clarabelle Adhams,26/10/1991,1 Ramsey Terrace,WEB +ABC_1978,Dennison Strickler,26/10/1999,9112 Lyons Drive,MOBILE +ABC_1979,Tommy Midghall,17/10/1998,59848 Clarendon Pass,WEB +ABC_1980,Emmit Flag,7/4/1981,241 Towne Alley,QA +ABC_1981,Phedra Bumpass,10/10/1995,46414 New Castle Plaza,WEB +ABC_1982,Ardine Georgins,18/07/1995,4 Emmet Junction,ADMIN +ABC_1983,Eilis Kirvin,9/12/1981,47 Utah Plaza,WEB +ABC_1984,Eal Field,25/09/1981,67921 Surrey Junction,SYSTEM +ABC_1985,Courtnay Lewington,8/2/1992,1250 Barnett Place,QA +ABC_1986,Toiboid Barby,26/05/1998,5236 Porter Court,MOBILE +ABC_1987,Emilia Brumble,20/07/1999,56 Sommers Trail,QA +ABC_1988,Danila Polglase,27/02/1988,00919 Division Circle,MOBILE +ABC_1989,Brade Dmisek,8/9/1993,45 Westport Park,QA +ABC_1990,Micheil Tracy,16/03/1999,4896 Derek Circle,QA +ABC_1991,Rickie Betjeman,6/4/1992,92 Merchant Drive,MOBILE +ABC_1992,Brittan Hairsnape,15/01/1984,0845 3rd Avenue,WEB +ABC_1993,Ragnar Scotfurth,26/05/1992,478 Little Fleur Crossing,QA +ABC_1994,Alistair Veillard,18/09/1996,59717 Hooker Road,SYSTEM +ABC_1995,Delinda Fitzsymon,3/3/1987,552 Johnson Lane,SYSTEM +ABC_1996,Fionna Ticic,27/11/1982,52530 Hoffman Junction,QA +ABC_1997,Padget MacAnulty,26/06/1998,00 Porter Crossing,ADMIN +ABC_1998,Brigg Lucas,10/4/1998,6 Jenna Circle,QA +ABC_1999,Bobbee Tottie,18/02/1989,4 Bowman Way,WEB +ABC_2000,Gino Pantling,24/03/1982,39627 Vidon Point,WEB +ABC2020_1,Mart Weaving,18/08/1991,60077 Memorial Junction,WEB +ABC2020_2,Jarvis Kime,13/11/1999,8 Everett Pass,QA +ABC2020_3,Wayland Stent,5/6/1990,0166 Columbus Avenue,ADMIN +ABC2020_4,Bruce Lofting,8/2/1986,8 1st Terrace,WEB +ABC2020_5,Marta Dales,28/09/1984,846 Schiller Junction,QA +ABC2020_6,Dana Brandham,16/03/1987,5112 Buhler Park,QA +ABC2020_7,Fax Simonitto,29/03/1998,662 Pankratz Drive,WEB +ABC2020_8,Aile Rossborough,9/3/1992,6 Clyde Gallagher Drive,QA +ABC2020_9,Ros Pol,30/06/1983,953 Manufacturers Plaza,QA +ABC2020_10,Arden Beden,22/05/1993,50 Express Hill,SYSTEM +ABC2020_11,Kinna Christopherson,17/05/1981,72 Springs Center,WEB +ABC2020_12,Dorey Fawlo,30/08/1992,517 Summit Place,WEB +ABC2020_13,Clevey Mendel,11/7/1990,4 Banding Drive,MOBILE +ABC2020_14,Shellysheldon Prescot,23/04/1997,52 3rd Lane,QA +ABC2020_15,Byron Kleiser,26/02/1990,5 South Street,MOBILE +ABC2020_16,Clemmy Cauldwell,20/12/1999,9 Mallory Avenue,MOBILE +ABC2020_17,Jan Wellings,23/07/1994,4621 Gina Road,QA +ABC2020_18,Heidi Blankau,10/3/1997,8 Rowland Junction,MOBILE +ABC2020_19,Rozina Hacking,13/07/1987,0544 Dakota Pass,WEB +ABC2020_20,Janka Worham,11/3/1982,18 Village Court,ADMIN +ABC2020_21,Carolynn Conn,26/08/1989,50 Surrey Alley,QA +ABC2020_22,Asia Byrch,7/6/1983,72332 Fordem Center,SYSTEM +ABC2020_23,Bryanty Headon,23/12/1996,68108 Eggendart Hill,MOBILE +ABC2020_24,Kerianne Cull,11/10/1999,0 Delladonna Circle,ADMIN +ABC2020_25,Tillie Pawelski,29/09/1980,529 Mitchell Terrace,WEB +ABC2020_26,Zorah Laimable,2/4/1999,20987 New Castle Pass,MOBILE +ABC2020_27,Adena MacEnelly,4/1/1987,4 Paget Junction,ADMIN +ABC2020_28,Trista Mayne,25/07/1992,6889 Arizona Terrace,MOBILE +ABC2020_29,Vladamir Culleton,6/1/1997,9 Trailsway Terrace,ADMIN +ABC2020_30,Elane Crombie,15/03/1992,6141 Tennessee Street,ADMIN +ABC2020_31,Paddie Jahnisch,5/6/1987,31443 Morrow Way,WEB +ABC2020_32,Carlie Lipmann,23/07/1993,204 Tomscot Court,SYSTEM +ABC2020_33,Glynda Steventon,1/1/1991,70 Kedzie Crossing,MOBILE +ABC2020_34,Jeannine Ridings,22/01/1989,98 Bayside Point,SYSTEM +ABC2020_35,Elset Lishman,17/09/1985,25 Sugar Drive,WEB +ABC2020_36,Emery Canario,21/12/1993,1866 Mayer Court,MOBILE +ABC2020_37,Dwain Garber,1/4/1982,1 Anhalt Plaza,QA +ABC2020_38,Biddy Macy,20/08/1998,92 Bonner Drive,WEB +ABC2020_39,Lin Curling,26/02/1983,94 Sauthoff Circle,MOBILE +ABC2020_40,Ashby Beaushaw,5/5/1989,39196 Brickson Park Hill,MOBILE +ABC2020_41,Rozina Saddleton,5/9/1990,9799 Sunnyside Place,QA +ABC2020_42,Katharine Seson,4/2/1996,84 7th Trail,QA +ABC2020_43,Delora Matityahu,5/1/1996,7205 Sherman Point,MOBILE +ABC2020_44,Fonzie Ortzen,13/08/1998,2157 Birchwood Plaza,WEB +ABC2020_45,Jecho Gritsunov,31/08/1980,327 Bay Avenue,SYSTEM +ABC2020_46,Christoph Slegg,12/2/1988,18 Eggendart Road,WEB +ABC2020_47,Sid Camilletti,13/03/1985,2497 Fallview Place,ADMIN +ABC2020_48,Donny Gisbye,11/10/1984,5157 La Follette Crossing,ADMIN +ABC2020_49,Lowrance Cockitt,5/8/1981,88514 Vera Circle,MOBILE +ABC2020_50,Harland Flucker,9/3/1999,6 Hooker Point,WEB +ABC2020_51,Blanca Behnke,13/11/1992,646 Corry Avenue,QA +ABC2020_52,Marian Cowderay,14/12/1990,7 Westridge Terrace,QA +ABC2020_53,Terrance Canfield,5/3/1984,24 Surrey Circle,WEB +ABC2020_54,Bette-ann Benko,20/05/1987,706 Dovetail Court,QA +ABC2020_55,Kippy Porteous,19/03/1984,99 Quincy Parkway,ADMIN +ABC2020_56,Angel Genery,26/04/1994,6 Fuller Street,WEB +ABC2020_57,Waite Notley,9/9/1981,17 Pine View Junction,SYSTEM +ABC2020_58,Catlaina Clowney,21/05/1996,1289 Wayridge Crossing,WEB +ABC2020_59,Kassie Wake,11/9/1993,234 Messerschmidt Lane,QA +ABC2020_60,Winfred Faragan,26/03/1984,4505 Starling Trail,WEB +ABC2020_61,Judd Tonkinson,5/8/1993,9 Di Loreto Crossing,MOBILE +ABC2020_62,Dallis Mcwhinney,18/01/1987,707 Laurel Park,WEB +ABC2020_63,Berny Jaumet,11/9/1985,42154 Waubesa Plaza,WEB +ABC2020_64,Timofei Avrahamoff,7/12/1984,55309 Talmadge Place,QA +ABC2020_65,Mordecai Jefford,29/11/1996,47412 Mockingbird Road,WEB +ABC2020_66,Angelika Mum,16/02/1982,9590 Bowman Drive,WEB +ABC2020_67,Vivianne Peel,20/03/1981,857 Eastlawn Park,SYSTEM +ABC2020_68,Jobye Yantsev,5/2/1991,78 Mallard Park,QA +ABC2020_69,Hannie McCoole,28/11/1994,0787 Artisan Trail,MOBILE +ABC2020_70,Evelyn Brimfield,9/7/1995,84 Glacier Hill Drive,QA +ABC2020_71,Ellie Touzey,18/10/1985,4043 Thackeray Trail,WEB +ABC2020_72,Maggy Phizaclea,24/01/1991,2415 Claremont Park,MOBILE +ABC2020_73,Frederik Sitch,4/1/1989,7 Meadow Ridge Drive,QA +ABC2020_74,Zara Ramey,7/1/1997,9 Blue Bill Park Hill,WEB +ABC2020_75,Alfonso Bussetti,12/5/1981,610 Springs Alley,QA +ABC2020_76,Verene Suddell,8/5/1999,812 Sunbrook Center,WEB +ABC2020_77,Yule Eldritt,11/10/1997,432 Michigan Road,MOBILE +ABC2020_78,Tana Lockner,27/04/1993,633 Scofield Center,QA +ABC2020_79,Adeline Mushet,3/8/1982,83107 Oriole Pass,ADMIN +ABC2020_80,Ranice Kiendl,12/2/1981,113 Lakeland Hill,QA +ABC2020_81,Jenna Chasmor,30/07/1999,1 Gerald Plaza,ADMIN +ABC2020_82,Boniface Brownhall,15/02/1994,35252 Hagan Park,MOBILE +ABC2020_83,Matthiew Kaspar,30/12/1983,28468 Fairview Road,QA +ABC2020_84,Corena Heartfield,5/11/1998,64051 Dryden Trail,WEB +ABC2020_85,Charles Paskell,11/9/1980,374 Golden Leaf Park,SYSTEM +ABC2020_86,Christoper Manjin,18/10/1996,816 Myrtle Place,WEB +ABC2020_87,Dorette Stainfield,11/7/1995,54 7th Alley,MOBILE +ABC2020_88,Harlin Scranny,16/05/1984,0 Lyons Alley,QA +ABC2020_89,Dell Saphir,3/1/1998,9 Leroy Park,WEB +ABC2020_90,Antonin Couzens,9/7/1992,6068 Randy Pass,QA +ABC2020_91,Christin Radden,19/05/1985,2315 Killdeer Court,SYSTEM +ABC2020_92,Willow Brandreth,13/12/1990,22600 Laurel Drive,QA +ABC2020_93,Elijah Abramson,27/02/1997,0 Grasskamp Pass,QA +ABC2020_94,Pincus Bartle,18/02/1991,46623 Raven Road,QA +ABC2020_95,Irina Sarfati,25/06/1992,5 Novick Plaza,QA +ABC2020_96,Walsh Hadleigh,9/11/1983,3 Forest Run Trail,SYSTEM +ABC2020_97,Willamina Lyles,2/2/1982,460 Sage Avenue,QA +ABC2020_98,Cordie Millard,13/10/1994,077 Schurz Street,QA +ABC2020_99,Lanni Galvin,10/2/1989,41 Beilfuss Circle,SYSTEM +ABC2020_100,Connie Cleere,2/10/1990,2368 Helena Road,WEB +ABC2020_101,Kassia Gisburn,22/06/1985,78471 Brown Parkway,QA +ABC2020_102,Clo Kenen,15/09/1990,3 Crownhardt Plaza,QA +ABC2020_103,Elfreda Daniele,21/11/1983,60784 Morning Pass,SYSTEM +ABC2020_104,Riki Carrabott,31/08/1981,37 Kipling Way,WEB +ABC2020_105,Gerda Snasdell,25/12/1992,551 Jenifer Alley,ADMIN +ABC2020_106,Mariann Wheldon,24/08/1982,736 Magdeline Trail,SYSTEM +ABC2020_107,Brigg Orteau,30/07/1991,2 Lillian Court,SYSTEM +ABC2020_108,Joella Hutchcraft,5/3/1991,540 Shoshone Trail,MOBILE +ABC2020_109,Luisa Tolfrey,26/07/1995,6 Thompson Lane,WEB +ABC2020_110,Nan Foulds,11/4/1991,3015 Cherokee Place,MOBILE +ABC2020_111,Beitris Roggerone,1/7/1983,03080 Monica Court,WEB +ABC2020_112,Martelle Astridge,7/2/1999,810 Russell Plaza,SYSTEM +ABC2020_113,Dreddy Sambrook,4/11/1986,79 Acker Hill,QA +ABC2020_114,Agatha Gyenes,29/10/1993,4194 Warner Trail,MOBILE +ABC2020_115,Clayborn McLice,9/10/1982,2702 Miller Street,ADMIN +ABC2020_116,Kynthia Gallally,3/8/1986,5 Pennsylvania Parkway,SYSTEM +ABC2020_117,Lilli Stockow,2/4/1982,21 Ridge Oak Way,QA +ABC2020_118,Deerdre Groll,5/12/1994,899 Meadow Vale Circle,SYSTEM +ABC2020_119,Lilllie Lezemere,14/10/1992,096 Clove Way,WEB +ABC2020_120,Hanan Maior,16/02/1998,2 Fairfield Street,WEB +ABC2020_121,Fonz Scrimgeour,24/11/1987,8 Anthes Center,MOBILE +ABC2020_122,Euphemia Parsell,19/07/1996,5 Sundown Road,WEB +ABC2020_123,Teodorico Dukesbury,13/03/1983,9 Helena Lane,WEB +ABC2020_124,Auria Gradon,1/10/1991,9 Kinsman Park,SYSTEM +ABC2020_125,Sheelah Androsik,27/04/1993,5914 Hintze Alley,SYSTEM +ABC2020_126,Jonah Tinsey,22/08/1987,29 Brown Park,QA +ABC2020_127,Hercules Tunnicliffe,28/03/1995,6 Service Hill,WEB +ABC2020_128,Loralie Shall,28/08/1997,09789 Sloan Drive,MOBILE +ABC2020_129,Levey Pady,21/11/1988,476 Westridge Avenue,MOBILE +ABC2020_130,Tim Simacek,3/2/1983,57507 Debra Court,ADMIN +ABC2020_131,Kelli Gowling,21/10/1982,067 Lillian Pass,ADMIN +ABC2020_132,Dacey Powlett,12/3/1994,19 Valley Edge Parkway,SYSTEM +ABC2020_133,Nealson Lammert,3/2/1980,25 Caliangt Drive,QA +ABC2020_134,Andy Fourman,20/07/1981,1 Forest Plaza,MOBILE +ABC2020_135,Clevey Moine,11/5/1993,027 Bunting Court,WEB +ABC2020_136,Dalila Sillitoe,30/11/1994,272 Shasta Circle,WEB +ABC2020_137,Eudora Powling,14/02/1995,8937 Graceland Hill,QA +ABC2020_138,Kaylil Coney,3/9/1996,599 Continental Park,QA +ABC2020_139,Iago Justham,9/5/1996,26 Oneill Place,SYSTEM +ABC2020_140,Salomo Neissen,25/02/1993,0 Eggendart Lane,WEB +ABC2020_141,Troy Justham,31/01/1989,883 Twin Pines Junction,QA +ABC2020_142,Mischa Crann,6/1/1987,5660 Artisan Point,MOBILE +ABC2020_143,Chelsie Cluet,17/02/1993,6933 Doe Crossing Hill,QA +ABC2020_144,Meta Cordaroy,7/10/1988,7 Luster Way,QA +ABC2020_145,Maxim Boone,7/11/1990,6420 Morrow Trail,ADMIN +ABC2020_146,Kerby Barnwall,25/03/1982,17311 Quincy Center,SYSTEM +ABC2020_147,Jaimie Cassley,8/1/1993,0 Starling Hill,WEB +ABC2020_148,Jarad Dreinan,5/4/1986,827 Buhler Alley,QA +ABC2020_149,Fanni Renad,10/11/1981,3 Derek Park,WEB +ABC2020_150,Rose Tidcomb,16/07/1994,4 Kensington Trail,WEB +ABC2020_151,Aharon Battrum,25/12/1980,25 Vermont Point,QA +ABC2020_152,Barrett Speed,14/10/1991,9 Rusk Hill,SYSTEM +ABC2020_153,Bryanty Brisse,3/12/1994,36 Farragut Street,WEB +ABC2020_154,Regan Rocca,28/11/1984,071 Crest Line Avenue,QA +ABC2020_155,Patton Jackways,21/08/1983,62223 Kedzie Parkway,WEB +ABC2020_156,Madelaine Yaus,6/2/1991,20876 Fairview Place,MOBILE +ABC2020_157,Eleanora Elstob,3/9/1996,0 Bowman Terrace,WEB +ABC2020_158,Ange Storton,5/9/1996,6632 Victoria Hill,WEB +ABC2020_159,Leonora Eastment,24/04/1991,59437 Birchwood Drive,QA +ABC2020_160,Orelee Caesman,2/8/1998,99360 Manufacturers Circle,MOBILE +ABC2020_161,Gregorius Tudge,11/10/1999,7 Maple Road,QA +ABC2020_162,Cate Doohey,5/10/1980,892 Burning Wood Terrace,WEB +ABC2020_163,Gusella Yeoland,20/03/1985,762 Lakeland Crossing,WEB +ABC2020_164,Tamra Feather,17/08/1984,0 Merrick Pass,MOBILE +ABC2020_165,Dasie Laffan,29/04/1991,918 Pearson Road,ADMIN +ABC2020_166,Cybil Sprowle,15/02/1994,2 Bluejay Circle,WEB +ABC2020_167,Ramonda Fielder,13/07/1989,12621 Northfield Court,SYSTEM +ABC2020_168,Olenolin Mardall,18/05/1990,95717 North Court,WEB +ABC2020_169,Neron Scupham,30/04/1990,4 Coolidge Drive,MOBILE +ABC2020_170,Ania Fanton,6/2/1992,2 Schlimgen Trail,WEB +ABC2020_171,Lorrie Coupland,10/5/1992,0 Little Fleur Place,SYSTEM +ABC2020_172,Cassey Skace,27/11/1994,52 Gulseth Drive,WEB +ABC2020_173,Carlin McGowan,30/10/1988,58610 Bultman Alley,SYSTEM +ABC2020_174,Woody Vasic,26/10/1999,919 Steensland Way,SYSTEM +ABC2020_175,York Deehan,22/11/1987,60344 Aberg Hill,QA +ABC2020_176,Rosy Alyokhin,28/02/1985,977 Waxwing Drive,SYSTEM +ABC2020_177,Denys Blandamore,20/01/1982,0732 Roth Drive,SYSTEM +ABC2020_178,Nani Bickerdyke,4/12/1989,49 Tennyson Hill,WEB +ABC2020_179,Yasmin Keysall,21/03/1991,96454 Towne Alley,QA +ABC2020_180,Franciska De Laci,11/1/1996,2 Clemons Circle,MOBILE +ABC2020_181,Anderson Philps,28/06/1990,94658 Leroy Avenue,WEB +ABC2020_182,Brennan Blunden,27/03/1995,25 Sheridan Hill,WEB +ABC2020_183,Caspar Drogan,10/7/1984,32962 Rigney Terrace,WEB +ABC2020_184,Donnajean Ropcke,17/02/1995,327 Orin Way,MOBILE +ABC2020_185,Marcille Blyden,12/5/1988,00 Eliot Street,ADMIN +ABC2020_186,Danya Lamden,13/08/1990,09 Melby Road,SYSTEM +ABC2020_187,Juliet Renault,5/12/1986,4492 Dorton Center,WEB +ABC2020_188,Craggie Thaller,25/07/1988,13 Gateway Parkway,MOBILE +ABC2020_189,Ursa Jurkowski,23/11/1987,78 Gulseth Plaza,QA +ABC2020_190,Phineas Scintsbury,7/11/1992,22 Mockingbird Circle,QA +ABC2020_191,Ravid Castelluzzi,27/01/1984,2327 Leroy Center,QA +ABC2020_192,Normie Jaegar,28/06/1996,31354 1st Alley,QA +ABC2020_193,Ozzy Huddart,27/01/1984,1 Mosinee Street,SYSTEM +ABC2020_194,Rosita Danielkiewicz,9/1/1982,08860 Trailsway Center,WEB +ABC2020_195,Nikoletta Filde,3/5/1988,6 Erie Point,MOBILE +ABC2020_196,Roda Panons,21/03/1980,58 Swallow Trail,QA +ABC2020_197,Joyce Woodwin,15/06/1981,5 Loomis Drive,QA +ABC2020_198,Craig MacMenamy,5/12/1988,68 Rowland Center,SYSTEM +ABC2020_199,Shellie Buckland,12/12/1980,80 Hanover Way,MOBILE +ABC2020_200,Katherine Porrett,7/2/1991,33 Hermina Way,ADMIN +ABC2020_201,Yuma Barukh,29/10/1988,0 Blaine Avenue,SYSTEM +ABC2020_202,Buddie Simonard,14/12/1990,610 Anzinger Crossing,WEB +ABC2020_203,Lanette Cossey,2/1/1996,7327 Warrior Crossing,ADMIN +ABC2020_204,Eddie Eagleton,27/05/1999,3413 Brickson Park Terrace,WEB +ABC2020_205,Noble O'Sheeryne,29/03/1991,7945 Eastwood Hill,WEB +ABC2020_206,Duff Gronow,12/4/1991,09 Anthes Drive,SYSTEM +ABC2020_207,Sheba Alvarado,21/05/1980,3 Mifflin Pass,ADMIN +ABC2020_208,Marve Paffitt,18/02/1999,47255 Marcy Road,SYSTEM +ABC2020_209,Mollie Rounce,23/06/1996,93303 Arrowood Parkway,MOBILE +ABC2020_210,Creighton O'Griffin,7/4/1991,6 Westerfield Terrace,MOBILE +ABC2020_211,Woodie Gullyes,8/3/1987,8 Homewood Circle,SYSTEM +ABC2020_212,Modesta Danes,29/12/1989,08 Tennessee Terrace,QA +ABC2020_213,Prescott Di Maria,13/02/1990,722 Fordem Avenue,SYSTEM +ABC2020_214,Benyamin Kelwick,9/1/1992,08 Carioca Crossing,WEB +ABC2020_215,Delmor Demange,15/03/1985,56 Arkansas Crossing,WEB +ABC2020_216,Stern Crumbleholme,19/02/1982,0016 7th Center,WEB +ABC2020_217,Crissy Mozzini,28/05/1983,550 Fordem Street,SYSTEM +ABC2020_218,Gianna Dugood,5/11/1985,59 Westerfield Center,MOBILE +ABC2020_219,Russell Snuggs,23/08/1990,8 Aberg Alley,WEB +ABC2020_220,Barry Duchatel,18/07/1980,70283 Linden Drive,ADMIN +ABC2020_221,Geoffry Maryon,11/10/1980,94601 Alpine Parkway,SYSTEM +ABC2020_222,Barrie Scatchar,29/10/1980,886 Schlimgen Street,ADMIN +ABC2020_223,Roselle Drinkel,18/08/1984,97010 Caliangt Place,WEB +ABC2020_224,Eldin Bugler,22/10/1985,08970 Ramsey Center,MOBILE +ABC2020_225,Caldwell D'Arrigo,15/06/1982,2 Memorial Place,SYSTEM +ABC2020_226,Alfie Doctor,24/04/1982,85763 Sunnyside Hill,SYSTEM +ABC2020_227,Sandra Quarton,3/11/1996,4 Ruskin Lane,WEB +ABC2020_228,Theobald Branton,16/06/1982,7 Nevada Alley,ADMIN +ABC2020_229,Heda Skerritt,10/9/1986,2827 American Ash Park,SYSTEM +ABC2020_230,Lucila Braithwaite,18/10/1994,9 Mesta Road,WEB +ABC2020_231,Zorana Willeson,6/12/1999,58 Grasskamp Way,MOBILE +ABC2020_232,Gaylor Aland,11/9/1980,3 Homewood Place,WEB +ABC2020_233,Merry McQuorkell,2/5/1992,564 Lunder Hill,MOBILE +ABC2020_234,Daveen Izzett,4/11/1997,7 Myrtle Hill,MOBILE +ABC2020_235,Alvinia Vigne,9/9/1998,12 6th Pass,QA +ABC2020_236,Dorie Beecham,1/11/1999,6173 Di Loreto Circle,WEB +ABC2020_237,Mickie Folder,17/10/1989,477 David Crossing,QA +ABC2020_238,Merilyn Marien,3/9/1993,2 Lillian Terrace,MOBILE +ABC2020_239,Olivia Christon,15/09/1981,7444 Shelley Court,ADMIN +ABC2020_240,Dory Cisneros,11/12/1996,1188 Moulton Crossing,WEB +ABC2020_241,Fulvia MacMeanma,19/02/1998,10 Fieldstone Park,SYSTEM +ABC2020_242,Lanie Lithcow,8/2/1987,3243 Westridge Drive,ADMIN +ABC2020_243,Gabbie Poulsom,8/1/1981,802 Fremont Trail,WEB +ABC2020_244,Araldo Fisk,12/10/1990,469 Raven Park,WEB +ABC2020_245,Tildie Beacham,5/4/1997,59 Superior Parkway,ADMIN +ABC2020_246,Merilee Moyse,23/03/1990,1 Bluestem Plaza,QA +ABC2020_247,Aindrea Evison,14/07/1998,2223 Kensington Court,SYSTEM +ABC2020_248,Shaine Rosekilly,15/09/1996,2515 Oxford Alley,QA +ABC2020_249,Kissie Morrish,24/05/1986,45 Wayridge Park,QA +ABC2020_250,Lucias Portman,17/01/1989,69 Nova Road,QA +ABC2020_251,Emylee Dennidge,29/12/1995,37998 Aberg Crossing,WEB +ABC2020_252,Andria McCaighey,4/3/1995,2 Mesta Terrace,MOBILE +ABC2020_253,Tommi McKearnen,25/07/1987,9294 Kennedy Center,WEB +ABC2020_254,Bryn Steinham,5/11/1992,5819 Sutherland Plaza,MOBILE +ABC2020_255,Basile MacAless,21/11/1983,43 Miller Pass,WEB +ABC2020_256,Gerhard Hamsher,16/05/1982,169 Kings Junction,WEB +ABC2020_257,Maison Kittless,2/11/1987,613 Mayfield Terrace,QA +ABC2020_258,Kylynn Jados,6/4/1999,6673 Center Terrace,ADMIN +ABC2020_259,Barbette McCloud,7/5/1997,806 Grover Junction,MOBILE +ABC2020_260,Nanine Garza,19/11/1990,18 Basil Way,ADMIN +ABC2020_261,Parrnell Slessar,14/08/1999,20 Transport Lane,ADMIN +ABC2020_262,Willabella Willmetts,16/12/1980,2 Bultman Hill,SYSTEM +ABC2020_263,Hugh Peinke,3/12/1993,7 7th Road,QA +ABC2020_264,Athena Ellershaw,13/12/1987,27 Hermina Way,QA +ABC2020_265,Zabrina Sharper,29/07/1986,485 Kropf Crossing,MOBILE +ABC2020_266,Easter Gusney,6/4/1984,51320 Vermont Court,QA +ABC2020_267,Ermina Hayball,7/3/1985,23947 Bartillon Point,ADMIN +ABC2020_268,Madelle McTague,16/04/1988,310 American Terrace,SYSTEM +ABC2020_269,Adel De Mitris,19/03/1996,2 Springs Hill,SYSTEM +ABC2020_270,Vic Klarzynski,28/08/1999,4 Meadow Vale Point,MOBILE +ABC2020_271,Talbot Wilkins,29/03/1991,7 Redwing Road,SYSTEM +ABC2020_272,Rodger Gaspero,3/12/1997,80 Park Meadow Court,MOBILE +ABC2020_273,Vaclav Smallsman,7/8/1999,419 Merrick Avenue,QA +ABC2020_274,Phillipp Clarabut,16/03/1990,20 Delaware Circle,SYSTEM +ABC2020_275,Myrna Celler,5/8/1989,1 Sherman Avenue,QA +ABC2020_276,Kristy Morecomb,23/12/1987,86421 Parkside Crossing,WEB +ABC2020_277,Claudie Heyns,11/6/1999,03591 Golf View Terrace,WEB +ABC2020_278,Esdras O'Heffernan,24/11/1997,501 Scofield Terrace,MOBILE +ABC2020_279,Cointon Itzcovich,28/11/1985,4 Mosinee Crossing,WEB +ABC2020_280,Brandy Yankov,31/07/1994,91 School Lane,SYSTEM +ABC2020_281,Jamey Christopherson,7/3/1992,80492 Glendale Road,QA +ABC2020_282,Austin Goldman,18/10/1991,1076 Sommers Avenue,QA +ABC2020_283,Nicolai Tumpane,19/06/1995,539 Corry Road,QA +ABC2020_284,Edgar Gaitone,27/09/1990,69060 Grim Road,MOBILE +ABC2020_285,Glenn Yair,15/05/1984,528 Northport Way,SYSTEM +ABC2020_286,Cherrita Burgot,1/9/1998,86725 Springview Drive,WEB +ABC2020_287,Garwood Thomlinson,7/10/1994,114 Mosinee Hill,WEB +ABC2020_288,Kizzie Linguard,26/12/1996,4 Sherman Pass,QA +ABC2020_289,Ferne Cornils,9/6/1990,75 Manufacturers Junction,ADMIN +ABC2020_290,Addi Galloway,11/8/1983,83487 Stone Corner Road,WEB +ABC2020_291,Amye Sissland,28/12/1994,60280 Melvin Lane,WEB +ABC2020_292,Gerianna Chanter,21/07/1998,9317 Farmco Point,MOBILE +ABC2020_293,Addia Casburn,25/07/1986,759 Del Sol Trail,WEB +ABC2020_294,Dorthea Tubbles,20/10/1997,910 Schiller Street,QA +ABC2020_295,Cesya Doget,9/5/1994,548 Namekagon Point,WEB +ABC2020_296,Flss Glenny,12/5/1981,436 Sutteridge Park,WEB +ABC2020_297,Feodora Boorn,21/01/1998,3479 Forest Drive,SYSTEM +ABC2020_298,Eyde Shillan,18/11/1990,8 Lawn Center,WEB +ABC2020_299,Olimpia Gilcrist,3/11/1995,150 Blackbird Center,MOBILE +ABC2020_300,Kaleena Canby,1/8/1983,608 Sunnyside Place,MOBILE +ABC2020_301,Ardelis Feria,29/03/1994,301 Dapin Drive,WEB +ABC2020_302,Olly Derycot,21/02/1997,3340 Morning Junction,WEB +ABC2020_303,May McGinnis,21/06/1982,0291 Village Green Park,QA +ABC2020_304,Erroll Momford,12/4/1986,09498 Stone Corner Avenue,MOBILE +ABC2020_305,Herman Murfin,6/2/1983,51269 Gerald Crossing,SYSTEM +ABC2020_306,Elayne Gooding,19/07/1997,874 Iowa Crossing,WEB +ABC2020_307,Daffy Brogi,25/09/1986,71 Union Drive,MOBILE +ABC2020_308,Susi Burt,18/11/1982,4819 Armistice Point,SYSTEM +ABC2020_309,Alwyn Scolts,3/10/1996,81386 Clarendon Point,ADMIN +ABC2020_310,Antone Compson,27/03/1982,13 Center Terrace,QA +ABC2020_311,Jory Grundey,11/9/1998,27 Brickson Park Park,SYSTEM +ABC2020_312,Emlen Bras,22/01/1999,26596 Dorton Point,ADMIN +ABC2020_313,Levi Mitie,9/3/1986,50 Thierer Center,WEB +ABC2020_314,Blake Coldwell,19/12/1990,7793 Bayside Avenue,WEB +ABC2020_315,Heall Thying,13/04/1995,79 Red Cloud Center,WEB +ABC2020_316,Leon Bolgar,22/02/1984,9 Nevada Hill,SYSTEM +ABC2020_317,Si Howsden,3/4/1989,5 Golf View Terrace,SYSTEM +ABC2020_318,Minni Redsell,1/8/1983,8382 Roxbury Circle,SYSTEM +ABC2020_319,Hazel Charke,27/03/1997,0 Shoshone Trail,QA +ABC2020_320,Gertrudis Ludron,12/7/1998,78893 Hovde Center,WEB +ABC2020_321,Boot Risley,30/05/1994,8764 Knutson Avenue,WEB +ABC2020_322,Grace Keaveney,11/3/1989,3 Caliangt Center,WEB +ABC2020_323,Enriqueta Garrold,13/11/1984,090 Sachs Court,SYSTEM +ABC2020_324,Terrie Pittle,27/12/1986,99991 Kropf Terrace,WEB +ABC2020_325,Algernon Phlippsen,17/10/1990,86923 Norway Maple Drive,WEB +ABC2020_326,Lucilia Stott,4/4/1990,3 Sage Crossing,WEB +ABC2020_327,Raina Sewill,16/09/1987,108 Larry Lane,WEB +ABC2020_328,Caesar Cadell,11/2/1984,1 Park Meadow Park,WEB +ABC2020_329,Rhodia Mullender,30/01/1985,4398 Evergreen Park,ADMIN +ABC2020_330,Zsa zsa Hennemann,4/7/1985,5 Longview Road,WEB +ABC2020_331,Griz Droghan,1/6/1993,220 Granby Way,WEB +ABC2020_332,Vinni Darnell,17/09/1995,0622 Lunder Trail,QA +ABC2020_333,Ailina Rimell,19/09/1985,99 Hazelcrest Plaza,SYSTEM +ABC2020_334,Merry Rosenqvist,26/10/1990,2 Sutherland Avenue,MOBILE +ABC2020_335,Carma Crackel,4/7/1989,6424 Buell Trail,MOBILE +ABC2020_336,Tulley Eard,4/2/1980,77255 Corben Pass,MOBILE +ABC2020_337,Diarmid Hasted,12/6/1984,30735 Comanche Center,WEB +ABC2020_338,Dionysus Grimbaldeston,24/09/1984,795 Chinook Street,SYSTEM +ABC2020_339,Chastity Itzhayek,23/07/1996,12806 Prentice Trail,WEB +ABC2020_340,Dougy Fragino,3/11/1997,2592 Myrtle Road,WEB +ABC2020_341,Jesselyn Lewer,6/6/1985,42910 Moulton Junction,WEB +ABC2020_342,Evelyn Stendell,12/9/1984,59623 Claremont Park,ADMIN +ABC2020_343,Lucky Barnshaw,1/12/1989,8276 John Wall Center,SYSTEM +ABC2020_344,Nicky Punt,28/06/1988,03 Eastlawn Circle,SYSTEM +ABC2020_345,Dougy Jankovsky,24/02/1989,1 Southridge Junction,SYSTEM +ABC2020_346,Quintina Gibbett,22/03/1992,840 Forest Plaza,WEB +ABC2020_347,Maia Boecke,14/09/1990,538 6th Terrace,WEB +ABC2020_348,Ofella Wanek,20/07/1990,329 Hazelcrest Drive,QA +ABC2020_349,Neel McLachlan,27/01/1992,31668 Bartelt Center,WEB +ABC2020_350,Sari Markwick,28/01/1997,4 Dovetail Avenue,WEB +ABC2020_351,Charmion Annear,11/1/1991,875 Huxley Place,MOBILE +ABC2020_352,Lura McCarly,18/03/1991,6 Talisman Road,WEB +ABC2020_353,Andris Tadlow,26/10/1995,850 Meadow Valley Trail,MOBILE +ABC2020_354,Welby Harragin,24/10/1984,74627 Michigan Lane,WEB +ABC2020_355,Courtney Godilington,4/4/1984,52 Fuller Point,QA +ABC2020_356,Goober Gogay,23/10/1990,43 Dixon Court,WEB +ABC2020_357,Lee Surgey,2/6/1980,0 Green Court,QA +ABC2020_358,Danell O'Cleary,20/08/1990,70696 Arrowood Hill,WEB +ABC2020_359,Chilton Penquet,12/3/1991,652 Homewood Point,WEB +ABC2020_360,Lisa Stiffkins,31/05/1996,33 Nevada Pass,QA +ABC2020_361,Ivan de Broke,11/9/1990,44551 John Wall Parkway,MOBILE +ABC2020_362,Berti Castagneri,28/05/1992,5529 International Drive,WEB +ABC2020_363,Theda Eriksson,26/12/1982,558 Farwell Court,QA +ABC2020_364,Vlad Iddison,15/05/1988,657 Stephen Crossing,SYSTEM +ABC2020_365,Wain Ralfe,13/04/1994,03 Donald Circle,QA +ABC2020_366,Alejoa Thyng,25/11/1984,93 Dapin Crossing,WEB +ABC2020_367,Petronia Blay,18/06/1981,690 Meadow Valley Alley,WEB +ABC2020_368,Ronnie Baudic,1/8/1986,05 Hanson Road,QA +ABC2020_369,Leena Sill,18/02/1996,98500 Elgar Center,MOBILE +ABC2020_370,Myrah Burg,15/03/1990,45 Myrtle Circle,ADMIN +ABC2020_371,Ulric Fewster,12/1/1982,498 Lakeland Junction,MOBILE +ABC2020_372,Berky Bredee,31/01/1981,73009 Colorado Hill,QA +ABC2020_373,Bowie Baldam,5/12/1985,30 Michigan Junction,WEB +ABC2020_374,Cassondra Heiner,29/12/1995,705 Village Road,ADMIN +ABC2020_375,Lazare Gillbee,27/12/1982,698 Marcy Street,WEB +ABC2020_376,Sharla Havenhand,30/10/1993,4 Lighthouse Bay Road,MOBILE +ABC2020_377,Silvie Tweddell,19/01/1998,8 Derek Terrace,WEB +ABC2020_378,Tawsha De Freyne,14/05/1988,42 Vermont Trail,WEB +ABC2020_379,Karil Tuffey,16/02/1996,13 Rowland Trail,MOBILE +ABC2020_380,Myra O'Sheerin,14/12/1987,679 Drewry Crossing,QA +ABC2020_381,Francine Keneford,1/1/1999,206 Cherokee Terrace,WEB +ABC2020_382,Garold Woolston,25/03/1983,3738 Eastlawn Road,QA +ABC2020_383,Bendicty Rosterne,24/03/1992,4 4th Point,WEB +ABC2020_384,Broddie Phillis,28/05/1992,11 Linden Hill,SYSTEM +ABC2020_385,Maryl Blaise,5/10/1994,57138 Swallow Lane,SYSTEM +ABC2020_386,Clerkclaude Rutley,8/2/1995,979 Mallory Plaza,MOBILE +ABC2020_387,Harley Gross,1/5/1995,29 Amoth Drive,ADMIN +ABC2020_388,Eve Martin,2/6/1989,710 Bartelt Parkway,WEB +ABC2020_389,Rufe Corradengo,1/6/1983,41 Corscot Pass,MOBILE +ABC2020_390,Will Ruberry,3/3/1984,736 Blaine Road,SYSTEM +ABC2020_391,Nadean Guirardin,21/04/1999,490 Dorton Point,QA +ABC2020_392,Marcelia Capineer,18/06/1982,9 Randy Road,WEB +ABC2020_393,Carol-jean Pavlovsky,14/11/1992,915 Emmet Court,WEB +ABC2020_394,Gloria Crean,28/03/1983,52 Norway Maple Drive,WEB +ABC2020_395,Rocky Cawood,25/12/1987,74501 Hollow Ridge Pass,SYSTEM +ABC2020_396,Kipp Seemmonds,2/9/1997,15 Autumn Leaf Junction,SYSTEM +ABC2020_397,Abbie Phettis,22/09/1983,74259 Meadow Ridge Lane,QA +ABC2020_398,Vale Hedde,29/08/1983,103 Jackson Pass,MOBILE +ABC2020_399,Iggy Goosnell,6/7/1998,0 Walton Hill,ADMIN +ABC2020_400,Carlie Broadhead,18/07/1990,7145 Leroy Circle,WEB +ABC2020_401,Kort Arnold,19/12/1987,88 Knutson Avenue,QA +ABC2020_402,Legra Smythe,3/1/1981,6 Glacier Hill Court,WEB +ABC2020_403,Kristine Hayworth,29/01/1989,488 Cambridge Place,WEB +ABC2020_404,Emmalynne Mouncey,22/09/1987,042 Lukken Parkway,SYSTEM +ABC2020_405,Gard Yablsley,3/6/1986,2 Sachs Drive,QA +ABC2020_406,Ricky Spire,17/11/1996,53635 Bobwhite Point,MOBILE +ABC2020_407,Melva Dolle,4/10/1984,20 Crest Line Parkway,QA +ABC2020_408,Stanford Croston,9/8/1987,15 Heffernan Terrace,WEB +ABC2020_409,Dacey Kenningham,13/02/1995,4 Namekagon Parkway,WEB +ABC2020_410,Jacquenetta Horwell,24/10/1980,5660 Sutherland Plaza,ADMIN +ABC2020_411,Belinda Regnard,17/12/1998,55 East Park,ADMIN +ABC2020_412,Mina Crofts,4/8/1996,7 Elgar Center,SYSTEM +ABC2020_413,Gwenore Enrietto,25/02/1994,6138 Parkside Terrace,MOBILE +ABC2020_414,Simmonds Nunns,4/12/1994,254 Hermina Junction,ADMIN +ABC2020_415,Rhianon Ramel,16/03/1980,63953 Moulton Park,SYSTEM +ABC2020_416,Milty Catlette,9/3/1992,24 Luster Alley,SYSTEM +ABC2020_417,Timmy Prandoni,5/8/1985,4764 Vahlen Trail,ADMIN +ABC2020_418,Rafe Elverstone,20/09/1980,064 Autumn Leaf Parkway,WEB +ABC2020_419,Andros Quiddihy,30/04/1988,03456 Aberg Plaza,WEB +ABC2020_420,Gae Insall,20/10/1997,97 Browning Alley,WEB +ABC2020_421,Devondra Clapp,24/06/1998,715 Springs Street,MOBILE +ABC2020_422,Osmund Sadlier,13/02/1997,327 Washington Hill,QA +ABC2020_423,Norean Withey,31/12/1995,5 Eagan Hill,QA +ABC2020_424,Shirlee Mawby,8/10/1982,9461 Twin Pines Point,WEB +ABC2020_425,Griffin MacCard,6/3/1998,15029 Badeau Center,ADMIN +ABC2020_426,Bamby Fielden,11/9/1995,45616 Melody Court,QA +ABC2020_427,Nada Barnes,8/5/1994,99982 4th Center,ADMIN +ABC2020_428,Hailee Scrooby,29/08/1981,625 Grayhawk Street,ADMIN +ABC2020_429,Meade Hailey,18/05/1982,27 Butterfield Parkway,MOBILE +ABC2020_430,Margareta Edmonds,16/07/1995,2 Golden Leaf Center,WEB +ABC2020_431,Wayland Madine,13/07/1999,8193 Anderson Drive,WEB +ABC2020_432,Laurette Sargint,24/01/1982,73 Melvin Crossing,WEB +ABC2020_433,Wakefield Van T'Hoog,2/11/1993,68 Anzinger Pass,MOBILE +ABC2020_434,Dilan Compford,22/08/1980,80 Packers Junction,WEB +ABC2020_435,Shannen Maceur,6/10/1998,010 Roth Terrace,SYSTEM +ABC2020_436,Roxy Scoggin,5/7/1996,1 Clove Lane,SYSTEM +ABC2020_437,Marie-ann Sheard,20/07/1985,617 Clyde Gallagher Park,ADMIN +ABC2020_438,Maximilian Gibbon,23/05/1981,2710 Vermont Court,SYSTEM +ABC2020_439,Meriel Roskelly,25/12/1993,7 2nd Junction,WEB +ABC2020_440,Hal Rickman,30/06/1993,96816 Rusk Avenue,QA +ABC2020_441,Michal Adlem,1/10/1990,6869 2nd Court,WEB +ABC2020_442,Francyne Yetton,26/05/1983,225 Morrow Lane,SYSTEM +ABC2020_443,Marianna Comfort,22/07/1997,292 Crownhardt Pass,QA +ABC2020_444,Priscilla Dewar,30/05/1985,86 Eagan Place,WEB +ABC2020_445,Hadlee Khristoforov,20/03/1982,46 Jay Street,SYSTEM +ABC2020_446,Rosalinda MacAlpin,7/2/1982,2009 Walton Parkway,WEB +ABC2020_447,Quintilla Posten,1/11/1981,5509 Morningstar Junction,QA +ABC2020_448,Sibeal Bertelmot,15/12/1992,11 Pierstorff Avenue,MOBILE +ABC2020_449,Junina Hartin,23/01/1985,6 Esch Place,MOBILE +ABC2020_450,Brandi Peakman,17/06/1994,0915 Bellgrove Junction,QA +ABC2020_451,Taddeo Pampling,19/02/1992,62530 Shopko Point,QA +ABC2020_452,Hendrika Give,10/6/1991,33245 Graceland Way,QA +ABC2020_453,Lila Lidbetter,3/9/1986,24 Welch Place,QA +ABC2020_454,Oralee Bemwell,3/4/1995,0994 Moulton Trail,QA +ABC2020_455,Janella Davidde,16/03/1984,0053 West Drive,ADMIN +ABC2020_456,Faulkner Kynett,2/1/1982,6169 Norway Maple Drive,QA +ABC2020_457,Revkah Killelay,24/03/1994,7 Loftsgordon Way,MOBILE +ABC2020_458,Karen Teodorski,23/03/1995,74 Spaight Park,ADMIN +ABC2020_459,Fayina Wakely,14/10/1999,832 Hagan Hill,WEB +ABC2020_460,Analise Hurlston,29/07/1985,3 Jenna Pass,SYSTEM +ABC2020_461,Nikolai Copin,21/05/1984,0443 Old Gate Point,WEB +ABC2020_462,Farlee Greader,31/03/1981,9987 Killdeer Trail,QA +ABC2020_463,Elisabeth Dreini,30/08/1984,042 Rieder Trail,SYSTEM +ABC2020_464,Elsworth Jeroch,29/11/1993,8839 Del Mar Alley,MOBILE +ABC2020_465,Rab Rizziello,5/7/1987,576 Merchant Alley,MOBILE +ABC2020_466,Cello Fewkes,13/02/1999,2028 Fisk Junction,SYSTEM +ABC2020_467,Janis Try,2/10/1997,83 Thierer Trail,WEB +ABC2020_468,Leann Phoebe,10/7/1985,7023 Thierer Point,QA +ABC2020_469,Spencer Measom,4/7/1991,94 Veith Alley,MOBILE +ABC2020_470,Thomasine Manser,21/12/1983,172 Springs Center,MOBILE +ABC2020_471,Ula Sansbury,3/1/1994,1 Havey Hill,ADMIN +ABC2020_472,Zea Malham,7/8/1985,9 Blackbird Road,WEB +ABC2020_473,Harwilll Gilsthorpe,17/05/1980,787 Rigney Road,WEB +ABC2020_474,Rees Krink,3/3/1995,18448 Debs Park,QA +ABC2020_475,Blancha MacArdle,29/06/1993,52 New Castle Place,WEB +ABC2020_476,Daniele MacGow,19/05/1981,56 Kipling Crossing,SYSTEM +ABC2020_477,Xavier Pleasance,11/8/1991,33 Drewry Crossing,ADMIN +ABC2020_478,Moreen Reignard,12/1/1980,7 Badeau Alley,SYSTEM +ABC2020_479,Noland Danev,3/9/1983,64 Prairieview Alley,WEB +ABC2020_480,Kalinda Dani,7/9/1995,4 Southridge Pass,WEB +ABC2020_481,Lowrance Bruton,31/05/1993,386 Katie Plaza,SYSTEM +ABC2020_482,Eada Lovejoy,11/10/1986,479 Mitchell Drive,WEB +ABC2020_483,Skyler Gaitley,11/7/1985,5047 Debs Way,WEB +ABC2020_484,Yul McGougan,19/02/1993,13644 Petterle Street,SYSTEM +ABC2020_485,Evangelin Valerius,7/12/1989,99691 Luster Lane,ADMIN +ABC2020_486,Viva Sylvester,28/05/1987,57743 Anderson Hill,ADMIN +ABC2020_487,Lilllie McIlhone,23/09/1988,67 Muir Plaza,SYSTEM +ABC2020_488,Earvin Ruddell,28/03/1980,328 Green Circle,SYSTEM +ABC2020_489,Alida Clilverd,23/03/1995,695 Declaration Center,WEB +ABC2020_490,Adria Poluzzi,20/08/1985,62 Buhler Drive,WEB +ABC2020_491,Jozef Huggett,10/10/1995,8378 Hoepker Plaza,MOBILE +ABC2020_492,Bayard Salthouse,12/11/1994,6 Larry Hill,WEB +ABC2020_493,Patrice Aldhouse,15/01/1987,485 Packers Park,ADMIN +ABC2020_494,Fayre Hutfield,6/10/1996,9418 Melody Road,WEB +ABC2020_495,Adelheid Ranklin,18/04/1994,45270 Farmco Circle,WEB +ABC2020_496,Matthiew Aneley,17/11/1995,93 Westport Terrace,QA +ABC2020_497,Averell Duff,14/07/1995,78478 Moose Drive,WEB +ABC2020_498,Gillian Peabody,17/06/1991,8535 Warrior Court,MOBILE +ABC2020_499,Lauraine Aberkirder,20/07/1987,30949 Jenifer Road,WEB +ABC2020_500,Boot Rose,26/11/1991,40 Algoma Hill,WEB +ABC2020_501,Jeannie Gauntlett,21/09/1993,61724 Longview Plaza,MOBILE +ABC2020_502,Augustus Apfelmann,20/07/1981,2694 Hoffman Circle,WEB +ABC2020_503,Rees Chaplain,23/07/1986,728 Brentwood Terrace,QA +ABC2020_504,Easter Madoc-Jones,9/4/1984,09 Hansons Pass,ADMIN +ABC2020_505,Aldrich Waltho,12/3/1990,83824 4th Terrace,QA +ABC2020_506,Koenraad Wilgar,5/2/1991,6920 Oxford Plaza,SYSTEM +ABC2020_507,Goober Van't Hoff,17/11/1987,43 Sachs Avenue,SYSTEM +ABC2020_508,Danit Clifford,5/9/1996,889 Schiller Circle,SYSTEM +ABC2020_509,Bryana de Juares,15/05/1993,15400 Loeprich Plaza,WEB +ABC2020_510,Cherianne MacGaughie,11/6/1989,28 Kim Circle,SYSTEM +ABC2020_511,Joyce Franchioni,19/03/1988,6 Linden Drive,SYSTEM +ABC2020_512,Bay Snailham,5/11/1985,63 High Crossing Pass,MOBILE +ABC2020_513,Ermanno Grzegorzewicz,15/03/1988,5 Esch Lane,QA +ABC2020_514,Berke Vasyukhnov,7/2/1988,60 Monterey Trail,WEB +ABC2020_515,Billi Spehr,7/7/1992,8379 Shelley Circle,WEB +ABC2020_516,Sophie Pitrasso,25/01/1981,28 Blaine Pass,SYSTEM +ABC2020_517,Archaimbaud Matussevich,12/2/1991,86 Daystar Parkway,QA +ABC2020_518,Lila Moysey,19/02/1982,1 Dahle Parkway,ADMIN +ABC2020_519,Josie Renachowski,17/03/1996,328 Norway Maple Trail,WEB +ABC2020_520,Ashli Lamport,30/05/1982,90 Westport Place,WEB +ABC2020_521,Lauralee Pistol,11/4/1990,8061 Sherman Crossing,QA +ABC2020_522,Athena Farquharson,12/8/1995,30689 Mallard Terrace,QA +ABC2020_523,Berkie Fitzsymon,9/10/1984,84 Charing Cross Drive,MOBILE +ABC2020_524,Bellina McCathay,15/10/1988,9 Veith Plaza,SYSTEM +ABC2020_525,Elane Jorcke,21/01/1988,8159 7th Trail,ADMIN +ABC2020_526,Kiah Heinle,22/12/1988,1316 Brickson Park Junction,SYSTEM +ABC2020_527,Alfreda Thorrington,15/05/1998,3626 Algoma Trail,QA +ABC2020_528,Cecelia Vickery,10/9/1999,4113 Novick Plaza,MOBILE +ABC2020_529,Beatrisa Trodden,16/09/1994,9 Butterfield Street,ADMIN +ABC2020_530,Cordie Kemish,24/03/1994,0052 4th Plaza,WEB +ABC2020_531,Galvin Swyre,10/9/1998,9 Carey Point,SYSTEM +ABC2020_532,Jeannette Gyer,25/12/1982,053 Pierstorff Center,WEB +ABC2020_533,Rosy Bircher,4/4/1981,7 Meadow Valley Pass,SYSTEM +ABC2020_534,Dotty Hoyles,11/9/1989,3 Mitchell Trail,ADMIN +ABC2020_535,Helli Tassaker,17/09/1988,46 Redwing Center,QA +ABC2020_536,Giselle Hargreaves,19/05/1981,8 Lakewood Street,WEB +ABC2020_537,Rodolfo Seniour,16/01/1990,3 Jenifer Park,QA +ABC2020_538,Alexandros Pherps,27/04/1980,09813 Comanche Way,QA +ABC2020_539,Nessi Endon,6/9/1982,09319 Pleasure Lane,ADMIN +ABC2020_540,Peri Lohrensen,28/03/1981,4 Kipling Park,WEB +ABC2020_541,Selma Hamner,13/08/1986,5896 Carpenter Plaza,MOBILE +ABC2020_542,Arri Swindley,10/9/1998,010 Eastwood Point,MOBILE +ABC2020_543,Lynn Cumbers,4/5/1982,9501 Chinook Drive,MOBILE +ABC2020_544,Cherey Goldsmith,16/08/1997,8 Jackson Alley,WEB +ABC2020_545,Stacey Kilmary,26/05/1998,35638 Roxbury Place,SYSTEM +ABC2020_546,Errick Bearns,9/1/1989,52234 Daystar Center,SYSTEM +ABC2020_547,Gusta Bello,23/04/1984,70277 Melby Center,MOBILE +ABC2020_548,Florida Dennistoun,22/06/1986,5 Elmside Terrace,WEB +ABC2020_549,Donetta Shoebottom,21/08/1981,86337 Logan Lane,MOBILE +ABC2020_550,Anderson Shave,8/7/1989,860 Duke Point,WEB +ABC2020_551,Rhoda Audas,16/04/1993,87490 Everett Court,QA +ABC2020_552,Gillian Watkin,24/06/1986,2110 Dwight Alley,MOBILE +ABC2020_553,Frasier Hinnerk,19/01/1985,762 Pearson Place,QA +ABC2020_554,Lind Riedel,3/7/1992,47899 Mcbride Road,WEB +ABC2020_555,Jacobo Carlan,10/8/1999,04 Northport Lane,QA +ABC2020_556,Jourdain Cullinan,30/04/1991,8 Northview Center,WEB +ABC2020_557,Niccolo McLanaghan,23/08/1999,19916 Sundown Center,MOBILE +ABC2020_558,Tiffani Gherardini,4/12/1985,2530 Mandrake Road,WEB +ABC2020_559,Orel Eyam,29/07/1988,840 Roxbury Crossing,WEB +ABC2020_560,Mervin Pyer,6/11/1999,4370 Scoville Junction,QA +ABC2020_561,Zak Bargh,3/11/1997,56 Buell Crossing,QA +ABC2020_562,Min Monkleigh,2/2/1988,3 Summerview Hill,MOBILE +ABC2020_563,Bentlee Killingbeck,18/01/1992,3042 Bluestem Avenue,MOBILE +ABC2020_564,Galven Cote,22/04/1999,918 Cascade Place,MOBILE +ABC2020_565,Flora Whifen,15/08/1997,00286 Mitchell Street,QA +ABC2020_566,Norah Koppeck,7/2/1982,89917 Susan Hill,MOBILE +ABC2020_567,Hill Snipe,14/01/1987,86 Anderson Crossing,SYSTEM +ABC2020_568,Emmott Mabbutt,9/5/1986,6758 Colorado Crossing,WEB +ABC2020_569,Betty Marjanovic,26/08/1991,970 Surrey Circle,MOBILE +ABC2020_570,Hortensia Frankcomb,19/09/1997,0 Center Place,WEB +ABC2020_571,Milo Ruselin,10/7/1983,0434 Dottie Drive,WEB +ABC2020_572,Bernette Hambright,25/12/1999,7 Barby Lane,SYSTEM +ABC2020_573,Danette Barwick,30/03/1981,648 Ruskin Place,QA +ABC2020_574,Drusi Bartkiewicz,27/08/1995,7079 Bellgrove Drive,WEB +ABC2020_575,Gal Knightsbridge,22/12/1990,718 Caliangt Drive,SYSTEM +ABC2020_576,Sigfried Livett,17/08/1980,2 Upham Hill,MOBILE +ABC2020_577,Zaria Guntrip,28/01/1991,1 Novick Drive,WEB +ABC2020_578,Bailie Ambrogio,4/11/1989,354 Logan Street,ADMIN +ABC2020_579,Pamelina Hadden,16/06/1986,4 Melvin Way,MOBILE +ABC2020_580,Josefa Crielly,2/3/1992,1 Onsgard Pass,WEB +ABC2020_581,Jason Truse,26/03/1983,61976 Raven Court,WEB +ABC2020_582,Gilburt Swash,15/05/1993,142 Clarendon Crossing,WEB +ABC2020_583,Weidar Dumingos,11/12/1987,49 Lindbergh Circle,ADMIN +ABC2020_584,Damian Degoix,13/07/1988,0934 Menomonie Lane,WEB +ABC2020_585,Cassy Thomassin,6/5/1984,3556 Eggendart Terrace,ADMIN +ABC2020_586,Fabian Pitsall,23/02/1983,58149 Hoard Plaza,QA +ABC2020_587,Remington Karran,19/11/1984,092 Helena Junction,SYSTEM +ABC2020_588,Olly Faircloth,15/07/1990,0204 Dexter Parkway,MOBILE +ABC2020_589,Kimble Tottle,23/04/1989,954 Bellgrove Drive,SYSTEM +ABC2020_590,Dara Tebbe,12/8/1993,703 Oxford Hill,SYSTEM +ABC2020_591,Thurston Fosdick,17/10/1984,89629 Truax Drive,MOBILE +ABC2020_592,Ethan Corneil,9/5/1987,6101 Chive Center,WEB +ABC2020_593,Raymund McPeeters,16/12/1983,120 Butterfield Court,WEB +ABC2020_594,Harri Lowmass,24/08/1994,76867 Dunning Trail,WEB +ABC2020_595,Stephi MacCahey,16/06/1993,9230 Butterfield Pass,WEB +ABC2020_596,Clywd Marsden,28/10/1980,4765 Goodland Point,QA +ABC2020_597,Sergei Birwhistle,17/03/1984,24114 Talmadge Parkway,WEB +ABC2020_598,Manon Madden,8/1/1984,681 Butterfield Point,SYSTEM +ABC2020_599,Beatrice Banck,6/7/1991,7 Green Ridge Street,WEB +ABC2020_600,Brose Shreve,1/9/1996,51475 Quincy Drive,SYSTEM +ABC2020_601,Kimbell Sertin,17/11/1994,27 Sycamore Place,QA +ABC2020_602,Alric MacPhee,9/11/1984,639 Russell Junction,WEB +ABC2020_603,Vina Callaghan,13/09/1985,25 Cody Pass,SYSTEM +ABC2020_604,Sharai Prin,17/04/1989,28 Sachtjen Crossing,SYSTEM +ABC2020_605,Tulley Boyle,20/07/1997,00967 Erie Crossing,SYSTEM +ABC2020_606,Noach Pywell,10/11/1994,5728 Hintze Pass,QA +ABC2020_607,Rodolph Scutter,16/05/1993,464 Del Mar Road,QA +ABC2020_608,Pammy Solland,25/09/1986,860 Esch Junction,WEB +ABC2020_609,Ethel McMeyler,19/01/1992,9 Pawling Drive,QA +ABC2020_610,Akim Huddlestone,18/04/1985,67 Bartelt Terrace,WEB +ABC2020_611,Joelynn Skirving,13/06/1988,72502 Granby Drive,WEB +ABC2020_612,Yvor Marling,3/4/1993,78 Hagan Way,QA +ABC2020_613,Payton Whitton,29/08/1987,52 Lakewood Gardens Place,WEB +ABC2020_614,Enoch Crennan,16/07/1984,9 Cordelia Alley,SYSTEM +ABC2020_615,Anabel Kierans,12/9/1997,0 Walton Avenue,SYSTEM +ABC2020_616,Goldi Steljes,1/8/1981,5321 Morning Hill,MOBILE +ABC2020_617,Shadow Gehrts,15/11/1998,90 Laurel Junction,QA +ABC2020_618,Rutherford Zanolli,19/11/1997,5 Jenifer Plaza,WEB +ABC2020_619,Clarinda Fitzhenry,28/11/1980,023 Mccormick Junction,SYSTEM +ABC2020_620,Melita Pennacci,15/05/1990,514 Montana Point,SYSTEM +ABC2020_621,Berrie Garms,10/9/1991,74720 Daystar Alley,QA +ABC2020_622,Berton Birtwhistle,8/8/1991,464 Corscot Drive,ADMIN +ABC2020_623,Keven Carsberg,11/12/1980,0 Jenna Street,ADMIN +ABC2020_624,Gerrie Veschambes,31/05/1980,4 Summit Road,MOBILE +ABC2020_625,Dan L'Episcopi,18/11/1983,7 Helena Court,SYSTEM +ABC2020_626,Penny Benton,10/11/1994,19 West Avenue,MOBILE +ABC2020_627,Vassili de Chastelain,28/02/1990,4992 Loomis Drive,SYSTEM +ABC2020_628,Erika Haylands,29/12/1999,374 Havey Point,QA +ABC2020_629,Angeline Tottman,2/9/1985,35644 Macpherson Road,MOBILE +ABC2020_630,Corissa McMurraya,3/10/1982,8 Dexter Drive,ADMIN +ABC2020_631,Honey Darbyshire,26/01/1980,579 Loomis Lane,ADMIN +ABC2020_632,Joly Gask,9/6/1982,474 Waxwing Court,QA +ABC2020_633,Sybilla Bisterfeld,19/09/1995,2 Meadow Ridge Avenue,WEB +ABC2020_634,Francisco Redsall,24/05/1986,94665 Toban Center,WEB +ABC2020_635,Tanitansy Huison,10/6/1996,069 Ilene Plaza,WEB +ABC2020_636,Danyelle Oliver-Paull,1/6/1990,5368 Ridgeview Center,WEB +ABC2020_637,Lesley Badsey,6/7/1984,58949 3rd Street,WEB +ABC2020_638,Marlee Banasevich,9/1/1981,865 Cardinal Junction,SYSTEM +ABC2020_639,Robby Heaford,9/3/1990,80 Barby Road,ADMIN +ABC2020_640,Calhoun Mazzia,18/07/1993,0 Weeping Birch Plaza,WEB +ABC2020_641,Aaron Crookshanks,21/11/1993,8 Esch Lane,MOBILE +ABC2020_642,Aura Gillopp,19/07/1990,1589 Huxley Center,WEB +ABC2020_643,Gene Gwyer,13/08/1982,2 Acker Park,WEB +ABC2020_644,Avril Unger,11/5/1985,2 Cascade Road,SYSTEM +ABC2020_645,Lulita Symonds,4/2/1989,6600 7th Lane,MOBILE +ABC2020_646,Griffie Bowdon,12/8/1981,83 Dennis Park,SYSTEM +ABC2020_647,Sibeal Balthasar,13/06/1990,7 Maryland Trail,SYSTEM +ABC2020_648,Jamie Pauley,25/11/1997,7 Lakeland Alley,MOBILE +ABC2020_649,Carmon Marrian,13/08/1990,2 Vahlen Court,WEB +ABC2020_650,Jamison Van,20/03/1992,88729 Cardinal Avenue,MOBILE +ABC2020_651,Mirelle Verner,7/8/1995,64277 Mifflin Hill,SYSTEM +ABC2020_652,Gerri Tanslie,16/12/1984,833 Marcy Place,WEB +ABC2020_653,Tobie Alcoran,1/6/1991,47 Bluestem Pass,WEB +ABC2020_654,Jerrie Borgars,28/12/1983,46658 Westridge Street,QA +ABC2020_655,Esther Geratasch,19/12/1980,28458 Hooker Road,SYSTEM +ABC2020_656,Brocky Wardall,12/4/1981,881 Vernon Park,SYSTEM +ABC2020_657,Carie Inglis,7/4/1980,9994 Ilene Parkway,SYSTEM +ABC2020_658,Petra Filipowicz,12/11/1991,16699 Sachtjen Way,MOBILE +ABC2020_659,Barth Rossbrooke,31/12/1981,08 Shelley Drive,ADMIN +ABC2020_660,Jane Dymond,14/12/1993,437 Harbort Parkway,MOBILE +ABC2020_661,Shaun Hyder,25/03/1982,1 Burrows Junction,MOBILE +ABC2020_662,Reamonn Mash,16/03/1985,07 Eastwood Circle,QA +ABC2020_663,Carla Szymanowski,6/9/1997,3567 Milwaukee Court,SYSTEM +ABC2020_664,Jason Baise,8/8/1984,321 Bunker Hill Court,QA +ABC2020_665,Burke Carville,24/08/1996,294 1st Court,QA +ABC2020_666,Catriona Frohock,16/12/1997,9876 Bartelt Lane,MOBILE +ABC2020_667,Teodorico Gerred,1/5/1980,06 Bay Crossing,QA +ABC2020_668,Wolf Stringman,24/01/1997,2076 Division Avenue,WEB +ABC2020_669,Penrod Ilewicz,19/05/1981,54309 Warbler Avenue,MOBILE +ABC2020_670,Idette Breede,25/03/1995,58 Laurel Junction,WEB +ABC2020_671,Tam Cosgriff,21/07/1992,962 Waywood Drive,MOBILE +ABC2020_672,Emmery De Bellis,16/07/1981,70534 South Alley,WEB +ABC2020_673,Rudie Sheavills,22/04/1983,73 Leroy Circle,SYSTEM +ABC2020_674,Augusta Ahlin,18/12/1988,48767 Algoma Parkway,WEB +ABC2020_675,Ronny Yurkov,24/07/1986,099 Dakota Alley,QA +ABC2020_676,Kyle Wildin,13/12/1996,4 Sachs Court,MOBILE +ABC2020_677,Estelle Beacom,23/09/1980,9 Upham Center,SYSTEM +ABC2020_678,Madalyn Cunnington,21/05/1997,2 Toban Center,MOBILE +ABC2020_679,Magnum Mincini,21/10/1993,610 Melrose Place,QA +ABC2020_680,Mace Chaffe,15/02/1985,920 Rieder Terrace,QA +ABC2020_681,Wendy Le Count,28/07/1993,43854 Hudson Road,WEB +ABC2020_682,Winnie Rookledge,26/04/1995,82 Lakewood Gardens Court,MOBILE +ABC2020_683,Shane Galton,30/09/1986,595 Lighthouse Bay Pass,SYSTEM +ABC2020_684,Nickolas Breakspear,4/4/1997,334 Sachs Center,QA +ABC2020_685,Zitella Faloon,9/11/1993,551 Claremont Hill,WEB +ABC2020_686,Shoshana Roalfe,14/07/1989,695 Mayfield Circle,MOBILE +ABC2020_687,Chadwick Kach,6/5/1980,286 Garrison Avenue,WEB +ABC2020_688,Kirstin Cohn,16/08/1992,9 Menomonie Way,QA +ABC2020_689,Robbie Fontenot,11/1/1990,3 Cardinal Place,ADMIN +ABC2020_690,Merwin Draisey,27/03/1998,0538 Mallory Center,MOBILE +ABC2020_691,Benn Oaten,20/06/1993,42 Hooker Avenue,MOBILE +ABC2020_692,Jinny Gumb,12/6/1999,82560 Mallory Crossing,QA +ABC2020_693,Christye Forson,5/12/1989,650 Elgar Street,WEB +ABC2020_694,Kathleen Stokes,25/10/1992,87 Esch Trail,MOBILE +ABC2020_695,Haze Scolts,10/11/1985,96463 Comanche Place,SYSTEM +ABC2020_696,Sheffy Piffe,4/4/1984,8415 Northland Drive,WEB +ABC2020_697,Hale Tremblot,18/01/1983,20 Sugar Junction,SYSTEM +ABC2020_698,Silvester Wickerson,5/3/1992,3464 Lindbergh Crossing,SYSTEM +ABC2020_699,Dara Try,23/01/1987,302 Nova Road,WEB +ABC2020_700,Goran Smurthwaite,26/04/1982,937 Killdeer Street,QA +ABC2020_701,Randi Parks,5/7/1988,89903 Loftsgordon Court,QA +ABC2020_702,Donna Fernando,31/01/1983,10 Village Green Park,WEB +ABC2020_703,Danna Peeke,30/05/1986,3 Utah Road,MOBILE +ABC2020_704,Austine Asty,11/8/1990,9394 Iowa Way,WEB +ABC2020_705,Edgardo Yurukhin,26/06/1985,843 Southridge Junction,SYSTEM +ABC2020_706,Reidar Dominique,9/11/1992,6 Graceland Road,SYSTEM +ABC2020_707,Constance Brusin,2/3/1988,74 Debra Parkway,SYSTEM +ABC2020_708,Jamill Starrs,25/10/1982,10 Oakridge Court,MOBILE +ABC2020_709,Laurianne Sparhawk,18/07/1984,616 Hoffman Street,WEB +ABC2020_710,Katleen Diess,3/3/1989,902 Vahlen Crossing,QA +ABC2020_711,Haze Norvel,3/11/1980,74 Browning Crossing,SYSTEM +ABC2020_712,Astrid Bentje,2/8/1998,4 Buena Vista Hill,QA +ABC2020_713,Sabina Meadows,3/10/1984,05439 Bonner Plaza,SYSTEM +ABC2020_714,Kacey Axelbee,1/1/1986,7 Ruskin Road,WEB +ABC2020_715,Jed Odda,1/6/1988,76105 Eggendart Road,SYSTEM +ABC2020_716,Lenora Kleinmann,1/8/1999,59342 Sugar Lane,SYSTEM +ABC2020_717,Les Riglar,4/11/1989,6637 Stang Avenue,SYSTEM +ABC2020_718,Fred Blinerman,7/6/1989,1 Dryden Crossing,SYSTEM +ABC2020_719,Krisha Tremblett,7/9/1982,79670 Eagle Crest Way,WEB +ABC2020_720,Hymie Rigney,8/12/1996,562 Pine View Center,QA +ABC2020_721,Violante Samart,2/3/1989,84 Farwell Pass,WEB +ABC2020_722,Evelyn Bucktharp,6/3/1997,8139 Gateway Road,WEB +ABC2020_723,Zorina Soall,25/05/1985,39 Sunbrook Point,SYSTEM +ABC2020_724,Sunny Thorpe,8/12/1988,031 Valley Edge Way,WEB +ABC2020_725,Lanny Jodlkowski,13/02/1987,270 Knutson Street,QA +ABC2020_726,Franny Tichner,3/9/1988,82 Cambridge Drive,ADMIN +ABC2020_727,Vinnie Corcoran,19/04/1990,6 Delladonna Road,QA +ABC2020_728,Sondra Redwin,16/06/1989,3 Fulton Alley,WEB +ABC2020_729,Camey Saurat,14/04/1998,4452 Marcy Avenue,ADMIN +ABC2020_730,Vida Whithorn,26/10/1981,29 Walton Parkway,WEB +ABC2020_731,Patrizio Jost,1/8/1988,748 Annamark Park,WEB +ABC2020_732,Kissee Beekman,16/07/1986,080 Jackson Road,QA +ABC2020_733,Addi Dobbing,20/05/1993,48 Jana Crossing,ADMIN +ABC2020_734,Ewen Feechan,6/4/1988,7 Loftsgordon Street,SYSTEM +ABC2020_735,Dominique Irons,17/01/1991,735 Granby Terrace,WEB +ABC2020_736,Neron Laidlow,18/04/1989,17 Tennessee Way,MOBILE +ABC2020_737,Marilin Wattisham,11/9/1985,6305 Oakridge Alley,MOBILE +ABC2020_738,Andrew Baraclough,30/12/1981,2 Del Mar Terrace,WEB +ABC2020_739,Blakeley Championnet,18/02/1995,14 Almo Drive,WEB +ABC2020_740,Jessie Rhodus,24/12/1982,083 Paget Parkway,SYSTEM +ABC2020_741,Wake Endecott,18/03/1992,5546 Dorton Circle,SYSTEM +ABC2020_742,Georgia Speedin,18/09/1992,95 Dennis Terrace,QA +ABC2020_743,Suki Marcinkowski,19/04/1987,410 Talisman Road,WEB +ABC2020_744,Ginnie Carefull,28/11/1987,742 Harper Lane,MOBILE +ABC2020_745,Betteanne Burtwell,17/06/1996,57 Sundown Place,QA +ABC2020_746,Findley Fearn,31/07/1980,45 Fulton Hill,SYSTEM +ABC2020_747,Wendy Figgins,9/7/1986,885 Southridge Trail,SYSTEM +ABC2020_748,Sibyl Friedman,17/04/1980,0 Sullivan Place,MOBILE +ABC2020_749,Renelle Aston,11/8/1992,9019 Texas Hill,ADMIN +ABC2020_750,Collette Casier,18/12/1992,46447 Homewood Crossing,WEB +ABC2020_751,Leonore Murney,7/1/1980,37772 Dixon Crossing,WEB +ABC2020_752,Tedman Hyndson,3/9/1983,5 Tennessee Road,WEB +ABC2020_753,Clyve Pea,22/09/1983,77331 Messerschmidt Alley,MOBILE +ABC2020_754,Kaitlynn Anstice,4/8/1984,8772 Columbus Plaza,WEB +ABC2020_755,Nanni Folbigg,12/9/1984,4566 Jenna Crossing,WEB +ABC2020_756,Dasya Sillwood,26/08/1984,43935 Rieder Hill,WEB +ABC2020_757,Wallace Bartosinski,31/07/1993,4022 Tomscot Terrace,SYSTEM +ABC2020_758,Jennilee Hamlen,24/12/1997,86865 Hooker Place,WEB +ABC2020_759,Dunn Bigglestone,23/10/1984,9815 Morningstar Terrace,ADMIN +ABC2020_760,Rudie Burress,5/9/1980,69167 Ohio Hill,WEB +ABC2020_761,Nert Valerio,2/5/1998,9958 Swallow Junction,WEB +ABC2020_762,Gordan Clery,18/08/1995,0630 Pawling Pass,MOBILE +ABC2020_763,Ermanno Sidgwick,4/3/1983,942 Packers Park,QA +ABC2020_764,Lotte Hultberg,19/03/1983,60 4th Court,ADMIN +ABC2020_765,Muriel McGraw,29/12/1996,71 Grover Pass,WEB +ABC2020_766,Alphard Kynoch,28/09/1987,0628 Thackeray Place,WEB +ABC2020_767,Diahann Conechie,3/9/1987,0642 Bluejay Trail,SYSTEM +ABC2020_768,Pattie Kail,21/12/1984,85 Vermont Crossing,QA +ABC2020_769,Chariot Clancey,11/7/1982,8 Prentice Pass,SYSTEM +ABC2020_770,Legra Rediers,7/6/1991,6628 Hanover Center,MOBILE +ABC2020_771,Cammi Gatheral,7/5/1984,3342 Lake View Lane,QA +ABC2020_772,Eva Scudamore,10/9/1998,70405 Kedzie Alley,WEB +ABC2020_773,Gallagher Kernaghan,27/01/1983,19612 Marquette Way,QA +ABC2020_774,Gianni Storrie,10/2/1995,7 Briar Crest Junction,QA +ABC2020_775,Kelly Iacovini,22/03/1997,4238 Graedel Road,MOBILE +ABC2020_776,Kerwin Baume,31/07/1998,6582 Delaware Way,MOBILE +ABC2020_777,Desdemona Ionn,22/10/1986,3817 Jay Pass,MOBILE +ABC2020_778,Tommie Veregan,24/12/1991,55444 Quincy Terrace,WEB +ABC2020_779,Abbie Minihan,23/01/1984,46 Johnson Crossing,WEB +ABC2020_780,Pippa Heyworth,28/10/1980,69 Thackeray Parkway,SYSTEM +ABC2020_781,Lorin Castiblanco,20/08/1984,72647 Sullivan Court,SYSTEM +ABC2020_782,Winfield Fulloway,13/02/1993,9 Claremont Alley,WEB +ABC2020_783,Brittan Knowlman,31/07/1981,4976 Muir Drive,QA +ABC2020_784,Roana Dessant,9/12/1990,77632 Thompson Lane,QA +ABC2020_785,Alvan Farnhill,25/11/1984,9767 Sunnyside Alley,QA +ABC2020_786,Tallie Alessandone,30/01/1983,55 Thackeray Road,MOBILE +ABC2020_787,Reinhard Bushel,26/01/1985,46768 Meadow Vale Place,SYSTEM +ABC2020_788,Anne-corinne Hillin,19/05/1989,03906 Superior Pass,QA +ABC2020_789,Jaine Aslet,20/06/1991,6459 Delladonna Terrace,SYSTEM +ABC2020_790,Marin Leng,20/03/1985,324 Clove Avenue,MOBILE +ABC2020_791,Sydney Newhouse,12/7/1989,99256 Memorial Trail,MOBILE +ABC2020_792,Carolus Frapwell,4/12/1980,26 Troy Terrace,SYSTEM +ABC2020_793,Lucine Linacre,4/4/1994,8196 Lukken Pass,SYSTEM +ABC2020_794,Bette Workes,11/2/1992,34 Ridgeway Hill,SYSTEM +ABC2020_795,Trever Dash,8/9/1983,6 Elgar Crossing,MOBILE +ABC2020_796,Danella Pozzo,12/7/1992,26 Pankratz Street,MOBILE +ABC2020_797,Hamid Enstone,11/11/1986,81097 Meadow Vale Court,QA +ABC2020_798,Maggie Bellhouse,20/11/1986,814 Saint Paul Alley,MOBILE +ABC2020_799,Linda Trythall,25/09/1986,84 Burning Wood Circle,MOBILE +ABC2020_800,Aleda Ions,31/01/1994,54196 Farwell Alley,WEB +ABC2020_801,Delly Finby,10/11/1991,36 Summer Ridge Junction,WEB +ABC2020_802,Donnajean Tilt,28/09/1986,99 Birchwood Drive,SYSTEM +ABC2020_803,Siffre Crathern,5/2/1991,17810 Fuller Circle,WEB +ABC2020_804,Wylie Machent,21/10/1997,099 Hoepker Street,SYSTEM +ABC2020_805,Jillane Klemps,12/1/1981,69 Old Gate Alley,SYSTEM +ABC2020_806,Dominica Pipes,10/5/1988,608 Sommers Circle,WEB +ABC2020_807,Mellisent Abadam,23/01/1998,0 Tennessee Place,WEB +ABC2020_808,Stephan Joynson,27/02/1987,65 Wayridge Drive,QA +ABC2020_809,Tannie McLean,14/03/1992,85543 Carpenter Alley,WEB +ABC2020_810,Maje Santi,6/7/1990,1 Ryan Street,ADMIN +ABC2020_811,Jillie Dodworth,25/07/1985,342 Thompson Junction,ADMIN +ABC2020_812,Cyndia McCullough,14/05/1988,09331 Hauk Park,WEB +ABC2020_813,Avigdor Broadwood,15/07/1992,895 Ronald Regan Point,ADMIN +ABC2020_814,Durward Fuke,22/11/1983,94 Loftsgordon Center,SYSTEM +ABC2020_815,Theobald Hurll,2/3/1999,9787 Hudson Pass,QA +ABC2020_816,Wilfrid Alfonsini,29/12/1985,147 Hazelcrest Parkway,WEB +ABC2020_817,Demeter Yegorovnin,30/01/1983,19439 Menomonie Point,QA +ABC2020_818,Wendye Lynes,31/05/1989,00252 Karstens Terrace,WEB +ABC2020_819,Casar Wye,3/12/1994,1474 Stone Corner Court,QA +ABC2020_820,Marietta Roderham,8/1/1982,23 Fulton Lane,MOBILE +ABC2020_821,Cullan Chestney,18/06/1994,5 Fulton Center,WEB +ABC2020_822,Dominique Pither,8/8/1992,1515 Clemons Way,WEB +ABC2020_823,Bettye Bootland,5/1/1996,899 Forest Run Park,MOBILE +ABC2020_824,Giulio Ernke,26/04/1993,51 Summit Trail,WEB +ABC2020_825,Horton Gallety,24/10/1999,3141 Green Park,MOBILE +ABC2020_826,Felecia Peagram,15/01/1980,78447 Corry Avenue,QA +ABC2020_827,Arnold Eldredge,1/12/1982,79 Hoepker Park,WEB +ABC2020_828,Ty Raulston,27/10/1991,87 Lawn Park,MOBILE +ABC2020_829,Marissa Binham,11/1/1999,7040 Pierstorff Park,MOBILE +ABC2020_830,Dukie Larive,13/05/1994,19521 Main Hill,MOBILE +ABC2020_831,Montgomery Suermeiers,18/08/1988,534 Independence Parkway,ADMIN +ABC2020_832,Devondra Sambell,19/06/1982,163 Onsgard Avenue,QA +ABC2020_833,Morganica Shingler,22/08/1997,145 Barnett Alley,WEB +ABC2020_834,Cristen Boldt,20/07/1994,73 Morrow Terrace,ADMIN +ABC2020_835,Galina McCurrie,16/02/1983,0 Old Shore Way,SYSTEM +ABC2020_836,Ebba Sellwood,25/03/1985,60455 Hoepker Hill,MOBILE +ABC2020_837,Colin Whewill,12/4/1991,01 Dennis Pass,WEB +ABC2020_838,Mollie Vanyashkin,1/4/1980,8506 Stone Corner Hill,SYSTEM +ABC2020_839,Leicester Barbour,16/04/1988,5 Hayes Alley,MOBILE +ABC2020_840,Jessey Iglesias,13/06/1996,03 Holy Cross Park,ADMIN +ABC2020_841,Brinn Wolstenholme,16/12/1981,854 Kinsman Pass,WEB +ABC2020_842,Tamarah Leaves,19/08/1987,916 Erie Avenue,SYSTEM +ABC2020_843,Virgil Pagett,4/2/1991,228 Mosinee Street,MOBILE +ABC2020_844,Gunter Creech,22/06/1992,800 4th Pass,WEB +ABC2020_845,Raul Hessay,5/2/1995,242 Farragut Way,SYSTEM +ABC2020_846,Nilson De Filippi,11/8/1988,349 Arkansas Point,WEB +ABC2020_847,Dorene Polden,29/03/1988,222 Clarendon Trail,WEB +ABC2020_848,Cherish Le Strange,14/09/1986,4 Pepper Wood Road,SYSTEM +ABC2020_849,Aloisia Boas,10/8/1987,49 Lien Terrace,ADMIN +ABC2020_850,Lana Lebel,19/01/1991,440 Waywood Lane,WEB +ABC2020_851,Ewart Woodcock,14/10/1982,6 Bay Drive,WEB +ABC2020_852,Wash Hogbourne,11/4/1996,06366 Linden Court,SYSTEM +ABC2020_853,Eveleen Winser,31/12/1986,628 Burrows Court,SYSTEM +ABC2020_854,Abran Nolli,22/09/1989,0 Colorado Junction,MOBILE +ABC2020_855,Tessie McTeer,24/04/1997,64 Meadow Valley Place,WEB +ABC2020_856,Tab McKmurrie,28/05/1999,1 Crowley Trail,ADMIN +ABC2020_857,Burton Goundrill,13/05/1999,70759 Warner Parkway,WEB +ABC2020_858,Reube Huckstepp,28/12/1981,5 Coolidge Circle,WEB +ABC2020_859,Arron McGeagh,13/05/1986,1377 Main Street,WEB +ABC2020_860,Tootsie Kynforth,24/12/1993,06 Vera Court,QA +ABC2020_861,Chrisse Hitschke,30/10/1981,472 Delaware Alley,SYSTEM +ABC2020_862,Alla Leasor,11/9/1990,20055 Maple Wood Circle,MOBILE +ABC2020_863,Sallyann Weatherall,10/8/1997,35656 Sullivan Terrace,QA +ABC2020_864,Jacques Davydkov,14/09/1982,0165 Westport Park,MOBILE +ABC2020_865,Malissa Osgordby,2/10/1982,13 Anthes Point,MOBILE +ABC2020_866,Ruth Mannix,20/07/1988,7535 Towne Court,SYSTEM +ABC2020_867,Deirdre Kubik,16/06/1998,7 Jenna Lane,WEB +ABC2020_868,Malina Whitley,29/05/1983,3 Mallard Alley,ADMIN +ABC2020_869,Vince Clewer,31/10/1996,868 East Terrace,WEB +ABC2020_870,Culver Morforth,13/06/1981,21 Hoard Way,QA +ABC2020_871,Kerrin Garling,1/10/1991,2240 Becker Crossing,ADMIN +ABC2020_872,Lenna Blaine,20/03/1995,3032 Prairieview Center,WEB +ABC2020_873,Reggis Orta,3/8/1980,499 Laurel Lane,ADMIN +ABC2020_874,Clement Hasloch,29/03/1980,01508 Brickson Park Pass,QA +ABC2020_875,Darrell Goede,9/2/1982,20 Glacier Hill Drive,QA +ABC2020_876,Dotty Simmill,10/3/1997,86904 Algoma Hill,SYSTEM +ABC2020_877,Thorvald Poynzer,10/12/1993,5 Schiller Street,MOBILE +ABC2020_878,Niles Bunney,19/12/1980,6511 Gerald Point,QA +ABC2020_879,Kalila Sedgman,12/8/1987,81094 Sugar Junction,QA +ABC2020_880,Zorana Weedon,23/10/1993,1 Southridge Circle,MOBILE +ABC2020_881,Gaynor Spellecy,21/09/1998,4220 Lakeland Lane,WEB +ABC2020_882,Ekaterina Verrechia,20/05/1984,65338 Westport Trail,QA +ABC2020_883,Odele Rekes,13/01/1984,572 Fuller Court,WEB +ABC2020_884,Sella Boughen,26/09/1984,2 Brickson Park Alley,QA +ABC2020_885,Chancey Ferentz,20/09/1992,546 Service Street,WEB +ABC2020_886,Orsa Wressell,13/01/1988,31726 Dennis Drive,WEB +ABC2020_887,Dane Menloe,23/12/1997,2401 Scoville Pass,ADMIN +ABC2020_888,Boniface Winham,15/09/1982,30 Chive Court,WEB +ABC2020_889,Gherardo Allport,29/11/1989,3595 Jenifer Lane,MOBILE +ABC2020_890,Cherilyn Pember,26/06/1997,993 Gulseth Lane,WEB +ABC2020_891,Giovanna Kiley,6/6/1993,76 Glacier Hill Crossing,QA +ABC2020_892,Gustie Cecil,15/04/1984,2 Prentice Alley,WEB +ABC2020_893,Bondon McArd,13/09/1984,704 Talmadge Avenue,QA +ABC2020_894,Angelico Taylot,22/01/1997,5 Acker Center,ADMIN +ABC2020_895,Frannie Deering,30/12/1987,81166 Grasskamp Center,MOBILE +ABC2020_896,Haskel Van der Spohr,30/03/1982,487 Del Mar Junction,MOBILE +ABC2020_897,Maxi Storah,4/9/1991,6031 Kedzie Pass,SYSTEM +ABC2020_898,Leeanne McPeice,14/12/1984,6980 Golf Street,WEB +ABC2020_899,Lanita Rubra,22/11/1991,4192 Grasskamp Parkway,WEB +ABC2020_900,Elias Gorthy,17/03/1982,75 Arrowood Lane,ADMIN +ABC2020_901,Hayward Shrubb,21/06/1981,8 Northland Park,QA +ABC2020_902,Muhammad Basterfield,27/07/1996,67195 Summer Ridge Circle,QA +ABC2020_903,Feodor Heinig,4/8/1983,60291 Norway Maple Point,QA +ABC2020_904,Karine Wilkison,13/09/1987,43 Jenna Drive,SYSTEM +ABC2020_905,Neddie Ledford,31/08/1987,3201 Bay Pass,QA +ABC2020_906,Bryant Joney,1/2/1986,10 Erie Center,WEB +ABC2020_907,Kipper Sager,11/5/1984,8 Oakridge Trail,WEB +ABC2020_908,Quint Cornew,26/09/1993,0815 Jenifer Pass,MOBILE +ABC2020_909,Myrtice Ivanisov,27/06/1999,1060 Drewry Court,SYSTEM +ABC2020_910,Ulrick Gilyatt,7/12/1985,50 Mifflin Center,WEB +ABC2020_911,Claudian Hobgen,26/02/1997,2 Ridge Oak Plaza,SYSTEM +ABC2020_912,Ramsay Abbey,25/04/1996,2 Montana Hill,WEB +ABC2020_913,Sadella Matyugin,15/09/1980,96 Oakridge Alley,ADMIN +ABC2020_914,Editha Parton,29/04/1982,2589 Eagle Crest Hill,SYSTEM +ABC2020_915,Piotr Dietsche,7/8/1993,553 Huxley Point,SYSTEM +ABC2020_916,Cherlyn Sam,29/09/1980,88301 Algoma Street,WEB +ABC2020_917,Ambur Collingwood,14/07/1990,65 Sachtjen Crossing,SYSTEM +ABC2020_918,Geri Maxfield,21/05/1981,10534 Crowley Junction,MOBILE +ABC2020_919,Hendrika Beamish,25/02/1993,6670 Canary Road,WEB +ABC2020_920,Kathi Dandie,14/10/1985,43406 Vidon Place,MOBILE +ABC2020_921,Emmi Cockings,2/10/1996,229 Mariners Cove Alley,QA +ABC2020_922,Brandise Cullum,21/11/1999,50767 Northfield Alley,MOBILE +ABC2020_923,Iggy Mc Caughen,7/12/1981,8 Redwing Terrace,MOBILE +ABC2020_924,Demetre Poser,14/02/1988,64 Dixon Park,WEB +ABC2020_925,Vivian Durrad,15/04/1984,96609 Killdeer Park,QA +ABC2020_926,Melosa Canacott,21/01/1991,045 Judy Junction,WEB +ABC2020_927,Madelin Chellenham,11/9/1993,9215 Clove Way,QA +ABC2020_928,Rona Edgcumbe,16/12/1995,15051 Schurz Circle,SYSTEM +ABC2020_929,Ingrid Pitceathly,24/01/1998,19693 Reindahl Hill,QA +ABC2020_930,Ninon Alabone,10/11/1993,4788 Butternut Park,SYSTEM +ABC2020_931,Gladi Khristyukhin,25/06/1986,8 Florence Place,QA +ABC2020_932,Karlotte Zuann,10/10/1985,62220 Calypso Center,WEB +ABC2020_933,Yehudit Milmith,29/05/1999,954 Golf Course Center,QA +ABC2020_934,Trula Feathersby,6/6/1986,77029 Kim Plaza,SYSTEM +ABC2020_935,Hallsy Bogeys,18/03/1991,1803 Service Circle,QA +ABC2020_936,Heindrick Klausewitz,27/10/1991,8053 Vahlen Lane,SYSTEM +ABC2020_937,Ursuline Lorain,24/10/1984,2 Judy Circle,ADMIN +ABC2020_938,Perla Knowling,28/06/1987,210 Moose Crossing,QA +ABC2020_939,Jermain Liggens,4/12/1993,864 Spohn Pass,WEB +ABC2020_940,Becka Pietrzyk,9/4/1981,3896 Corben Crossing,WEB +ABC2020_941,Dara Goodspeed,19/09/1987,1630 Kim Place,SYSTEM +ABC2020_942,Eustacia Linforth,15/05/1987,6 Muir Way,ADMIN +ABC2020_943,Sanford Casey,20/12/1980,82839 Transport Crossing,WEB +ABC2020_944,Franky Carabet,14/11/1998,0352 Monica Court,SYSTEM +ABC2020_945,Flynn Lambart,27/03/1994,00232 Anthes Plaza,SYSTEM +ABC2020_946,Mattheus Tooth,12/3/1983,9784 Cardinal Pass,SYSTEM +ABC2020_947,Rosamond Linbohm,3/12/1993,55 Thompson Lane,QA +ABC2020_948,Hulda Habens,5/11/1999,39 Menomonie Alley,MOBILE +ABC2020_949,Corine Cawsby,24/02/1989,8926 Granby Court,SYSTEM +ABC2020_950,Talia Kemmons,5/7/1995,86103 Village Green Lane,WEB +ABC2020_951,Adey Measey,3/7/1987,65985 Autumn Leaf Street,WEB +ABC2020_952,Booth Prium,22/10/1987,47 Quincy Parkway,SYSTEM +ABC2020_953,Way Goldhill,18/04/1993,43525 Novick Road,MOBILE +ABC2020_954,Uta Brando,1/8/1981,912 Bobwhite Place,SYSTEM +ABC2020_955,Floyd Holwell,22/10/1999,9 Bluestem Drive,QA +ABC2020_956,Andriette Acory,25/08/1985,50945 Pearson Street,MOBILE +ABC2020_957,Grace Edds,22/10/1990,2636 Sachtjen Parkway,MOBILE +ABC2020_958,Jewelle Barley,5/6/1992,9 Debs Drive,WEB +ABC2020_959,Clarey Wellum,5/11/1982,322 School Terrace,SYSTEM +ABC2020_960,Tadio Tarney,27/01/1987,6 Pine View Point,QA +ABC2020_961,Josiah Haggith,17/12/1991,947 Spaight Junction,WEB +ABC2020_962,Barrett Stanes,1/12/1989,1245 Schlimgen Hill,WEB +ABC2020_963,Guntar Ruoss,4/4/1980,72392 Browning Plaza,QA +ABC2020_964,Hazlett Elnough,18/10/1987,2575 Basil Court,WEB +ABC2020_965,Baldwin Coker,20/12/1985,53 Schiller Hill,QA +ABC2020_966,Dolley Spearman,10/10/1989,7193 Shasta Point,WEB +ABC2020_967,Dianemarie Klaiser,4/9/1997,9479 Linden Park,SYSTEM +ABC2020_968,Darrin Jacomb,10/5/1994,7581 Hoffman Terrace,WEB +ABC2020_969,Janella Ramstead,13/03/1984,3 Prairieview Junction,MOBILE +ABC2020_970,Allison Bassford,18/05/1998,08 Pearson Lane,WEB +ABC2020_971,Banky Do Rosario,14/06/1988,4599 Bartelt Road,QA +ABC2020_972,Aurelia Shawdforth,20/10/1981,744 Huxley Center,SYSTEM +ABC2020_973,Lizzy Landsman,13/10/1988,86173 Moland Terrace,WEB +ABC2020_974,Calida Andren,3/7/1980,50 Claremont Lane,QA +ABC2020_975,Augusto Lapthorne,30/01/1990,06 Rieder Circle,SYSTEM +ABC2020_976,Maura Jarrelt,26/11/1980,8 Stoughton Avenue,WEB +ABC2020_977,Anthiathia Sandells,30/03/1991,55015 Kingsford Way,MOBILE +ABC2020_978,Teirtza O'Spillane,30/04/1980,49 Blackbird Crossing,MOBILE +ABC2020_979,Starla MacKniely,19/11/1988,0576 Kingsford Street,SYSTEM +ABC2020_980,Gerhardt Cramond,8/9/1994,4 Grayhawk Crossing,SYSTEM +ABC2020_981,Hedwiga Leving,10/9/1996,00 Evergreen Circle,ADMIN +ABC2020_982,Deidre Quaintance,13/07/1983,71 Longview Point,WEB +ABC2020_983,Gallagher Buy,30/05/1986,23056 Killdeer Court,QA +ABC2020_984,Nessy Crux,24/04/1990,8167 Melrose Junction,WEB +ABC2020_985,Lammond Sokill,4/5/1999,9 Gateway Road,QA +ABC2020_986,Zandra Lauks,6/3/1983,4 Twin Pines Way,MOBILE +ABC2020_987,Magnum Djordjevic,30/05/1993,12232 Old Shore Avenue,WEB +ABC2020_988,Bruis Mintram,4/1/1992,80 Towne Trail,WEB +ABC2020_989,Cchaddie McCreedy,6/8/1984,365 Farwell Avenue,QA +ABC2020_990,Rodolph MacClancey,31/01/1996,081 Sycamore Avenue,QA +ABC2020_991,Kati Nickoll,30/11/1990,891 Merchant Lane,WEB +ABC2020_992,Haydon Ditchfield,30/04/1996,5402 Sauthoff Plaza,QA +ABC2020_993,Dick Steptow,8/11/1990,414 Monument Pass,SYSTEM +ABC2020_994,Honey Ughelli,31/08/1988,7 Gerald Hill,SYSTEM +ABC2020_995,Barrett Hillyatt,21/01/1994,921 Pearson Parkway,WEB +ABC2020_996,Angil Dubery,22/09/1990,918 Prairieview Road,QA +ABC2020_997,Ardath Gratland,28/01/1992,24145 Burrows Drive,QA +ABC2020_998,Leslie Haug,22/01/1990,75614 Golf Course Point,QA +ABC2020_999,Benita Gurnee,13/03/1999,98319 Magdeline Court,SYSTEM +ABC2020_1000,Marybeth Mawhinney,29/03/1987,8921 Melvin Point,MOBILE +HUS2020_1,Melania Derle,25/03/1988,66986 Eagan Parkway,SYSTEM +HUS2020_2,Englebert Kilfeather,9/6/1987,63 Basil Trail,ADMIN +HUS2020_3,Loreen Shaves,26/09/1983,91 Clyde Gallagher Junction,WEB +HUS2020_4,Cristiano Gebbie,28/07/1991,89903 Shelley Lane,QA +HUS2020_5,Yorker Winnister,6/1/1988,774 Farwell Alley,WEB +HUS2020_6,Arel Harrow,14/05/1992,99459 Warner Junction,WEB +HUS2020_7,Nelli Delgardillo,19/07/1989,870 Summerview Center,SYSTEM +HUS2020_8,Cosmo Petren,15/08/1991,9054 Porter Center,SYSTEM +HUS2020_9,Gwenneth Ropartz,14/04/1990,50 Blue Bill Park Pass,MOBILE +HUS2020_10,Ileana Toyne,21/03/1985,9439 Lien Center,WEB +HUS2020_11,Norine Kalaher,17/09/1982,2 Commercial Lane,WEB +HUS2020_12,Teodora Ickowicz,11/3/1997,3 Mallard Circle,QA +HUS2020_13,Axe Iuorio,20/08/1990,137 Ridgeway Lane,WEB +HUS2020_14,Pia Stutard,12/7/1990,9961 Birchwood Court,WEB +HUS2020_15,Mandi Bagenal,10/7/1993,73 Nevada Hill,WEB +HUS2020_16,Gail Attenbarrow,29/01/1999,7 Nancy Plaza,SYSTEM +HUS2020_17,Lalo Costigan,9/8/1989,8759 Iowa Place,WEB +HUS2020_18,Vernen Vain,22/04/1997,68 Tennessee Alley,QA +HUS2020_19,Kally Wogden,4/8/1986,824 Lake View Court,WEB +HUS2020_20,Etan Chettle,5/1/1998,0 Rutledge Point,SYSTEM +HUS2020_21,Emili Cadney,7/9/1996,84948 Schlimgen Trail,QA +HUS2020_22,Brad Hugenin,27/07/1982,395 Arapahoe Terrace,MOBILE +HUS2020_23,Olympia Clemmow,2/3/1995,0421 Esch Plaza,QA +HUS2020_24,Hagen Liversidge,21/03/1985,882 Huxley Point,WEB +HUS2020_25,Guthrie Dow,13/12/1992,7 Blue Bill Park Way,ADMIN +HUS2020_26,Emmaline Kenningham,2/10/1980,5 Ramsey Plaza,WEB +HUS2020_27,Mitchael Scamadin,9/11/1986,610 Mccormick Drive,SYSTEM +HUS2020_28,Barbi Paydon,15/12/1990,93251 Eastlawn Place,WEB +HUS2020_29,Lira Byatt,2/6/1999,658 Rowland Way,MOBILE +HUS2020_30,Sophey Di Meo,26/03/1998,70 Eagle Crest Street,SYSTEM +HUS2020_31,Barr Twaits,18/06/1985,21 Manufacturers Center,QA +HUS2020_32,Kerk Chiechio,26/04/1994,42686 Hudson Park,MOBILE +HUS2020_33,Cassie Brough,28/03/1980,7 Comanche Drive,SYSTEM +HUS2020_34,Nari Groundwator,4/11/1997,6248 Anthes Hill,WEB +HUS2020_35,Osmund Brinicombe,14/08/1996,562 Hazelcrest Pass,WEB +HUS2020_36,Wes Ambrogini,9/2/1994,6818 Mallory Center,QA +HUS2020_37,Joete Le feuvre,30/03/1981,83 Forest Run Street,QA +HUS2020_38,Cybil Oleshunin,28/07/1987,609 Paget Trail,SYSTEM +HUS2020_39,Russ Trainor,11/2/1989,14 Northfield Plaza,WEB +HUS2020_40,Michale Erwin,17/08/1992,66 Grasskamp Way,MOBILE +HUS2020_41,Lexie Basso,10/2/1990,4303 Gateway Avenue,QA +HUS2020_42,Johnath Gerner,21/11/1980,0 Vermont Lane,SYSTEM +HUS2020_43,Ferris Potzold,7/7/1985,4 New Castle Alley,MOBILE +HUS2020_44,Margy Collinge,2/11/1999,889 Prairie Rose Junction,QA +HUS2020_45,Jordanna Garbutt,6/10/1985,288 Northwestern Point,MOBILE +HUS2020_46,Mohandas Matasov,2/11/1982,25969 Kedzie Court,MOBILE +HUS2020_47,Bernie Burnes,8/3/1983,67 Arapahoe Alley,WEB +HUS2020_48,Maryellen Gras,16/12/1994,8124 Buhler Avenue,WEB +HUS2020_49,Jermaine Frantz,2/12/1988,3090 Ramsey Center,ADMIN +HUS2020_50,Gabrielle Blythe,5/8/1998,3388 American Trail,WEB +HUS2020_51,Veronika Jermy,2/11/1999,7546 Cody Circle,MOBILE +HUS2020_52,Orland Verna,28/02/1985,96 Laurel Road,MOBILE +HUS2020_53,Prudi Hamon,20/02/1995,621 Golf Place,MOBILE +HUS2020_54,Hillier Tilio,7/12/1982,81694 Beilfuss Center,WEB +HUS2020_55,Kori Rickson,16/06/1986,2828 Hagan Point,QA +HUS2020_56,Constancy Pellant,10/10/1990,9304 Fieldstone Way,MOBILE +HUS2020_57,Sky Vasilyonok,7/7/1989,6315 Thackeray Trail,QA +HUS2020_58,Marrilee Precious,22/10/1987,52 Reindahl Point,QA +HUS2020_59,Pen Okroy,6/8/1995,04 Transport Lane,WEB +HUS2020_60,Lurline Pleasants,14/02/1980,448 Waywood Pass,WEB +HUS2020_61,Caritta St Angel,24/06/1996,463 Kennedy Place,ADMIN +HUS2020_62,Jesse Rowantree,3/2/1987,027 Kipling Street,WEB +HUS2020_63,Marwin Culkin,23/08/1996,53924 Victoria Road,MOBILE +HUS2020_64,Ring Lilywhite,17/06/1998,9 Monument Terrace,WEB +HUS2020_65,Rodrigo Windridge,21/02/1999,7 Delaware Trail,SYSTEM +HUS2020_66,Lucia Shakspeare,27/09/1991,885 Di Loreto Junction,QA +HUS2020_67,Vito Trustrie,12/3/1980,1 Rockefeller Plaza,QA +HUS2020_68,Marta Dykes,17/04/1989,44 Sherman Alley,WEB +HUS2020_69,Bald Husbands,4/6/1994,53 Forest Crossing,MOBILE +HUS2020_70,Leonore Begg,24/05/1990,728 Merchant Alley,SYSTEM +HUS2020_71,Merry D'Aeth,25/07/1983,73426 Almo Avenue,WEB +HUS2020_72,Lyn Baughen,23/03/1983,82984 Lakeland Circle,MOBILE +HUS2020_73,Esdras Birdwistle,15/04/1985,9 Havey Hill,SYSTEM +HUS2020_74,Angus Ilett,20/12/1994,641 Saint Paul Center,MOBILE +HUS2020_75,Milzie Braker,28/03/1989,234 Esker Road,WEB +HUS2020_76,Dell Kydde,13/05/1981,6 Fisk Way,SYSTEM +HUS2020_77,Trenna Mollnar,11/6/1982,8 Bonner Parkway,MOBILE +HUS2020_78,Atlante Terrett,16/06/1981,9 Old Gate Plaza,QA +HUS2020_79,Giana Dibner,9/1/1995,33 Arrowood Street,SYSTEM +HUS2020_80,Gilberte Bohlens,31/07/1999,2680 Spaight Place,SYSTEM +HUS2020_81,Mabelle Eaklee,24/12/1993,11039 Stone Corner Lane,SYSTEM +HUS2020_82,Rina Ody,25/12/1993,25657 Lukken Pass,SYSTEM +HUS2020_83,Ara Showt,2/8/1984,80210 Old Gate Plaza,SYSTEM +HUS2020_84,Gabriello Scopyn,17/04/1986,55 Karstens Lane,SYSTEM +HUS2020_85,Kalina Burle,13/03/1992,34588 Lerdahl Junction,MOBILE +HUS2020_86,Ashla Wickersham,18/11/1983,4 Quincy Point,WEB +HUS2020_87,Belia Egdale,9/1/1989,4684 Eagle Crest Drive,MOBILE +HUS2020_88,Nat MacCaghan,15/09/1983,0836 Corben Point,ADMIN +HUS2020_89,Sauncho Hands,13/06/1988,03 Fallview Terrace,WEB +HUS2020_90,Bibi Golsthorp,7/11/1988,297 Anthes Court,SYSTEM +HUS2020_91,Allyson Hadgraft,8/9/1994,840 Morrow Crossing,WEB +HUS2020_92,Archaimbaud Bartali,24/05/1980,357 Elka Lane,MOBILE +HUS2020_93,Nels Raspin,7/5/1981,343 Bultman Court,WEB +HUS2020_94,Giuseppe Penbarthy,31/08/1996,532 Hooker Junction,ADMIN +HUS2020_95,Emmy Joska,24/12/1987,321 Florence Drive,WEB +HUS2020_96,Mikkel Fishpool,6/5/1986,44 Ramsey Terrace,SYSTEM +HUS2020_97,Cody Duplock,14/07/1980,6 Monterey Lane,SYSTEM +HUS2020_98,Alameda Barford,26/03/1997,533 Harbort Alley,WEB +HUS2020_99,Nicolas Lorek,3/6/1989,3633 Walton Circle,QA +HUS2020_100,Janenna Pollock,31/03/1988,49328 Park Meadow Junction,QA +HUS2020_101,Fayre Betke,27/05/1992,5 Golden Leaf Drive,QA +HUS2020_102,Natalya Widd,4/4/1988,89964 Graceland Street,SYSTEM +HUS2020_103,Moss Sworder,25/02/1985,7293 Sunnyside Drive,SYSTEM +HUS2020_104,Trudy Fulks,28/05/1995,26308 Everett Court,WEB +HUS2020_105,Vito Hutcheson,31/07/1986,67853 Westend Point,SYSTEM +HUS2020_106,Edita Ricardet,15/08/1987,58067 Stuart Alley,ADMIN +HUS2020_107,Petunia Musicka,2/3/1983,5417 Canary Circle,QA +HUS2020_108,Munmro Hardy-Piggin,13/03/1995,9 Memorial Pass,QA +HUS2020_109,Kylila Cinavas,4/12/1993,4 High Crossing Avenue,WEB +HUS2020_110,Gillian Sivell,18/12/1980,02 Carey Hill,ADMIN +HUS2020_111,Norby Laidel,18/05/1983,4726 Hermina Center,WEB +HUS2020_112,Malinde Pettecrew,23/01/1982,11 Manitowish Plaza,QA +HUS2020_113,Armand Haggerwood,4/4/1998,3770 Rieder Road,WEB +HUS2020_114,Marna Duff,24/01/1984,81896 Magdeline Center,SYSTEM +HUS2020_115,Tanney Lynd,24/09/1996,0 Bay Trail,MOBILE +HUS2020_116,Courtney Gehrts,28/11/1987,1606 Mockingbird Lane,WEB +HUS2020_117,Juana Bosward,21/09/1992,763 Columbus Circle,QA +HUS2020_118,Greg McCuish,18/06/1984,85 Sheridan Junction,WEB +HUS2020_119,Sayres Lattey,8/5/1986,1719 Tennyson Junction,MOBILE +HUS2020_120,Kristoforo Viger,25/07/1988,51660 Lakeland Park,ADMIN +HUS2020_121,Bonni Barbe,30/08/1989,06 Gina Alley,WEB +HUS2020_122,Delia MacRorie,13/01/1988,52448 Artisan Circle,SYSTEM +HUS2020_123,Marybelle Flancinbaum,9/2/1990,6 Killdeer Junction,QA +HUS2020_124,Menard MacAskie,13/01/1992,19 Dorton Center,SYSTEM +HUS2020_125,Verina Feighney,10/5/1997,04 Walton Pass,WEB +HUS2020_126,Lora Sabban,3/12/1984,967 Cottonwood Drive,WEB +HUS2020_127,Fredericka Waymont,27/09/1980,614 Northport Way,SYSTEM +HUS2020_128,Kilian Kyd,19/04/1991,0429 Nancy Drive,MOBILE +HUS2020_129,Egon Danser,21/09/1990,59131 Atwood Crossing,SYSTEM +HUS2020_130,Olympie Gilloran,22/06/1999,8994 Center Trail,SYSTEM +HUS2020_131,Ervin Skpsey,16/04/1981,09 Veith Trail,WEB +HUS2020_132,Sissy Climer,11/12/1990,472 Hanson Terrace,MOBILE +HUS2020_133,Edythe Middleton,26/08/1990,05 Lukken Street,QA +HUS2020_134,Zak Bernard,20/04/1984,77 Chinook Park,SYSTEM +HUS2020_135,Georgianna Quested,12/10/1998,9757 Sommers Street,QA +HUS2020_136,Johan Ditty,7/9/1982,6 Vermont Street,ADMIN +HUS2020_137,Hyacinthie Raggitt,29/01/1989,3 Kim Junction,QA +HUS2020_138,Pippa Lante,28/11/1982,8550 Barnett Avenue,QA +HUS2020_139,Brynne Arrol,6/9/1987,0 Golden Leaf Pass,WEB +HUS2020_140,Raimund Prendiville,19/01/1996,7296 Schiller Terrace,MOBILE +HUS2020_141,Carlos Screach,10/9/1981,7904 Karstens Plaza,WEB +HUS2020_142,Fionna Rudgley,13/05/1986,26279 Westridge Pass,WEB +HUS2020_143,My Balazot,27/02/1995,03 Mayer Place,MOBILE +HUS2020_144,Maje Sanchez,13/01/1989,7 Bashford Junction,WEB +HUS2020_145,Gwendolen Hugland,29/09/1997,74 Acker Plaza,QA +HUS2020_146,Bernetta Rangeley,23/11/1986,8063 Forest Dale Parkway,SYSTEM +HUS2020_147,Emmerich Lytlle,14/12/1984,88 Straubel Court,WEB +HUS2020_148,Alwin Ungerechts,15/04/1982,15791 Northport Lane,QA +HUS2020_149,Sisely Gulland,24/06/1982,9768 Esker Terrace,MOBILE +HUS2020_150,Kristopher Narraway,17/08/1984,3 South Point,MOBILE +HUS2020_151,Dodie Hemerijk,30/06/1994,73832 Eastlawn Parkway,MOBILE +HUS2020_152,Valentine Bridgland,27/08/1995,3 Bellgrove Terrace,WEB +HUS2020_153,Brandie Oakly,10/11/1998,48 Michigan Trail,WEB +HUS2020_154,Kennith Sibylla,2/6/1981,8957 Pawling Drive,SYSTEM +HUS2020_155,Sutherlan Sancias,17/08/1992,55758 South Court,MOBILE +HUS2020_156,Atlante Sondon,7/8/1981,67647 Westend Hill,ADMIN +HUS2020_157,Annecorinne Wadeson,25/11/1996,640 Milwaukee Plaza,QA +HUS2020_158,Arlie Bloyes,25/01/1983,5 Goodland Way,WEB +HUS2020_159,Eugenia Linforth,6/5/1987,851 Delladonna Drive,ADMIN +HUS2020_160,Margarete Dixey,1/12/1996,78 Anderson Pass,MOBILE +HUS2020_161,Missy Mion,12/10/1998,79920 Bobwhite Terrace,MOBILE +HUS2020_162,Giorgio Pike,14/08/1980,19 Texas Alley,MOBILE +HUS2020_163,Lacie Dibbert,19/06/1999,3 Melrose Parkway,MOBILE +HUS2020_164,Valerie Holdworth,8/8/1986,3 Katie Terrace,WEB +HUS2020_165,Micah Bockin,27/09/1982,03071 Haas Point,MOBILE +HUS2020_166,Raff Base,22/04/1991,2923 Washington Crossing,SYSTEM +HUS2020_167,Kandace Worham,21/11/1982,2 Bonner Trail,SYSTEM +HUS2020_168,Godfrey Kiljan,6/11/1988,9 Larry Street,MOBILE +HUS2020_169,Janeczka Wysome,18/02/1993,64503 Columbus Parkway,SYSTEM +HUS2020_170,Micheil Barajaz,5/6/1999,6535 Washington Court,WEB +HUS2020_171,Cornie Goodliffe,19/03/1985,1 Gulseth Park,ADMIN +HUS2020_172,Kellie Knoton,7/11/1993,25 Forest Run Drive,QA +HUS2020_173,Filmore Tomsen,11/1/1984,2870 Stephen Junction,WEB +HUS2020_174,Lombard Stonbridge,11/1/1998,2 Gerald Pass,QA +HUS2020_175,Jean Saffen,5/7/1998,934 Birchwood Road,WEB +HUS2020_176,Melisande Bulch,9/12/1980,59 Parkside Circle,MOBILE +HUS2020_177,Arman Cheers,24/03/1985,0 Sachtjen Circle,WEB +HUS2020_178,Scottie Crimp,31/07/1997,5422 Dovetail Drive,QA +HUS2020_179,Alphard Reichardt,12/5/1988,79836 Marcy Crossing,QA +HUS2020_180,Alexis Bramsen,5/9/1999,6101 Mitchell Crossing,QA +HUS2020_181,Umberto Gaudon,30/07/1995,4 Bartillon Point,MOBILE +HUS2020_182,Cheryl Ghion,4/3/1982,030 Holy Cross Drive,MOBILE +HUS2020_183,Sawyer Withers,18/01/1988,81 Messerschmidt Road,MOBILE +HUS2020_184,Alex Piatkow,26/09/1989,6431 Bluestem Avenue,MOBILE +HUS2020_185,Nikos Mandy,25/09/1984,36 Weeping Birch Court,WEB +HUS2020_186,Octavius Wartnaby,27/12/1989,3093 Buell Crossing,MOBILE +HUS2020_187,Sara Hryniewicki,17/03/1995,2660 Clemons Parkway,WEB +HUS2020_188,Torre Deener,18/04/1996,83 Summit Trail,MOBILE +HUS2020_189,Adrienne Fridaye,20/09/1981,474 Alpine Avenue,SYSTEM +HUS2020_190,Collete Lapides,14/10/1998,51712 Stang Pass,ADMIN +HUS2020_191,Isobel Paumier,27/01/1992,717 Oxford Street,SYSTEM +HUS2020_192,Pooh Dawbury,5/11/1996,34372 Glendale Pass,MOBILE +HUS2020_193,Sela Donn,8/10/1995,450 Sherman Park,MOBILE +HUS2020_194,Alexandr Gatecliffe,17/08/1990,659 Hoepker Street,QA +HUS2020_195,Lettie Rabson,24/09/1994,5 Kennedy Road,MOBILE +HUS2020_196,Coleen Wycherley,22/01/1986,7 Melody Parkway,WEB +HUS2020_197,Ford Craggs,25/11/1997,5 Bashford Terrace,WEB +HUS2020_198,Tatiania Edgeley,10/2/1993,96 Golf View Avenue,SYSTEM +HUS2020_199,Sula Paullin,20/07/1989,3 Thackeray Trail,SYSTEM +HUS2020_200,Katti Hoyland,18/07/1997,00 Corry Place,MOBILE +HUS2020_201,Dorrie Tebbs,19/03/1992,05310 Bowman Terrace,WEB +HUS2020_202,Sherry Morais,25/08/1984,56716 Summit Junction,QA +HUS2020_203,Mei Callear,8/10/1984,8640 Golden Leaf Place,ADMIN +HUS2020_204,Emelia Ruddoch,28/04/1997,3547 Forest Run Pass,SYSTEM +HUS2020_205,Bethina Frostdicke,15/06/1981,0037 Dakota Lane,MOBILE +HUS2020_206,Benoite Litherborough,24/10/1995,16765 Bunker Hill Junction,WEB +HUS2020_207,Wally Davys,1/11/1988,94065 Prentice Park,WEB +HUS2020_208,Ransell Auston,20/09/1996,209 Clemons Way,WEB +HUS2020_209,Dedie Leahair,26/01/1992,97 Mifflin Junction,QA +HUS2020_210,Vale Wyburn,28/12/1986,1557 New Castle Point,WEB +HUS2020_211,Cecelia Divine,16/10/1989,9 Shasta Place,WEB +HUS2020_212,Paulita Romayn,15/07/1991,190 Hayes Trail,MOBILE +HUS2020_213,Bessy Gravener,10/11/1994,1 Crowley Way,QA +HUS2020_214,Rolph Veryan,13/03/1995,466 Jay Point,WEB +HUS2020_215,Stuart Thirlaway,14/10/1985,8058 Farwell Crossing,SYSTEM +HUS2020_216,Octavius Napoleone,4/9/1998,64156 Manufacturers Circle,QA +HUS2020_217,Isidore Jeffcoate,27/12/1981,099 Jana Street,WEB +HUS2020_218,Joel Edson,3/8/1987,545 Oakridge Alley,WEB +HUS2020_219,George Peres,29/05/1991,02 Merrick Terrace,QA +HUS2020_220,Roxane Munden,16/03/1986,1790 Esch Trail,SYSTEM +HUS2020_221,Marchall Elcoate,3/9/1985,049 Milwaukee Avenue,ADMIN +HUS2020_222,Jaime Maxted,24/05/1997,22 Dexter Circle,ADMIN +HUS2020_223,Ainslie Tenney,10/12/1984,16 Summer Ridge Park,SYSTEM +HUS2020_224,Lewie Heppenspall,6/1/1999,14163 Dunning Center,MOBILE +HUS2020_225,Maisey Sebring,12/10/1982,9 Lotheville Lane,SYSTEM +HUS2020_226,Keelia MacAloren,30/04/1991,74 Thackeray Center,QA +HUS2020_227,Karlie Gheerhaert,6/1/1991,8 Warbler Terrace,MOBILE +HUS2020_228,Lucine Rraundl,12/9/1989,1 Thackeray Plaza,WEB +HUS2020_229,Patrizio Rudyard,10/6/1987,524 Leroy Circle,WEB +HUS2020_230,Isidoro Castillo,17/03/1985,80334 Oxford Center,SYSTEM +HUS2020_231,Wally Kayne,4/4/1995,7465 Goodland Trail,QA +HUS2020_232,Joyann Goodlett,29/08/1990,31855 Shelley Street,WEB +HUS2020_233,Mac Checkley,15/01/1982,7308 Sunbrook Circle,ADMIN +HUS2020_234,Justine Cartmell,29/01/1987,3540 Del Mar Hill,ADMIN +HUS2020_235,Warde Wemes,20/05/1993,5 Jackson Drive,QA +HUS2020_236,Arly Shewon,8/6/1994,61366 Caliangt Place,SYSTEM +HUS2020_237,Syman Spoure,28/05/1987,35061 Glacier Hill Lane,QA +HUS2020_238,Ravid Peplow,26/08/1989,39399 Florence Parkway,SYSTEM +HUS2020_239,Kennett Saynor,20/11/1989,0 Knutson Road,WEB +HUS2020_240,Wandie Krates,30/10/1985,7 Vermont Lane,MOBILE +HUS2020_241,Britni Dove,11/9/1986,352 Becker Plaza,MOBILE +HUS2020_242,Devina Kimber,6/6/1996,272 Forest Dale Circle,MOBILE +HUS2020_243,Clarisse Bonicelli,29/08/1984,2931 Donald Street,QA +HUS2020_244,Mikey Sorrill,6/10/1985,2881 Esker Lane,QA +HUS2020_245,Ralf Doveston,25/08/1992,8167 Arrowood Pass,MOBILE +HUS2020_246,Anni Cattlow,17/03/1983,0142 Sunfield Hill,MOBILE +HUS2020_247,Jan Yuryichev,30/12/1980,07 Dahle Pass,ADMIN +HUS2020_248,Erhard Smoughton,23/03/1987,3 Bluejay Pass,SYSTEM +HUS2020_249,Huberto Portsmouth,5/10/1986,8179 Tennessee Drive,MOBILE +HUS2020_250,Cecil Shovlin,27/09/1988,4351 Toban Parkway,WEB +HUS2020_251,Winston Beeston,11/5/1988,59553 Farwell Pass,ADMIN +HUS2020_252,Gauthier Galton,19/01/1987,82 Farragut Avenue,MOBILE +HUS2020_253,Sheridan Megroff,24/07/1982,6 Anthes Place,ADMIN +HUS2020_254,Philis Gomersall,16/04/1993,85650 Elmside Avenue,MOBILE +HUS2020_255,Diego Ledekker,12/8/1981,18443 Sommers Pass,QA +HUS2020_256,Land Overstreet,6/1/1997,4330 Sheridan Center,SYSTEM +HUS2020_257,Corinne Eitter,21/05/1997,93615 Schurz Street,WEB +HUS2020_258,Lucius Dudeney,5/10/1996,146 Weeping Birch Trail,MOBILE +HUS2020_259,Killie Almak,11/9/1999,4408 Rusk Center,QA +HUS2020_260,Arlan Willowby,19/11/1985,3 Buell Pass,SYSTEM +HUS2020_261,Jesus MacFarlane,17/05/1987,041 Atwood Point,MOBILE +HUS2020_262,Sayres Robus,24/10/1989,4090 Delladonna Trail,WEB +HUS2020_263,Wait Ager,1/9/1992,4682 Grover Way,WEB +HUS2020_264,Richardo Rounsefull,9/8/1986,3289 Upham Crossing,SYSTEM +HUS2020_265,Idette Paulot,24/04/1985,542 Linden Place,MOBILE +HUS2020_266,Wyn Hanscom,7/3/1996,37793 Buena Vista Point,MOBILE +HUS2020_267,Fallon Conaboy,3/11/1981,5026 Lunder Crossing,MOBILE +HUS2020_268,Ernestine Fradgley,11/1/1992,21 Esch Drive,ADMIN +HUS2020_269,Alison Tatnell,15/12/1995,40 Moose Hill,MOBILE +HUS2020_270,Tobias Kringe,6/11/1983,0668 Fuller Center,WEB +HUS2020_271,Fiona Foxton,26/12/1983,9805 Forest Dale Point,MOBILE +HUS2020_272,Othella Deetlefs,28/02/1993,1915 Canary Pass,WEB +HUS2020_273,Darby Reskelly,3/11/1987,32707 Moland Road,QA +HUS2020_274,Alfi Labat,31/05/1998,9 Longview Parkway,WEB +HUS2020_275,Delano Gouldsmith,17/09/1982,8983 Susan Terrace,QA +HUS2020_276,Sophia Hannaway,15/06/1999,76 Summit Park,SYSTEM +HUS2020_277,Garland Birdsey,21/02/1990,7 Veith Crossing,WEB +HUS2020_278,Morry Sloyan,15/11/1990,285 Harbort Circle,WEB +HUS2020_279,Jill Chidley,3/8/1985,45570 Elgar Way,WEB +HUS2020_280,Kanya Bratt,28/04/1994,7219 Tomscot Alley,ADMIN +HUS2020_281,Kat Capnerhurst,9/7/1995,121 Gulseth Drive,ADMIN +HUS2020_282,Ettie Rominov,25/04/1990,61912 Shelley Hill,WEB +HUS2020_283,Ursuline Keane,8/10/1995,00620 Fairview Alley,MOBILE +HUS2020_284,Leo Ivers,22/07/1987,67148 Claremont Road,SYSTEM +HUS2020_285,Jonie Jewel,5/1/1980,62597 Old Shore Drive,MOBILE +HUS2020_286,Elli Joselevitch,26/02/1997,3834 Hauk Way,WEB +HUS2020_287,Antonietta Ricoald,18/10/1982,73 Scoville Alley,SYSTEM +HUS2020_288,Olwen Berk,10/8/1988,34 Summerview Hill,WEB +HUS2020_289,Everett Deener,16/08/1989,947 Comanche Park,WEB +HUS2020_290,Audry Leedes,16/05/1995,99177 Sage Lane,QA +HUS2020_291,Johannah Firby,25/12/1990,7 Lotheville Parkway,MOBILE +HUS2020_292,Tracey Bohin,15/09/1988,2 Arkansas Place,QA +HUS2020_293,Betta Strettell,28/01/1992,0108 Bluejay Park,WEB +HUS2020_294,Eadith Oleszkiewicz,13/09/1982,212 Emmet Alley,SYSTEM +HUS2020_295,Suzy Goves,19/10/1990,16811 Crescent Oaks Alley,WEB +HUS2020_296,Winne Anear,25/04/1995,00 Bonner Terrace,SYSTEM +HUS2020_297,Tasha Mumberson,14/01/1992,70358 Thackeray Trail,WEB +HUS2020_298,Shelly Kitson,12/5/1999,289 Monument Park,WEB +HUS2020_299,Stephi Falconbridge,5/9/1987,891 Dorton Way,WEB +HUS2020_300,Kessiah Shales,4/5/1991,7365 Merchant Park,QA +HUS2020_301,Aldin Varfolomeev,14/04/1997,638 Onsgard Trail,MOBILE +HUS2020_302,Rozella Nourse,21/02/1992,83867 Raven Crossing,QA +HUS2020_303,Berky Zannetti,20/09/1981,6268 Cody Lane,WEB +HUS2020_304,Lynnett Tuminelli,8/11/1986,9 Onsgard Lane,SYSTEM +HUS2020_305,Phelia Nulty,30/06/1995,1240 Del Mar Hill,WEB +HUS2020_306,Leigh Koche,31/01/1997,06 Summit Parkway,WEB +HUS2020_307,Pepillo Attoe,27/04/1998,557 Calypso Park,WEB +HUS2020_308,Beverlee Sharvell,9/4/1984,0345 Redwing Trail,MOBILE +HUS2020_309,Bord Ritmeyer,1/10/1998,2740 Redwing Street,MOBILE +HUS2020_310,Ingeborg Goldbourn,24/09/1985,013 Golf Course Court,ADMIN +HUS2020_311,Blondell Beardow,26/08/1988,30136 Ridge Oak Point,MOBILE +HUS2020_312,Cointon Goodacre,1/10/1980,69 Cascade Hill,WEB +HUS2020_313,Felice Filtness,4/10/1990,81284 Merchant Drive,QA +HUS2020_314,Pietro Yaakov,22/02/1993,32 Mallard Road,ADMIN +HUS2020_315,Darlene Gentiry,20/06/1996,312 Weeping Birch Road,MOBILE +HUS2020_316,Eulalie Thornham,5/5/1996,303 Dayton Circle,MOBILE +HUS2020_317,Rey Paladini,28/04/1985,3 Sundown Terrace,WEB +HUS2020_318,Benoite Plastow,25/11/1991,0742 Alpine Avenue,WEB +HUS2020_319,Nance Ferrario,24/06/1994,361 Dryden Center,QA +HUS2020_320,Lindsay Treacy,2/9/1981,3 Utah Lane,WEB +HUS2020_321,Jere Rochford,3/7/1997,32 Prentice Crossing,QA +HUS2020_322,Tymon Jobbings,4/5/1986,52 Red Cloud Trail,QA +HUS2020_323,Graeme Bukowski,14/07/1993,6205 Dapin Way,QA +HUS2020_324,Anita Sparshott,16/05/1995,99848 Sage Hill,SYSTEM +HUS2020_325,Deloris Librey,2/8/1996,39097 Fieldstone Point,MOBILE +HUS2020_326,Imogene De Fraine,29/11/1997,1031 Drewry Alley,WEB +HUS2020_327,Gunner Champain,2/11/1985,7 Westridge Crossing,SYSTEM +HUS2020_328,Nomi Pitrelli,23/06/1987,36472 Waubesa Place,MOBILE +HUS2020_329,Leodora Garric,4/10/1990,6367 Melody Avenue,WEB +HUS2020_330,Ganny Vandenhoff,13/01/1999,70153 Messerschmidt Hill,QA +HUS2020_331,John Hardeman,26/08/1987,6464 Briar Crest Trail,MOBILE +HUS2020_332,Dale Adamou,30/04/1993,66 Mockingbird Terrace,SYSTEM +HUS2020_333,Marga Leishman,12/2/1982,9 Milwaukee Junction,QA +HUS2020_334,Tami Aggas,8/7/1994,7 Kingsford Plaza,MOBILE +HUS2020_335,Catina Evitt,10/9/1991,56 Buhler Court,SYSTEM +HUS2020_336,Gasper Garcia,14/07/1990,70915 Hooker Avenue,MOBILE +HUS2020_337,Ebenezer Warland,21/10/1992,42638 Buena Vista Center,SYSTEM +HUS2020_338,Denna Boyat,9/8/1989,436 Anzinger Park,WEB +HUS2020_339,Marcy Wooldridge,26/03/1992,98746 Russell Parkway,ADMIN +HUS2020_340,Feliks Waterhowse,14/02/1989,2317 Glacier Hill Trail,SYSTEM +HUS2020_341,Ulrick McKelvie,30/11/1997,0 Gulseth Trail,ADMIN +HUS2020_342,Carissa Fidgeon,27/05/1991,309 Aberg Parkway,MOBILE +HUS2020_343,Jocko Tock,30/08/1993,3 Waxwing Parkway,WEB +HUS2020_344,Oralla Balentyne,1/4/1989,0330 Dapin Center,WEB +HUS2020_345,Myra Bolding,22/07/1992,81350 Moose Trail,MOBILE +HUS2020_346,Arnoldo Turpey,15/11/1981,78770 Drewry Junction,WEB +HUS2020_347,Shanie Fintoph,9/2/1990,571 Shoshone Parkway,WEB +HUS2020_348,Ethelind Vennings,9/12/1991,0627 Tennyson Terrace,MOBILE +HUS2020_349,Beatrisa Cotter,21/01/1991,91331 Heffernan Center,WEB +HUS2020_350,Ellsworth Laight,24/01/1993,5 Sommers Avenue,QA +HUS2020_351,Cherise Rustadge,23/07/1997,4899 Rowland Avenue,QA +HUS2020_352,Doralia Bridle,10/9/1999,16028 Blue Bill Park Street,WEB +HUS2020_353,Georgine Mulliner,9/5/1996,6 Ridgeview Plaza,WEB +HUS2020_354,Lita Jealous,17/05/1998,01 Mallard Avenue,SYSTEM +HUS2020_355,Retha MacKartan,31/12/1997,32 Heffernan Point,QA +HUS2020_356,Hyatt Lente,6/11/1988,49163 Mifflin Pass,WEB +HUS2020_357,Kenny Heilds,13/04/1995,5 Tennyson Junction,MOBILE +HUS2020_358,Gunner Oldroyde,10/2/1987,75 Blaine Plaza,ADMIN +HUS2020_359,Diarmid Barlas,20/03/1984,289 Onsgard Place,MOBILE +HUS2020_360,Jori Champion,25/04/1993,9453 Cherokee Road,MOBILE +HUS2020_361,Fayth Bangiard,11/11/1994,34528 Scott Court,WEB +HUS2020_362,Tiebout Woolam,22/12/1988,1 Loomis Drive,QA +HUS2020_363,Kaitlyn Erlam,14/11/1995,3 Fair Oaks Terrace,QA +HUS2020_364,Dorolisa Mumford,9/8/1991,94 Cherokee Way,WEB +HUS2020_365,Wilek O'Finan,12/1/1992,255 Mockingbird Pass,SYSTEM +HUS2020_366,Bale Purkiss,18/07/1989,2 Merrick Road,WEB +HUS2020_367,Laurie Scaife,16/04/1999,43 Katie Street,QA +HUS2020_368,Griffie Antosik,9/3/1991,75 Stoughton Street,QA +HUS2020_369,Gamaliel Capstaff,29/12/1990,93 8th Lane,SYSTEM +HUS2020_370,Jermain Tavernor,17/07/1985,88 John Wall Pass,WEB +HUS2020_371,Marla Feld,23/12/1980,88683 Red Cloud Lane,ADMIN +HUS2020_372,Morry Poulden,12/8/1983,08190 Thompson Avenue,QA +HUS2020_373,Ellsworth Lynde,27/06/1990,6875 Logan Hill,SYSTEM +HUS2020_374,Serge Stollenhof,1/3/1984,39718 Oriole Street,QA +HUS2020_375,Brittani Swetmore,22/09/1993,5 Ludington Pass,ADMIN +HUS2020_376,Lloyd Tipens,26/03/1980,48338 Dunning Parkway,ADMIN +HUS2020_377,Vasilis Shilston,13/10/1988,37 Aberg Road,SYSTEM +HUS2020_378,Barret Waugh,9/4/1986,64 Victoria Avenue,SYSTEM +HUS2020_379,Andrei Botcherby,19/07/1983,11 Talmadge Pass,WEB +HUS2020_380,Devi Shimmans,5/1/1980,6 Artisan Drive,QA +HUS2020_381,Alyssa McPhilip,9/12/1985,693 Hudson Pass,SYSTEM +HUS2020_382,Iago Crittal,1/11/1993,60 Riverside Alley,WEB +HUS2020_383,Hakeem Hindrick,10/8/1993,73 Blackbird Parkway,MOBILE +HUS2020_384,Kain Ciric,14/10/1985,9556 Bowman Plaza,ADMIN +HUS2020_385,Dora Blaxton,14/10/1987,05109 Dahle Crossing,WEB +HUS2020_386,Douglas Osbidston,31/08/1980,2 Hauk Trail,SYSTEM +HUS2020_387,Bartram Bayldon,28/11/1982,40091 Cambridge Pass,QA +HUS2020_388,Miriam Brundle,21/02/1983,303 Leroy Plaza,WEB +HUS2020_389,Blinni Cocci,24/05/1996,601 Ohio Avenue,QA +HUS2020_390,Ebony Endean,7/5/1988,20 Commercial Center,MOBILE +HUS2020_391,Gisela Roxburgh,23/04/1998,332 Burrows Lane,MOBILE +HUS2020_392,Hillery Giannasi,15/10/1987,5125 Golf View Point,WEB +HUS2020_393,Jameson McMurrugh,19/02/1997,2275 Lillian Terrace,SYSTEM +HUS2020_394,Darryl Chevis,25/11/1985,13 Lunder Terrace,QA +HUS2020_395,Rebeka Doleman,20/07/1982,180 Oxford Parkway,SYSTEM +HUS2020_396,Ahmad Brunnstein,24/05/1997,29900 Delaware Street,QA +HUS2020_397,Thomasina Sarton,3/9/1985,6335 Division Drive,QA +HUS2020_398,Devlin Defraine,11/8/1988,201 Alpine Trail,WEB +HUS2020_399,Corty Print,23/12/1983,62 Shopko Alley,ADMIN +HUS2020_400,Elspeth Husher,22/07/1986,39 Jay Circle,ADMIN +HUS2020_401,Jackelyn O'Doghesty,2/6/1997,27820 Nelson Center,QA +HUS2020_402,Kendra Douthwaite,28/11/1983,2430 Redwing Center,WEB +HUS2020_403,Eugenio Orbell,27/05/1982,962 Coolidge Way,MOBILE +HUS2020_404,Alica Sheen,5/11/1998,61703 Granby Center,SYSTEM +HUS2020_405,Munroe Lawland,19/09/1980,2440 Clove Hill,WEB +HUS2020_406,Ericka O'Dyvoy,12/12/1993,23 Loftsgordon Avenue,SYSTEM +HUS2020_407,Jeannette Jori,8/12/1991,4976 Graceland Drive,WEB +HUS2020_408,Willi Trotman,2/6/1980,41686 Myrtle Road,SYSTEM +HUS2020_409,Justinn Derisley,27/11/1999,0 Ohio Court,WEB +HUS2020_410,Sid Roostan,1/5/1999,79928 Washington Way,ADMIN +HUS2020_411,Carey Trewhella,22/11/1991,15 Hayes Drive,QA +HUS2020_412,Valerie Tregoning,29/04/1993,7 7th Park,MOBILE +HUS2020_413,Myrwyn Clutten,5/3/1989,48569 Waywood Street,WEB +HUS2020_414,Ulysses Dymick,11/11/1990,2 Continental Lane,WEB +HUS2020_415,Christye Swinburn,17/05/1986,14 Summit Circle,SYSTEM +HUS2020_416,Selle Cammis,17/02/1985,552 Meadow Ridge Alley,SYSTEM +HUS2020_417,Lorelle Risley,29/10/1982,0 Morrow Court,MOBILE +HUS2020_418,Fulton Bertome,3/5/1983,58 Westerfield Crossing,WEB +HUS2020_419,Celestina Honatsch,9/8/1990,2 Nancy Pass,MOBILE +HUS2020_420,Colas Nice,27/05/1983,402 Annamark Park,QA +HUS2020_421,Eve Davidovici,29/12/1983,71 Prentice Drive,MOBILE +HUS2020_422,Debera Chilcotte,17/12/1983,886 Bay Junction,ADMIN +HUS2020_423,Serena Danielsky,7/7/1996,712 4th Circle,MOBILE +HUS2020_424,Adriena Hukins,1/2/1981,0 Ridgeview Circle,MOBILE +HUS2020_425,Susy Halwell,16/06/1992,18725 Red Cloud Point,WEB +HUS2020_426,Gerti Walesa,10/8/1996,68586 Summerview Junction,WEB +HUS2020_427,Ayn Mycroft,26/09/1987,23 Clemons Street,ADMIN +HUS2020_428,Dana Perrin,11/6/1996,5856 Hermina Drive,SYSTEM +HUS2020_429,Thom Epple,4/12/1980,4 Donald Drive,SYSTEM +HUS2020_430,Juliane Mepham,28/11/1983,759 Tomscot Road,WEB +HUS2020_431,Reade McGilben,18/03/1996,47372 Forest Lane,ADMIN +HUS2020_432,Sandye Bletso,9/6/1986,15326 Valley Edge Junction,MOBILE +HUS2020_433,Paquito Cracknall,14/07/1996,6897 Cordelia Drive,SYSTEM +HUS2020_434,Solomon Graben,28/12/1995,5 Sullivan Hill,QA +HUS2020_435,Maisey Phettis,16/11/1987,345 Fieldstone Drive,MOBILE +HUS2020_436,Ody Hallmark,19/02/1980,942 Farragut Court,WEB +HUS2020_437,Cherise Comoletti,13/09/1991,18464 Anderson Street,MOBILE +HUS2020_438,Annabelle Wilkison,10/10/1981,148 Arkansas Point,QA +HUS2020_439,Giacinta Vannini,9/4/1986,5 Hazelcrest Street,MOBILE +HUS2020_440,Des Aitken,31/10/1991,9269 Bartelt Place,SYSTEM +HUS2020_441,Pegeen Waliszewski,20/09/1984,675 Mitchell Parkway,ADMIN +HUS2020_442,Simeon Chisolm,19/10/1991,76261 Katie Hill,MOBILE +HUS2020_443,Shelley Swindle,15/06/1994,7 Monica Circle,WEB +HUS2020_444,Aluin Popple,18/11/1993,0147 Golf Course Point,WEB +HUS2020_445,Shamus Earle,15/08/1998,788 Karstens Trail,QA +HUS2020_446,Marco Cassella,22/10/1997,98 Dovetail Pass,SYSTEM +HUS2020_447,Luciano Yarrall,15/01/1995,151 Vidon Terrace,ADMIN +HUS2020_448,Mina Preddy,7/8/1988,17445 Elka Center,SYSTEM +HUS2020_449,Hurleigh Dargan,27/04/1980,8345 Mayer Road,WEB +HUS2020_450,Liliane Gribben,5/5/1989,9019 Dunning Park,QA +HUS2020_451,Melisa Rosenkranc,11/10/1993,9 Waubesa Alley,SYSTEM +HUS2020_452,Elna McRuvie,6/5/1990,26 Chive Circle,QA +HUS2020_453,Hernando Bartolomucci,20/09/1991,1 Delladonna Street,MOBILE +HUS2020_454,Tamarra Henke,5/6/1998,9123 Blaine Hill,WEB +HUS2020_455,Ebeneser Arunowicz,1/3/1996,040 Waxwing Lane,QA +HUS2020_456,Corine Fridaye,19/06/1980,200 Mccormick Road,ADMIN +HUS2020_457,Stevy Wyse,8/5/1985,6 Evergreen Way,WEB +HUS2020_458,Jany Burlingame,17/10/1989,796 Del Mar Circle,ADMIN +HUS2020_459,Chip Jumonet,7/9/1981,63 Delladonna Crossing,WEB +HUS2020_460,Carmelia Pykerman,21/04/1986,3084 8th Drive,MOBILE +HUS2020_461,Estele Dabels,19/10/1999,43 Golf Court,MOBILE +HUS2020_462,Merna Castelletto,13/02/1989,06 Mallory Road,MOBILE +HUS2020_463,Julius Wardingly,18/05/1987,8499 Bobwhite Avenue,QA +HUS2020_464,Morris Haycox,20/05/1980,85359 Amoth Parkway,MOBILE +HUS2020_465,Rhea Magwood,23/06/1993,3 Fair Oaks Road,MOBILE +HUS2020_466,Quillan Terrey,20/09/1986,727 Ludington Park,ADMIN +HUS2020_467,Agnes Zanettini,28/07/1983,215 Gale Avenue,SYSTEM +HUS2020_468,Caspar Sanbrook,30/10/1980,02165 Quincy Crossing,QA +HUS2020_469,Elaine Druett,17/02/1982,03277 Summer Ridge Alley,ADMIN +HUS2020_470,Antonius Kment,5/6/1982,1 Rockefeller Terrace,ADMIN +HUS2020_471,Cathie De Brett,14/05/1991,41658 Crest Line Circle,MOBILE +HUS2020_472,Adelaida Medgwick,23/07/1989,83 Chive Park,WEB +HUS2020_473,Raffarty Fripp,30/09/1998,83 Loomis Pass,QA +HUS2020_474,Andi de Keyser,24/02/1991,529 Maple Pass,MOBILE +HUS2020_475,Meredith Batchelour,24/06/1991,29086 Florence Terrace,WEB +HUS2020_476,Shae Zeplin,20/01/1996,97 Northland Junction,WEB +HUS2020_477,Rebbecca Goadby,28/03/1991,36 Blue Bill Park Lane,ADMIN +HUS2020_478,Vachel Peterffy,6/12/1988,5166 Mariners Cove Street,MOBILE +HUS2020_479,Alex Hardacre,27/12/1980,564 Hansons Alley,WEB +HUS2020_480,Gwyn Lamba,7/2/1995,13046 Troy Center,QA +HUS2020_481,Darla Pearton,20/01/1990,59788 Lindbergh Plaza,QA +HUS2020_482,Marris Proffitt,3/2/1994,2 Darwin Center,MOBILE +HUS2020_483,Margi Sydall,30/06/1988,9 Milwaukee Hill,ADMIN +HUS2020_484,Kennith Meany,10/8/1985,9 Sachs Center,SYSTEM +HUS2020_485,Ansell Tomasutti,11/11/1981,45 Weeping Birch Hill,SYSTEM +HUS2020_486,Lise Oxe,7/9/1988,9 Steensland Center,QA +HUS2020_487,Helene Bartomieu,12/5/1999,79 Bluestem Place,QA +HUS2020_488,Reinhold Twelvetree,3/10/1985,36472 Nancy Road,QA +HUS2020_489,Elisabetta Childs,8/11/1994,535 Bluejay Avenue,WEB +HUS2020_490,Gardy De Domenico,5/1/1991,2349 Grim Crossing,MOBILE +HUS2020_491,Luis Faux,3/2/1993,03810 Coolidge Park,WEB +HUS2020_492,Eva Lehr,16/11/1995,86000 High Crossing Circle,WEB +HUS2020_493,Tabb Karpinski,13/08/1986,809 Bonner Center,WEB +HUS2020_494,Kit Condon,30/11/1994,3633 Pierstorff Crossing,SYSTEM +HUS2020_495,Raimund Brouwer,30/07/1998,3 Waxwing Place,WEB +HUS2020_496,Carmine Please,14/01/1993,0383 Del Mar Drive,QA +HUS2020_497,Vincent Hallowes,18/01/1998,571 Stoughton Street,QA +HUS2020_498,Martie Flicker,10/10/1984,00 Anniversary Place,ADMIN +HUS2020_499,Bernita Frapwell,30/07/1985,2788 Stone Corner Court,MOBILE +HUS2020_500,Trish Ellerker,9/9/1994,5 Magdeline Park,ADMIN +HUS2020_501,Alli Waltering,10/5/1982,3 Messerschmidt Trail,WEB +HUS2020_502,Elsworth Tarbet,28/04/1995,25307 Bowman Road,ADMIN +HUS2020_503,Nathalie Cheltnam,29/08/1998,4 Clemons Trail,WEB +HUS2020_504,Halsey Brittain,20/05/1990,93 Chive Lane,WEB +HUS2020_505,Kym Chippin,16/03/1989,965 Drewry Crossing,QA +HUS2020_506,Deva Hawkwood,21/12/1983,10881 Welch Trail,QA +HUS2020_507,Alyse Totton,21/06/1992,0 Schmedeman Park,WEB +HUS2020_508,Kerr Farnworth,18/01/1991,08 Esker Parkway,SYSTEM +HUS2020_509,Laurette Saich,5/8/1994,47 Monica Crossing,WEB +HUS2020_510,Ainslee Benbough,2/2/1989,0160 Parkside Lane,QA +HUS2020_511,Flor Bendin,15/05/1992,99809 Colorado Center,SYSTEM +HUS2020_512,Ida Tallach,24/02/1995,509 Shopko Way,QA +HUS2020_513,Hi Radbourn,6/1/1987,5585 Bobwhite Parkway,MOBILE +HUS2020_514,Albert Shearmur,23/09/1986,67930 Dwight Crossing,QA +HUS2020_515,Carson Peaple,24/02/1995,9 American Court,SYSTEM +HUS2020_516,Loretta Birkenhead,15/07/1996,52815 Sutherland Place,WEB +HUS2020_517,Theobald Merrikin,1/11/1984,987 Northport Hill,QA +HUS2020_518,Meryl Krelle,16/12/1990,25 Mesta Parkway,QA +HUS2020_519,Findlay Ghiraldi,23/03/1983,761 Schlimgen Junction,ADMIN +HUS2020_520,Lizette Gorst,22/05/1998,489 Grim Terrace,QA +HUS2020_521,Natividad Tuke,14/10/1999,5345 Ridgeview Center,WEB +HUS2020_522,Zora Murison,23/10/1989,47 Superior Road,WEB +HUS2020_523,Else Hebblewhite,7/8/1994,1845 Golden Leaf Court,ADMIN +HUS2020_524,Regina Sinderson,27/06/1992,85 Cherokee Road,QA +HUS2020_525,Zelda Long,5/10/1984,071 Paget Parkway,WEB +HUS2020_526,Griff Giorgielli,25/11/1985,83247 Schlimgen Park,ADMIN +HUS2020_527,Stacie Lindelof,7/1/1984,285 Stuart Avenue,WEB +HUS2020_528,Oona Abrashkov,25/12/1985,97755 Kings Alley,MOBILE +HUS2020_529,Donella McAndie,13/09/1994,449 Summit Hill,WEB +HUS2020_530,Moses Rabbitts,3/10/1993,506 Elgar Avenue,MOBILE +HUS2020_531,Terza Hatherall,9/6/1980,33569 Sutteridge Plaza,SYSTEM +HUS2020_532,Michelina Arundel,19/02/1986,13169 Debs Place,SYSTEM +HUS2020_533,Grover Burkhill,13/11/1982,64 Loeprich Hill,WEB +HUS2020_534,Percy Klain,30/07/1983,14776 La Follette Terrace,MOBILE +HUS2020_535,Eddie Lantiffe,14/10/1985,53283 Darwin Circle,MOBILE +HUS2020_536,Deeann Franzelini,26/03/1998,59 Hagan Junction,WEB +HUS2020_537,Matilde McGirl,3/4/1987,29 Arrowood Hill,QA +HUS2020_538,Lilias Quinby,12/4/1994,5157 7th Plaza,SYSTEM +HUS2020_539,Bertina Gravenell,26/08/1990,37535 Merrick Court,MOBILE +HUS2020_540,Syman Itchingham,3/8/1982,00037 Barnett Plaza,QA +HUS2020_541,Giustino Seiller,6/9/1990,5245 Maple Crossing,QA +HUS2020_542,Nikolos Berndsen,23/06/1983,1871 Prentice Lane,ADMIN +HUS2020_543,Jo-ann Heed,24/03/1984,7 Jay Lane,WEB +HUS2020_544,Bond Tomankowski,6/9/1994,37 Novick Place,ADMIN +HUS2020_545,Prent Village,26/09/1988,7 Milwaukee Junction,WEB +HUS2020_546,Whitaker Clemo,16/09/1992,985 Dorton Road,WEB +HUS2020_547,Maurice Cosson,7/2/1998,5 Coleman Drive,WEB +HUS2020_548,Petronia Kenway,9/12/1994,06 Kipling Pass,SYSTEM +HUS2020_549,Sandye Matzkaitis,10/8/1988,36014 Mesta Way,WEB +HUS2020_550,Sibilla O'Bradden,16/03/1990,0 Tony Plaza,WEB +HUS2020_551,Thekla Dunsmore,24/09/1990,782 Twin Pines Alley,MOBILE +HUS2020_552,Ralina Saylor,15/04/1994,639 Dunning Lane,MOBILE +HUS2020_553,Brandy Rookledge,22/10/1992,8545 Bowman Crossing,SYSTEM +HUS2020_554,Ilyssa O'Gormally,7/11/1988,35 Weeping Birch Lane,SYSTEM +HUS2020_555,Harald Gollin,13/01/1989,5 Logan Hill,ADMIN +HUS2020_556,Shanan Dyke,20/04/1988,04300 Waubesa Circle,MOBILE +HUS2020_557,Perl Wallace,1/2/1988,9 Pearson Road,ADMIN +HUS2020_558,Guenevere Humby,16/01/1998,0309 Nelson Hill,WEB +HUS2020_559,Maryrose Catlow,9/11/1991,679 Northwestern Center,SYSTEM +HUS2020_560,Zorana Toynbee,23/04/1994,37 Roxbury Hill,MOBILE +HUS2020_561,Lombard Willerton,21/07/1982,637 Leroy Alley,QA +HUS2020_562,Worth Tregunnah,16/10/1988,06257 Kennedy Court,QA +HUS2020_563,Ileane Duxbarry,5/1/1980,0994 Marcy Trail,WEB +HUS2020_564,Hank Van Rembrandt,26/10/1989,67 Helena Lane,QA +HUS2020_565,Darrin Braisted,23/09/1989,75 Hermina Pass,SYSTEM +HUS2020_566,Holmes Andrivot,18/02/1981,7 Ludington Alley,WEB +HUS2020_567,Jaine Bresson,29/03/1986,210 Hermina Place,QA +HUS2020_568,Bartie Chasmar,23/06/1996,59118 Heffernan Trail,ADMIN +HUS2020_569,Willetta Pietz,5/12/1991,399 Superior Point,SYSTEM +HUS2020_570,Nonnah Goodings,1/1/1997,408 High Crossing Street,ADMIN +HUS2020_571,Jacklyn Creggan,25/04/1995,494 Mcbride Avenue,MOBILE +HUS2020_572,Avery Charsley,14/05/1990,72 Alpine Street,QA +HUS2020_573,Gawain Charlot,3/5/1987,5776 Crowley Center,SYSTEM +HUS2020_574,Diahann Chattoe,22/09/1988,11 1st Park,WEB +HUS2020_575,Ban Karet,24/12/1984,3600 Twin Pines Way,QA +HUS2020_576,Kaitlyn Ruprich,7/1/1986,792 Nevada Plaza,WEB +HUS2020_577,Gui Dannel,21/11/1986,46 Hoffman Place,SYSTEM +HUS2020_578,Maxie Jarley,24/11/1988,23690 Crest Line Alley,SYSTEM +HUS2020_579,Eldon Crampton,20/11/1986,12 Rowland Drive,ADMIN +HUS2020_580,Waldo Aggett,10/10/1998,0170 Texas Center,MOBILE +HUS2020_581,Mercedes Webborn,7/10/1989,502 Banding Drive,ADMIN +HUS2020_582,Gordon Masi,19/09/1992,2789 Moulton Circle,ADMIN +HUS2020_583,Sollie Ducaen,22/10/1983,2462 School Trail,QA +HUS2020_584,Rafa McKim,30/11/1984,47 Raven Road,WEB +HUS2020_585,Cherie Hartright,5/6/1995,8854 Eliot Way,WEB +HUS2020_586,Risa Rossoni,5/10/1986,93 Atwood Drive,WEB +HUS2020_587,Hilary Davidai,7/10/1988,11988 Ronald Regan Point,ADMIN +HUS2020_588,Tris Le Fevre,12/10/1988,577 Sachs Trail,MOBILE +HUS2020_589,Derk Kiledal,1/12/1990,54785 Red Cloud Junction,SYSTEM +HUS2020_590,Corina Billett,3/10/1989,9190 Oriole Drive,MOBILE +HUS2020_591,Robinet Fforde,22/02/1999,603 Rockefeller Terrace,QA +HUS2020_592,Traci Hanselmann,13/01/1995,135 Ridgeview Plaza,QA +HUS2020_593,Cris Cann,30/08/1987,872 Paget Pass,MOBILE +HUS2020_594,Lilyan Stemp,26/05/1986,6881 Emmet Center,WEB +HUS2020_595,Buckie Renals,28/12/1980,45737 Raven Plaza,SYSTEM +HUS2020_596,Evan Allward,3/5/1994,565 Meadow Valley Way,WEB +HUS2020_597,Lloyd Martensen,22/12/1985,98 Toban Place,QA +HUS2020_598,Lawry Mosconi,12/11/1995,111 Anniversary Park,QA +HUS2020_599,Doyle Borsi,27/04/1986,87413 Northview Alley,WEB +HUS2020_600,Marlowe Chantree,19/03/1999,35336 Kim Alley,MOBILE +HUS2020_601,Holly Pitone,12/7/1999,0 Spenser Pass,WEB +HUS2020_602,Branden Dumbelton,5/3/1995,111 Boyd Park,QA +HUS2020_603,Clay Oultram,19/07/1980,6 Transport Lane,SYSTEM +HUS2020_604,Leta Bowsher,2/4/1988,14069 Fordem Way,WEB +HUS2020_605,Camille Arlett,7/8/1987,76624 Westend Crossing,WEB +HUS2020_606,Bram Pohls,27/08/1981,4 Hollow Ridge Hill,ADMIN +HUS2020_607,Hadlee Krystek,6/8/1982,26494 Lighthouse Bay Drive,WEB +HUS2020_608,Denny Shernock,11/12/1996,15 Duke Drive,QA +HUS2020_609,Theodoric Boas,29/11/1988,80 Burrows Place,SYSTEM +HUS2020_610,Audrie Aireton,9/1/1982,93 Charing Cross Parkway,SYSTEM +HUS2020_611,Alyse Gamlen,24/09/1983,244 Pearson Road,ADMIN +HUS2020_612,Earvin Polsin,21/10/1985,87564 Kingsford Court,WEB +HUS2020_613,Janeczka Rickards,18/11/1995,6 Hollow Ridge Plaza,MOBILE +HUS2020_614,Evangelin Effnert,7/9/1984,3160 Cherokee Crossing,QA +HUS2020_615,Fidel Huniwall,1/12/1984,989 Pennsylvania Plaza,WEB +HUS2020_616,Kevina Reah,24/04/1993,5 Mariners Cove Park,MOBILE +HUS2020_617,Tedman Citrine,14/04/1986,1 Green Ridge Plaza,QA +HUS2020_618,Zeb Dupey,5/6/1989,8487 Crowley Park,SYSTEM +HUS2020_619,Selby Cutforth,4/8/1998,4 Dahle Drive,SYSTEM +HUS2020_620,Onfroi Simester,9/11/1989,8 Warner Circle,QA +HUS2020_621,Mary Kix,18/09/1994,16077 Farmco Plaza,WEB +HUS2020_622,Garner Stave,11/10/1990,795 Buena Vista Hill,SYSTEM +HUS2020_623,Kati Blakeslee,18/05/1995,64078 Swallow Place,WEB +HUS2020_624,Harold Lorrimer,26/09/1987,7 Sachs Parkway,QA +HUS2020_625,Lonnie Yell,17/08/1995,28542 Nelson Place,SYSTEM +HUS2020_626,Claudetta Black,27/12/1985,21494 Upham Road,MOBILE +HUS2020_627,Daphene Runnicles,18/04/1997,9576 Mendota Pass,WEB +HUS2020_628,Elsi Reston,13/11/1999,3965 Michigan Road,SYSTEM +HUS2020_629,Merridie Gilston,6/9/1993,120 Memorial Junction,WEB +HUS2020_630,Hephzibah Commucci,24/05/1991,7373 Pankratz Alley,ADMIN +HUS2020_631,Elspeth Domenc,23/11/1990,958 Spaight Terrace,WEB +HUS2020_632,Krysta Sliman,16/05/1987,7202 Waxwing Trail,SYSTEM +HUS2020_633,Hamel Brommage,11/3/1995,197 Badeau Point,SYSTEM +HUS2020_634,Heddie Aingell,19/04/1993,0 Becker Park,WEB +HUS2020_635,Spenser Spellar,26/01/1993,98 Elmside Drive,SYSTEM +HUS2020_636,Hinda Maraga,15/10/1997,1173 Sheridan Drive,MOBILE +HUS2020_637,Alvira Cottis,23/09/1994,017 Cambridge Pass,SYSTEM +HUS2020_638,Tamar Hallows,10/2/1989,61 Prairieview Point,ADMIN +HUS2020_639,Innis Wike,26/09/1991,3 Spohn Circle,QA +HUS2020_640,Dilly Behrens,26/08/1982,73294 Jackson Plaza,WEB +HUS2020_641,Meara Darker,1/5/1999,46079 Everett Alley,QA +HUS2020_642,Dottie Ilyinski,31/05/1989,11 Wayridge Trail,WEB +HUS2020_643,Leoine Langrish,16/11/1996,99 South Trail,MOBILE +HUS2020_644,Peder MacCroary,24/07/1999,473 Larry Alley,WEB +HUS2020_645,Terrel Garrelts,13/05/1981,611 Jana Pass,QA +HUS2020_646,Vannie Ghio,27/04/1981,3796 Eagle Crest Drive,SYSTEM +HUS2020_647,Athene Drinnan,24/04/1993,5 Grayhawk Road,SYSTEM +HUS2020_648,Ninon Dimitrescu,19/11/1996,09339 Manley Alley,ADMIN +HUS2020_649,Quint Rowatt,6/7/1981,5 Eagle Crest Lane,SYSTEM +HUS2020_650,Chase Caustick,22/11/1990,19 Eastwood Crossing,SYSTEM +HUS2020_651,Dion Petzold,6/6/1992,8 Longview Street,QA +HUS2020_652,Patton Ossulton,27/02/1991,495 Haas Drive,SYSTEM +HUS2020_653,Kit Halley,2/11/1997,8 Lake View Place,MOBILE +HUS2020_654,Trstram Dany,17/05/1980,8025 Nobel Avenue,QA +HUS2020_655,Cchaddie Frank,16/01/1991,3 Jay Center,WEB +HUS2020_656,Miguela Labbet,30/07/1999,75 Stuart Plaza,MOBILE +HUS2020_657,Loreen Spofford,21/05/1992,200 Fuller Circle,MOBILE +HUS2020_658,Park Matisse,29/08/1992,296 Lyons Lane,WEB +HUS2020_659,Gav Berrigan,30/07/1982,371 Morningstar Plaza,WEB +HUS2020_660,Robena De Paepe,12/9/1985,3 Kropf Road,QA +HUS2020_661,Lorettalorna Starrs,9/7/1989,6 Butterfield Alley,MOBILE +HUS2020_662,Kati Cohalan,1/11/1993,40910 Village Green Lane,WEB +HUS2020_663,Shalne Gregoli,19/03/1995,676 Tony Park,QA +HUS2020_664,Rosanne Harber,14/01/1981,3702 Roxbury Pass,MOBILE +HUS2020_665,Guenevere McNea,16/02/1985,3550 Claremont Court,SYSTEM +HUS2020_666,Dedra Vasyukhichev,7/12/1984,8382 Ramsey Way,QA +HUS2020_667,Estrella Oury,3/5/1980,1 Ilene Court,QA +HUS2020_668,Elihu Doge,4/6/1986,37274 Dwight Center,WEB +HUS2020_669,Arch Ortell,15/03/1986,91 Roth Alley,MOBILE +HUS2020_670,Anson Tottman,4/10/1993,71133 Hazelcrest Trail,SYSTEM +HUS2020_671,Eleanore Lago,11/11/1991,3432 Dakota Pass,WEB +HUS2020_672,Madelon Blakeborough,13/09/1996,77 Milwaukee Court,WEB +HUS2020_673,Wynnie Bampfield,23/10/1980,4154 Mariners Cove Street,MOBILE +HUS2020_674,Cathie Satterly,8/5/1985,00216 Myrtle Crossing,WEB +HUS2020_675,Madlen Jeffrey,21/04/1982,479 Lakewood Gardens Parkway,SYSTEM +HUS2020_676,Sauveur Legat,7/10/1988,75892 Fair Oaks Park,SYSTEM +HUS2020_677,Borg Teale,16/04/1989,1205 Haas Pass,SYSTEM +HUS2020_678,Garrard Phare,2/6/1992,99 Gale Crossing,MOBILE +HUS2020_679,Joete Dear,10/8/1986,853 Kings Terrace,MOBILE +HUS2020_680,Rosamund Wride,21/08/1994,980 Larry Circle,QA +HUS2020_681,Octavius Haith,21/12/1981,6690 Calypso Plaza,SYSTEM +HUS2020_682,Alley Monson,11/7/1984,271 Jay Lane,MOBILE +HUS2020_683,Garik Wistance,27/03/1993,37801 Hagan Road,WEB +HUS2020_684,Cammy Gelland,24/12/1987,4 Hoffman Park,QA +HUS2020_685,Brenna Alans,11/10/1997,47 Westend Parkway,SYSTEM +HUS2020_686,Sabina Yeardsley,5/2/1987,28 5th Center,QA +HUS2020_687,Sascha Ashwell,19/02/1984,9 Debra Crossing,QA +HUS2020_688,Talbert Tuckley,14/08/1980,60027 Garrison Way,QA +HUS2020_689,Shannen Iacovazzi,11/6/1986,6918 Logan Road,SYSTEM +HUS2020_690,Viva Hurich,21/11/1980,949 7th Crossing,ADMIN +HUS2020_691,Carla Coade,14/08/1988,20 Esch Street,WEB +HUS2020_692,Constantine Kneale,30/07/1989,00 Moulton Avenue,QA +HUS2020_693,Delmor Darbey,22/10/1996,631 Monument Hill,QA +HUS2020_694,Kirsten Tweedle,15/12/1983,77658 Forest Run Pass,WEB +HUS2020_695,Cheslie Dorbon,26/03/1985,93916 Bowman Park,ADMIN +HUS2020_696,Hally Cristou,6/1/1993,30669 Lukken Junction,WEB +HUS2020_697,Alie Damato,16/06/1981,728 Moulton Road,WEB +HUS2020_698,Kerstin Huby,9/9/1985,40493 Crest Line Terrace,MOBILE +HUS2020_699,Rodolph Tomaskov,20/05/1994,86007 Derek Circle,QA +HUS2020_700,Darci Fausset,4/12/1992,6 Southridge Hill,MOBILE +HUS2020_701,Rheba Bartoli,15/05/1989,5 Vera Parkway,QA +HUS2020_702,Waverly Banks,1/2/1982,75 Eastlawn Drive,MOBILE +HUS2020_703,Marysa Ryley,10/4/1988,7 Straubel Plaza,WEB +HUS2020_704,Hildegaard Hellikes,24/07/1982,98880 Luster Avenue,SYSTEM +HUS2020_705,Lesley Borges,1/7/1986,0 Hooker Point,MOBILE +HUS2020_706,Virgie Groundwator,6/9/1987,1 Russell Park,QA +HUS2020_707,Anton Seiter,20/05/1994,2271 Golden Leaf Trail,QA +HUS2020_708,Hailey Bryden,30/10/1995,209 Hoffman Way,SYSTEM +HUS2020_709,Catha MacBarron,10/12/1993,73165 Basil Terrace,ADMIN +HUS2020_710,Leopold Garwell,29/07/1981,667 Dunning Place,MOBILE +HUS2020_711,Deena Colles,21/05/1992,419 Hoffman Way,MOBILE +HUS2020_712,Livia Skeech,22/07/1984,58388 Vermont Drive,SYSTEM +HUS2020_713,Harrietta Rothera,24/01/1989,34 Messerschmidt Terrace,WEB +HUS2020_714,Moishe Brougham,26/06/1997,03798 Corscot Junction,SYSTEM +HUS2020_715,Trescha Mityushkin,5/7/1994,6917 Carey Lane,MOBILE +HUS2020_716,Silvanus Di Franceschi,30/05/1986,6 1st Alley,SYSTEM +HUS2020_717,Cinda Ziemens,5/5/1998,0700 Delaware Court,WEB +HUS2020_718,Mindy Pillans,17/05/1997,600 Hagan Park,WEB +HUS2020_719,Rutherford Cush,23/02/1989,765 Marquette Hill,QA +HUS2020_720,Erastus Brattell,23/03/1982,2 Park Meadow Crossing,QA +HUS2020_721,Fransisco Bon,14/08/1994,44 Grasskamp Alley,SYSTEM +HUS2020_722,Lemuel Josefson,28/05/1989,07 Jackson Circle,ADMIN +HUS2020_723,Delia Kearney,15/02/1992,69 Golf Course Lane,SYSTEM +HUS2020_724,Ashley Conneau,14/10/1999,53345 Ridge Oak Avenue,QA +HUS2020_725,Jessey Wareham,2/11/1985,5 Nevada Place,WEB +HUS2020_726,Mella Huncoot,30/07/1984,0369 Scofield Plaza,MOBILE +HUS2020_727,Nerta Spawforth,14/12/1986,6 Farragut Trail,WEB +HUS2020_728,Kimberlyn Degoey,29/08/1984,5309 Coolidge Trail,QA +HUS2020_729,Ari Masurel,25/02/1999,6600 Moulton Drive,MOBILE +HUS2020_730,Ulla Collacombe,2/3/1997,08 Annamark Center,WEB +HUS2020_731,Gleda Towe,3/12/1982,4291 Cottonwood Way,SYSTEM +HUS2020_732,Maurine Schrir,28/12/1988,57 Di Loreto Crossing,QA +HUS2020_733,Matias Blakeden,1/3/1994,27 Village Green Alley,ADMIN +HUS2020_734,Tabbi Carrick,17/11/1987,1 Anthes Trail,WEB +HUS2020_735,Claude Iorizzo,17/08/1990,1 East Street,WEB +HUS2020_736,Cullin Iacobetto,5/10/1998,006 Grim Plaza,MOBILE +HUS2020_737,Abagael Jessup,8/9/1988,6 Ronald Regan Park,WEB +HUS2020_738,Katha Tabor,2/1/1985,0 Warbler Alley,QA +HUS2020_739,Parker Blamphin,8/2/1986,7 Veith Road,QA +HUS2020_740,Cassius Muldoon,5/6/1987,5425 Towne Court,ADMIN +HUS2020_741,Bonnibelle Werendell,5/3/1989,25557 Forster Drive,SYSTEM +HUS2020_742,Casar Mauser,15/10/1995,2239 Veith Alley,ADMIN +HUS2020_743,Aura Ximenez,25/12/1980,25 Memorial Court,QA +HUS2020_744,Wade Filipychev,13/08/1980,4 Dwight Trail,QA +HUS2020_745,Allyce Curteis,9/2/1982,8 Ludington Place,WEB +HUS2020_746,Birk Booy,13/01/1995,64 Stoughton Hill,MOBILE +HUS2020_747,Marnia Gerauld,23/10/1985,897 Bartillon Junction,WEB +HUS2020_748,Astra Mease,2/2/1999,5783 Packers Circle,WEB +HUS2020_749,Jere Treffry,28/03/1986,787 2nd Place,QA +HUS2020_750,Gladys Digges,7/9/1983,0272 Hoffman Avenue,SYSTEM +HUS2020_751,Marigold Lathan,14/01/1992,153 Schlimgen Hill,WEB +HUS2020_752,Lissie Liebmann,8/6/1985,38830 International Trail,WEB +HUS2020_753,Vyky Sandham,11/3/1988,2375 Farmco Terrace,MOBILE +HUS2020_754,Jodi Ioan,23/05/1986,492 Burning Wood Pass,MOBILE +HUS2020_755,Brander Peres,27/02/1991,3 Porter Terrace,WEB +HUS2020_756,Carlee Pittam,14/11/1992,65967 Granby Way,QA +HUS2020_757,Levey Osgodby,27/04/1997,084 Coleman Junction,ADMIN +HUS2020_758,Yevette Scorer,17/12/1993,9175 Bultman Circle,WEB +HUS2020_759,Lorine Robardet,8/2/1992,0879 Manufacturers Lane,WEB +HUS2020_760,Jedediah Looker,10/1/1995,517 Forest Dale Road,QA +HUS2020_761,Miof mela Fearn,23/12/1982,88927 Twin Pines Point,MOBILE +HUS2020_762,Thomasin McClaughlin,21/02/1991,0 Ilene Point,MOBILE +HUS2020_763,Delphine Pinney,30/08/1984,7916 Hansons Avenue,ADMIN +HUS2020_764,Neville Gilbard,2/2/1994,31 Sage Circle,WEB +HUS2020_765,Ashlan Egdal,24/03/1996,43171 Lakeland Parkway,MOBILE +HUS2020_766,Diane Lippiatt,7/2/1998,56 Lukken Terrace,WEB +HUS2020_767,Clemente Rickaby,30/08/1990,07 Trailsway Alley,SYSTEM +HUS2020_768,Gael Staker,24/03/1997,06772 Mallard Park,WEB +HUS2020_769,Danny Epdell,9/6/1981,5793 Nova Alley,QA +HUS2020_770,Chicky Soigoux,5/4/1994,8399 Westport Place,WEB +HUS2020_771,Remington Wysome,21/06/1998,1 Stephen Center,ADMIN +HUS2020_772,Cass Welfare,18/06/1981,770 Prairieview Street,WEB +HUS2020_773,Carmella Squirrel,25/05/1984,992 Elka Junction,SYSTEM +HUS2020_774,Rolfe Sawers,20/09/1999,478 Lakeland Center,QA +HUS2020_775,Brandi Eyden,25/10/1980,13 Leroy Way,SYSTEM +HUS2020_776,Kyla Blunsden,28/08/1993,972 Carberry Trail,MOBILE +HUS2020_777,Sidney Dawtry,10/9/1991,4655 Redwing Place,ADMIN +HUS2020_778,Rafael Dionisi,15/05/1981,7421 Mesta Parkway,SYSTEM +HUS2020_779,Fidel Culkin,10/2/1992,44261 Graceland Alley,MOBILE +HUS2020_780,Karin Fischer,31/12/1996,0047 Birchwood Point,QA +HUS2020_781,Elihu Keetch,13/10/1985,03682 Gulseth Trail,WEB +HUS2020_782,Klara Surgeoner,1/12/1990,36244 Merchant Crossing,MOBILE +HUS2020_783,Evangeline Shoebrook,30/03/1982,42 Ilene Point,WEB +HUS2020_784,Darcie Crank,9/1/1983,4941 Everett Trail,WEB +HUS2020_785,Rodolphe Sinncock,13/07/1980,75 Commercial Terrace,SYSTEM +HUS2020_786,Susana Shottin,1/7/1986,84081 Corry Crossing,WEB +HUS2020_787,Kyle Pawlick,27/06/1988,34341 7th Trail,QA +HUS2020_788,Ofella Robinet,9/6/1999,7 Tomscot Court,SYSTEM +HUS2020_789,Teena Heditch,24/05/1994,6 Grover Crossing,SYSTEM +HUS2020_790,Hubey Bayston,28/09/1989,6118 Talmadge Way,QA +HUS2020_791,Phil Steeden,26/03/1994,17261 Ronald Regan Terrace,ADMIN +HUS2020_792,Consalve Lorincz,14/03/1992,72 Transport Junction,MOBILE +HUS2020_793,Alvin Bohden,22/09/1994,8972 Cardinal Alley,WEB +HUS2020_794,Alexandre Shoesmith,19/08/1994,417 Kinsman Avenue,ADMIN +HUS2020_795,Cosme Prinnett,14/12/1992,23 Ridge Oak Alley,MOBILE +HUS2020_796,Bentlee Reddings,15/12/1991,3060 Spaight Circle,SYSTEM +HUS2020_797,Ilario Pabelik,22/12/1991,1 Moland Center,MOBILE +HUS2020_798,Brant Bugdall,8/8/1989,3570 Jenifer Point,MOBILE +HUS2020_799,Susannah Realph,23/04/1986,8 Westridge Pass,QA +HUS2020_800,Sibyl Cowpe,3/9/1981,381 Summer Ridge Circle,MOBILE +HUS2020_801,Valentina Tilbey,15/06/1998,8876 Dottie Pass,QA +HUS2020_802,Olag Fridlington,16/07/1985,89 Florence Avenue,QA +HUS2020_803,Herbert Philimore,12/7/1985,84868 Sugar Hill,WEB +HUS2020_804,Demetrius Papaccio,12/8/1990,77048 Briar Crest Point,QA +HUS2020_805,Vail Gatenby,5/5/1988,89587 Florence Park,WEB +HUS2020_806,Tove Tolworthy,19/01/1982,974 Nancy Street,SYSTEM +HUS2020_807,Kiel Craigmyle,20/12/1995,64737 Hoffman Lane,WEB +HUS2020_808,Cletis Beyn,29/09/1997,55 Basil Lane,WEB +HUS2020_809,Damita Garling,5/4/1984,19 Acker Way,QA +HUS2020_810,Zelig Kave,21/10/1989,6 Reindahl Drive,MOBILE +HUS2020_811,Kimmi Dicke,28/02/1999,9557 Dapin Crossing,WEB +HUS2020_812,Barnie Joriot,13/06/1999,3 Brown Hill,ADMIN +HUS2020_813,Micky Coppock.,7/9/1985,0313 Marcy Junction,WEB +HUS2020_814,Willy Jewkes,26/10/1991,0 Derek Road,WEB +HUS2020_815,Mozes Crollman,23/11/1993,83738 Banding Terrace,ADMIN +HUS2020_816,Robb Hillitt,25/12/1989,3 Sheridan Avenue,QA +HUS2020_817,Weylin Coppledike,29/11/1991,3921 Wayridge Way,WEB +HUS2020_818,See Kerswell,17/09/1990,67048 East Pass,WEB +HUS2020_819,Sharona Karolowski,18/08/1982,4 Northwestern Point,MOBILE +HUS2020_820,Brit Maffezzoli,25/07/1994,4 Sherman Road,WEB +HUS2020_821,Ebeneser Sabater,10/9/1990,692 Village Drive,SYSTEM +HUS2020_822,Damiano Sidlow,14/10/1998,6 Springs Drive,WEB +HUS2020_823,Loren Marcam,16/11/1982,84 Evergreen Street,QA +HUS2020_824,Sibby Sheerin,2/6/1993,58446 Shoshone Circle,QA +HUS2020_825,Abbi Aylett,8/3/1987,112 Grasskamp Pass,MOBILE +HUS2020_826,Terza Brome,25/08/1985,37939 Monica Junction,WEB +HUS2020_827,Jefferson Etteridge,18/04/1997,08 Stephen Trail,WEB +HUS2020_828,Minnaminnie Gilpin,7/12/1988,3 Dixon Hill,QA +HUS2020_829,Bev Bent,23/12/1984,8455 Gateway Circle,ADMIN +HUS2020_830,Nanon Iacovuzzi,3/8/1984,6432 Tomscot Avenue,WEB +HUS2020_831,Rollins Risbrough,15/01/1982,4234 Spenser Center,SYSTEM +HUS2020_832,Malachi Caddell,23/12/1984,727 Prentice Lane,WEB +HUS2020_833,Alfonso Tregonna,4/4/1981,929 3rd Lane,QA +HUS2020_834,Adria McKeurtan,9/8/1995,9493 Cambridge Court,QA +HUS2020_835,Holly Poate,20/09/1985,09 Luster Alley,SYSTEM +HUS2020_836,Latashia Mattson,21/12/1997,32438 Lighthouse Bay Parkway,WEB +HUS2020_837,Chic Digby,29/05/1983,2 Melvin Court,SYSTEM +HUS2020_838,Rici Kimpton,25/04/1995,95636 Longview Plaza,QA +HUS2020_839,Ivie Bradock,25/12/1985,6 Nevada Way,QA +HUS2020_840,Salvador Rallings,29/05/1983,378 Sunfield Hill,WEB +HUS2020_841,Skylar Leblanc,21/07/1995,8534 Ohio Parkway,WEB +HUS2020_842,Olag Barbosa,18/01/1982,758 Armistice Parkway,MOBILE +HUS2020_843,Rodrigo Hartill,28/02/1994,27148 Clarendon Street,WEB +HUS2020_844,Calida Teml,29/03/1987,12 Linden Junction,WEB +HUS2020_845,Franciska Baxstair,8/1/1999,58054 Holy Cross Court,SYSTEM +HUS2020_846,Tomkin Bilham,10/1/1984,9723 Granby Place,QA +HUS2020_847,Sissy De Benedictis,30/06/1981,9442 Surrey Point,MOBILE +HUS2020_848,Janeczka Quinlan,6/8/1993,4 Jenna Point,QA +HUS2020_849,Mendy Stuckley,9/1/1981,8234 Buena Vista Avenue,WEB +HUS2020_850,Gerda Ditch,16/02/1987,6 Boyd Plaza,WEB +HUS2020_851,Lurlene MacAnellye,23/10/1995,24 Swallow Street,QA +HUS2020_852,Amalea Hessel,2/1/1991,3947 Paget Park,QA +HUS2020_853,Rhianna Nice,13/06/1983,8 Mosinee Junction,SYSTEM +HUS2020_854,Gallard Wakefield,25/09/1991,6786 Dottie Way,ADMIN +HUS2020_855,Abeu Rosenau,18/02/1980,9 Eliot Hill,SYSTEM +HUS2020_856,Grier Bucktharp,11/4/1989,1 Browning Park,SYSTEM +HUS2020_857,Danna Yanov,18/03/1985,867 Fairview Way,WEB +HUS2020_858,Hakim Koomar,22/11/1993,0 Westridge Avenue,QA +HUS2020_859,Cassi Keepe,28/09/1996,7 Packers Drive,WEB +HUS2020_860,Tania Derrington,28/05/1996,4 Vera Place,QA +HUS2020_861,Kacy Shankland,9/5/1981,00 Fairfield Place,WEB +HUS2020_862,Keene Fries,13/11/1986,3 Hagan Hill,WEB +HUS2020_863,Collette Enefer,22/09/1988,01979 Parkside Avenue,WEB +HUS2020_864,Branden Kenelin,29/05/1994,1 Center Pass,MOBILE +HUS2020_865,Rhianna Summerley,15/10/1984,6956 Parkside Way,SYSTEM +HUS2020_866,Yves Blakeden,3/9/1996,0357 Elka Trail,WEB +HUS2020_867,Kath Jonson,10/6/1988,24 Huxley Way,WEB +HUS2020_868,Nikolia Outridge,7/11/1981,81 Namekagon Avenue,WEB +HUS2020_869,Kiersten Curtin,5/7/1984,54813 Beilfuss Terrace,WEB +HUS2020_870,Norah Brucker,3/4/1982,8 Dottie Center,WEB +HUS2020_871,Faber Punyer,13/06/1999,11457 Hauk Hill,WEB +HUS2020_872,Angelita Van Oord,6/10/1980,6123 Graceland Junction,WEB +HUS2020_873,Hiram Ashman,3/1/1999,21053 Toban Circle,SYSTEM +HUS2020_874,Nealson Stenhouse,9/7/1981,36 Anniversary Road,QA +HUS2020_875,Alyosha Schorah,4/2/1993,5 Boyd Road,WEB +HUS2020_876,Lisette Brennon,7/3/1985,08678 Prentice Crossing,WEB +HUS2020_877,Maurise Spybey,10/6/1983,77212 Spohn Road,WEB +HUS2020_878,Ignatius Leyninye,4/3/1991,3721 Atwood Parkway,MOBILE +HUS2020_879,Agneta Anneslie,2/10/1989,614 North Hill,ADMIN +HUS2020_880,Agnes Croce,19/03/1986,204 Shoshone Point,ADMIN +HUS2020_881,Ginger Currey,4/2/1998,501 Emmet Terrace,MOBILE +HUS2020_882,Heriberto Alentyev,18/10/1991,7236 Northwestern Road,QA +HUS2020_883,Glennie Hasluck,22/10/1991,5259 Mallory Point,ADMIN +HUS2020_884,Kyla Hamlyn,4/10/1990,16450 Messerschmidt Parkway,QA +HUS2020_885,Taffy Boow,25/07/1993,719 Northfield Plaza,MOBILE +HUS2020_886,Brock Clethro,16/08/1984,2062 Mcguire Junction,QA +HUS2020_887,Nyssa Gissing,24/07/1987,33 Stuart Hill,ADMIN +HUS2020_888,Ganny Ockendon,14/02/1981,2379 Gina Avenue,SYSTEM +HUS2020_889,Dee dee De Metz,28/04/1987,72605 Karstens Trail,QA +HUS2020_890,Drona Marchi,15/11/1992,671 Waubesa Court,QA +HUS2020_891,Korella Jolly,6/1/1993,13 Maryland Junction,ADMIN +HUS2020_892,Goddart Dewhurst,28/12/1983,9919 Jenna Drive,SYSTEM +HUS2020_893,Georgianna Redmond,4/9/1984,43050 Roxbury Court,MOBILE +HUS2020_894,Asa Mattke,5/1/1986,136 Farragut Plaza,WEB +HUS2020_895,Alia Wickerson,19/08/1991,9498 Veith Center,MOBILE +HUS2020_896,Darleen Merriday,16/06/1986,1731 Donald Trail,MOBILE +HUS2020_897,Flint Dedrick,28/06/1987,483 Fisk Road,QA +HUS2020_898,Dene Lyles,14/08/1984,2 Warner Plaza,QA +HUS2020_899,Maxi Adamo,19/10/1994,765 Gale Road,WEB +HUS2020_900,Noah Speers,14/06/1991,18079 Shoshone Street,WEB +HUS2020_901,Shelby Asquith,22/12/1981,01 Brentwood Junction,SYSTEM +HUS2020_902,Lizette Whittam,15/05/1981,28 Kropf Drive,SYSTEM +HUS2020_903,Wiatt Alster,27/11/1987,5 Havey Drive,WEB +HUS2020_904,Callida Hamlington,21/05/1982,8 Badeau Lane,WEB +HUS2020_905,Dylan Fideler,5/7/1988,3293 Bartelt Pass,MOBILE +HUS2020_906,Arlan Hatch,16/11/1986,3 Butterfield Crossing,QA +HUS2020_907,Rosalinda Habishaw,27/01/1988,716 Fisk Center,ADMIN +HUS2020_908,Grantham Corston,6/10/1982,265 Trailsway Road,SYSTEM +HUS2020_909,Chad Loomis,21/07/1981,85 Coleman Trail,QA +HUS2020_910,Bartholomeus O'Duggan,21/02/1999,6 Reindahl Crossing,WEB +HUS2020_911,Xena Dendle,17/10/1998,788 Oakridge Lane,SYSTEM +HUS2020_912,Roxana Chalmers,17/07/1999,28 Burning Wood Place,QA +HUS2020_913,Casper Castanone,5/8/1985,1 Ridgeway Drive,MOBILE +HUS2020_914,Elfie Byrde,11/7/1999,10899 Lake View Junction,WEB +HUS2020_915,Dominica Hand,29/12/1981,501 Carey Lane,QA +HUS2020_916,Tiphanie Capon,26/02/1991,4 Scott Center,QA +HUS2020_917,Jimmie Deverill,10/8/1993,83525 Dwight Crossing,MOBILE +HUS2020_918,Cherlyn Flament,19/03/1983,27 Granby Road,QA +HUS2020_919,Karlotta Ball,21/08/1997,6715 Knutson Junction,QA +HUS2020_920,Ford Kilgallen,11/3/1984,902 Ridgeview Terrace,SYSTEM +HUS2020_921,Benjamin Simpson,18/01/1989,673 Coleman Junction,SYSTEM +HUS2020_922,Gaspard Krishtopaittis,15/06/1986,3 Nelson Pass,ADMIN +HUS2020_923,Gale Ogers,19/07/1997,684 Corscot Avenue,MOBILE +HUS2020_924,Sylvia Pullen,4/2/1992,966 Russell Avenue,WEB +HUS2020_925,Desirae Liversidge,2/10/1989,801 Fuller Court,QA +HUS2020_926,Justinian Blincow,21/02/1993,0 Pennsylvania Street,QA +HUS2020_927,Cecilio Colrein,27/05/1989,71739 Forest Parkway,SYSTEM +HUS2020_928,Frederigo Riceards,18/01/1981,124 Springs Junction,ADMIN +HUS2020_929,Forster Chatfield,14/05/1998,91 Hoard Street,SYSTEM +HUS2020_930,Briney Richel,13/03/1989,9 Porter Terrace,QA +HUS2020_931,Brittne Nann,26/07/1982,05 Schmedeman Parkway,MOBILE +HUS2020_932,Pauly Beste,18/05/1980,61225 Ryan Crossing,ADMIN +HUS2020_933,Hetty Shead,15/09/1997,29 Judy Parkway,ADMIN +HUS2020_934,Eleen Bristowe,8/8/1999,1 Scofield Court,MOBILE +HUS2020_935,Katinka Markova,28/09/1989,9 Center Center,WEB +HUS2020_936,Jillian Chalfain,9/8/1992,19 Oneill Center,WEB +HUS2020_937,Rowney Damarell,1/2/1981,4706 Manitowish Hill,MOBILE +HUS2020_938,Ellette Pratchett,11/6/1980,6 Crowley Crossing,WEB +HUS2020_939,Harp Sare,23/12/1982,0 Pepper Wood Way,MOBILE +HUS2020_940,Ilyse Pain,12/10/1996,9984 North Hill,WEB +HUS2020_941,Claudetta Turbard,13/05/1988,35687 Oxford Avenue,QA +HUS2020_942,Enriqueta Karran,6/2/1982,9426 Mendota Lane,SYSTEM +HUS2020_943,Oralee Giacomuzzo,31/10/1990,2125 Independence Alley,ADMIN +HUS2020_944,Chicky Daburn,5/1/1981,457 Waxwing Road,QA +HUS2020_945,Abba Fenge,3/12/1989,09 New Castle Road,SYSTEM +HUS2020_946,Chiquia Cridge,24/12/1996,792 Muir Trail,WEB +HUS2020_947,Briana Tompkin,9/5/1981,74 Little Fleur Junction,ADMIN +HUS2020_948,Moshe Soppeth,14/05/1985,9 Hazelcrest Park,QA +HUS2020_949,Arthur Branca,3/9/1998,5 Mccormick Junction,WEB +HUS2020_950,Denna Hartshorne,19/07/1991,117 Melody Hill,ADMIN +HUS2020_951,Moselle Melvin,14/10/1980,00839 Declaration Crossing,WEB +HUS2020_952,Fidelia Coey,4/3/1982,0 Crowley Court,WEB +HUS2020_953,Lyssa Broggini,31/10/1999,55733 Doe Crossing Way,QA +HUS2020_954,Kathye Van Arsdall,19/10/1997,24 Lakewood Lane,WEB +HUS2020_955,Allie Bentick,20/01/1981,55794 Onsgard Way,QA +HUS2020_956,Mada Wellum,28/04/1984,374 Grasskamp Junction,QA +HUS2020_957,Rupert Woodroofe,11/6/1986,70 Jana Street,WEB +HUS2020_958,Kenn Aitken,13/10/1987,742 Hallows Trail,MOBILE +HUS2020_959,Allie Pragnell,5/5/1989,1381 Dovetail Center,MOBILE +HUS2020_960,Violette Fronks,8/6/1982,207 Russell Avenue,MOBILE +HUS2020_961,Gayle Yitzowitz,17/03/1983,13260 Petterle Parkway,WEB +HUS2020_962,Zachery Ervin,1/4/1982,9 Old Shore Terrace,ADMIN +HUS2020_963,Zechariah Hum,27/05/1982,30574 3rd Avenue,WEB +HUS2020_964,Loy Musterd,22/04/1985,0 Scoville Center,MOBILE +HUS2020_965,Reuven Newbury,5/6/1988,4 Hollow Ridge Court,SYSTEM +HUS2020_966,Barnett Rumble,15/01/1993,96683 Nova Lane,ADMIN +HUS2020_967,Christopher Palumbo,30/04/1993,359 Village Trail,WEB +HUS2020_968,Georgia Craw,6/8/1996,531 Boyd Alley,QA +HUS2020_969,Lanie Hamberston,17/04/1995,37 Anzinger Alley,SYSTEM +HUS2020_970,Deonne Dosedale,25/08/1991,39651 Paget Plaza,QA +HUS2020_971,Stoddard Bruinsma,13/04/1987,9827 Service Lane,MOBILE +HUS2020_972,Annnora Toovey,10/7/1981,9 Montana Way,ADMIN +HUS2020_973,Maddi Fussen,1/3/1981,21786 Sullivan Junction,MOBILE +HUS2020_974,Smitty Chicchetto,22/03/1990,6 Bluestem Junction,WEB +HUS2020_975,Carmelle Cavendish,20/01/1996,362 Fieldstone Park,QA +HUS2020_976,Eduino Hixley,29/11/1981,80 Dryden Center,SYSTEM +HUS2020_977,Jethro Couvert,22/07/1993,6853 Sommers Lane,MOBILE +HUS2020_978,Kimberley Thunderchief,3/5/1980,8 Memorial Terrace,QA +HUS2020_979,Murray D'Ugo,7/6/1986,7369 Thompson Hill,ADMIN +HUS2020_980,Udall Hanselmann,5/6/1983,6605 Loftsgordon Court,MOBILE +HUS2020_981,Lorettalorna Betterton,20/07/1985,9 Sachs Park,QA +HUS2020_982,Bruno Paxton,13/10/1992,922 Lillian Avenue,SYSTEM +HUS2020_983,Fabian McDunlevy,8/10/1998,9652 Butterfield Road,MOBILE +HUS2020_984,Laural Beckhurst,12/9/1980,7836 Mallory Parkway,QA +HUS2020_985,Linn Priestman,6/1/1984,4 Comanche Terrace,QA +HUS2020_986,Clarie Kirkby,8/9/1984,2 Dahle Court,ADMIN +HUS2020_987,Janessa Bradtke,3/9/1995,95793 Farragut Trail,WEB +HUS2020_988,Tyrus Troughton,23/11/1984,484 Heath Way,WEB +HUS2020_989,Amie Kisbee,8/12/1995,30 Debs Junction,WEB +HUS2020_990,Mitzi Ovesen,7/3/1986,7 Ohio Junction,SYSTEM +HUS2020_991,Fredia Trenholm,5/5/1987,63547 Forest Run Center,QA +HUS2020_992,Kalindi Higbin,3/6/1992,5 West Park,SYSTEM +HUS2020_993,Suzanna Nares,16/09/1999,616 Hoard Court,SYSTEM +HUS2020_994,Gilligan Franzke,14/06/1987,57 Waubesa Court,WEB +HUS2020_995,Nike April,4/8/1994,0049 Melody Road,SYSTEM +HUS2020_996,Adrien Marshal,3/8/1988,18 Warner Lane,QA +HUS2020_997,Violet Walkinshaw,20/09/1993,68530 Forster Crossing,SYSTEM +HUS2020_998,Elsey Wrought,5/10/1993,9 Dixon Street,QA +HUS2020_999,Jennee Aberchirder,22/10/1993,02963 Messerschmidt Street,QA +HUS2020_1000,Charmine Dafter,14/02/1994,436 Brentwood Hill,WEB +VN2020_1,Hannis Kalf,30/05/1998,29 Susan Avenue,SYSTEM +VN2020_2,Rodrique Huxster,25/10/1989,58381 Maple Wood Street,WEB +VN2020_3,Bette Leicester,1/11/1980,96 Blaine Way,MOBILE +VN2020_4,Evangelin Casol,21/08/1986,47 Ohio Avenue,QA +VN2020_5,Darelle Betteridge,22/04/1988,67 Lake View Alley,WEB +VN2020_6,Carleton Fearnside,7/10/1989,36070 8th Lane,WEB +VN2020_7,Rodi Jotcham,29/07/1993,6 Stuart Hill,SYSTEM +VN2020_8,Freddie Sweynson,7/11/1995,2478 Westerfield Court,WEB +VN2020_9,Rhona Rudyard,8/1/1988,64 Pearson Junction,QA +VN2020_10,Dulcea Curwood,1/9/1991,1076 Westend Street,QA +VN2020_11,Ulick Ivey,30/08/1994,1140 Little Fleur Parkway,ADMIN +VN2020_12,Bunni Asbery,30/05/1987,0 Holy Cross Way,WEB +VN2020_13,Philis Isakovitch,24/07/1995,57650 Golf Pass,SYSTEM +VN2020_14,Rockey Sogg,18/05/1990,89 Pearson Trail,QA +VN2020_15,Jinny Fowlie,31/03/1992,4 Waxwing Avenue,SYSTEM +VN2020_16,Merl Pruckner,30/11/1998,14 Hermina Terrace,ADMIN +VN2020_17,Rhodie Finlow,6/12/1985,719 Maple Wood Circle,MOBILE +VN2020_18,Wanids Ludgrove,13/04/1994,36 7th Lane,SYSTEM +VN2020_19,Celka Thew,10/6/1993,04 Kensington Street,SYSTEM +VN2020_20,Esra Skittles,9/12/1997,286 Larry Junction,QA +VN2020_21,Elli Du Fray,25/08/1983,80 Buena Vista Court,SYSTEM +VN2020_22,Tasia Gluyas,6/1/1998,7 Gerald Road,ADMIN +VN2020_23,Alex Sinclair,20/04/1999,49543 Oneill Junction,MOBILE +VN2020_24,Fanechka Janikowski,8/5/1993,252 Trailsway Park,QA +VN2020_25,Simone Hoovart,6/1/1998,40 Warbler Park,MOBILE +VN2020_26,Hillier Curado,25/09/1992,5 Declaration Way,ADMIN +VN2020_27,Franklin Lindenman,30/10/1997,278 Knutson Center,WEB +VN2020_28,Marybeth Turnbull,20/12/1982,72 Menomonie Trail,SYSTEM +VN2020_29,Tiphany Dollin,12/10/1988,224 Golf Plaza,WEB +VN2020_30,Rosella Zorzenoni,25/06/1997,146 Dunning Parkway,WEB +VN2020_31,Javier Kinsella,29/04/1983,53347 Evergreen Trail,MOBILE +VN2020_32,Clay Kemmet,18/06/1995,308 Loomis Crossing,QA +VN2020_33,Erin Evetts,24/04/1984,91 Transport Alley,QA +VN2020_34,Robbyn Petyt,14/10/1980,99408 Hagan Street,QA +VN2020_35,Garnet Giorgietto,18/08/1991,55640 Menomonie Place,MOBILE +VN2020_36,Ruthy Stollsteiner,29/05/1996,286 1st Park,SYSTEM +VN2020_37,Thurston Antill,20/10/1993,7207 Arizona Parkway,WEB +VN2020_38,Glenna Dubber,19/12/1999,821 Dahle Lane,QA +VN2020_39,Al Elsmere,22/04/1991,90 Talmadge Park,WEB +VN2020_40,Vincents Pietersen,25/06/1995,0 Summerview Pass,MOBILE +VN2020_41,Doreen Coppen,1/8/1987,09 Stephen Way,MOBILE +VN2020_42,Hilton Niccolls,10/2/1983,031 Maple Wood Circle,MOBILE +VN2020_43,Modesta O'Lynn,17/11/1982,0 Spenser Center,MOBILE +VN2020_44,Allene Slack,5/2/1987,1 Logan Drive,WEB +VN2020_45,Deloris Steljes,18/04/1991,33054 Morning Parkway,QA +VN2020_46,Hazel Tirrell,10/12/1983,70632 Fremont Hill,SYSTEM +VN2020_47,Lil Phelipeaux,20/01/1990,90992 Union Place,ADMIN +VN2020_48,Meggy Munsey,7/6/1990,56321 Lillian Street,ADMIN +VN2020_49,Heall O'Mailey,15/09/1989,1562 Pepper Wood Way,QA +VN2020_50,Dew Staziker,28/11/1991,09934 Gulseth Hill,ADMIN +VN2020_51,Corrie Dallman,8/7/1988,52359 Stephen Plaza,QA +VN2020_52,Stephani Wafer,22/12/1987,1936 Dovetail Pass,SYSTEM +VN2020_53,Chick Bashford,21/01/1987,7645 Ruskin Avenue,WEB +VN2020_54,Mohandas Kingerby,13/06/1998,78234 Melvin Court,MOBILE +VN2020_55,Tomas Parbrook,10/8/1986,9261 Little Fleur Street,WEB +VN2020_56,Bobbie Remmer,22/10/1989,70 Dwight Parkway,MOBILE +VN2020_57,Stu Bertolaccini,20/01/1980,7 Oneill Terrace,QA +VN2020_58,Hillie Yglesia,25/11/1985,2 Surrey Lane,MOBILE +VN2020_59,Gabbey Rubinsaft,10/4/1987,86 Carpenter Hill,QA +VN2020_60,Vaughn Loxdale,26/09/1997,4 Lukken Road,SYSTEM +VN2020_61,Bud Van Der Vlies,5/7/1981,8232 Derek Pass,WEB +VN2020_62,Graehme Pentycross,10/8/1994,3 Prentice Court,MOBILE +VN2020_63,Brett Prewett,28/06/1980,69162 Old Gate Pass,WEB +VN2020_64,Rosemaria Tythacott,9/3/1983,04399 Graedel Trail,QA +VN2020_65,Livia Hollibone,17/03/1980,2443 Hanover Junction,WEB +VN2020_66,Ardenia Dyett,18/10/1981,4000 Crowley Way,QA +VN2020_67,Gonzalo Dolder,12/5/1982,25 Hooker Park,WEB +VN2020_68,Moshe Benzie,13/04/1983,9 Delaware Circle,WEB +VN2020_69,Ajay Selby,8/3/1984,73423 Eastwood Crossing,QA +VN2020_70,Mellicent Mahaffey,25/10/1998,8 Old Shore Junction,WEB +VN2020_71,Sheelagh Feander,21/10/1989,8404 Portage Circle,QA +VN2020_72,Horatius Mulvany,22/06/1992,05 Rusk Circle,ADMIN +VN2020_73,Lacie Cescotti,20/05/1999,7772 Monica Lane,MOBILE +VN2020_74,Sadella Rapper,12/4/1989,9 Jana Parkway,ADMIN +VN2020_75,Jami Borg,15/11/1993,2300 Mariners Cove Crossing,WEB +VN2020_76,Israel Willmer,16/11/1984,9 Haas Place,SYSTEM +VN2020_77,Mack Hawtin,27/03/1992,9958 Welch Point,QA +VN2020_78,Minor Faulconer,2/3/1982,62 Alpine Plaza,WEB +VN2020_79,Hildagarde Laflin,27/08/1994,1347 Mayer Park,QA +VN2020_80,Christian Aps,7/1/1984,26 Waywood Alley,MOBILE +VN2020_81,Katy Regitz,30/05/1989,8942 Banding Hill,WEB +VN2020_82,Jeanette Hacun,7/7/1987,46255 Troy Junction,SYSTEM +VN2020_83,Roshelle Copp,3/6/1989,6 Pearson Plaza,WEB +VN2020_84,Livia Mosdall,24/11/1986,435 Oneill Road,SYSTEM +VN2020_85,Tatiania Vigne,31/03/1981,3 Stephen Crossing,SYSTEM +VN2020_86,Fonz Abrey,20/05/1999,74489 Pearson Road,ADMIN +VN2020_87,Dara Mouatt,27/07/1985,71 Jackson Terrace,SYSTEM +VN2020_88,Gunar McGraith,27/04/1985,2 Main Place,ADMIN +VN2020_89,Yule Escoffrey,7/2/1993,15 Mandrake Way,WEB +VN2020_90,Joane Vasey,14/10/1992,566 Derek Terrace,ADMIN +VN2020_91,Verina Clive,12/2/1980,913 Briar Crest Road,SYSTEM +VN2020_92,Mareah Paddy,24/08/1981,11 Upham Avenue,WEB +VN2020_93,Rosaleen Elliston,23/08/1984,4 Jenifer Trail,MOBILE +VN2020_94,Cicily Rigler,12/1/1993,5 Express Court,ADMIN +VN2020_95,Lenci Langan,3/7/1999,8444 Kings Road,ADMIN +VN2020_96,Lorenza Hazeltine,27/04/1988,443 Cody Pass,MOBILE +VN2020_97,Maxy Slinn,9/9/1990,97 Annamark Lane,ADMIN +VN2020_98,Geno Klimp,1/10/1990,039 Ridge Oak Trail,WEB +VN2020_99,Melinde Graver,1/6/1987,1 Coolidge Hill,WEB +VN2020_100,Kasey Mowett,11/7/1998,608 Eastwood Center,QA +VN2020_101,Fin Minton,25/09/1984,4245 Ryan Terrace,QA +VN2020_102,Oralla Theyer,8/6/1986,5 Hanover Hill,WEB +VN2020_103,Agatha Strowan,22/04/1992,082 Raven Pass,MOBILE +VN2020_104,Aura Lawther,19/10/1980,474 Nelson Trail,ADMIN +VN2020_105,Uriah Burgen,30/07/1994,56 Reindahl Road,WEB +VN2020_106,Marc Adlam,12/7/1980,3435 Eagle Crest Plaza,SYSTEM +VN2020_107,Norbert Crampton,3/5/1994,7 Cordelia Court,SYSTEM +VN2020_108,Charla Piola,6/7/1997,945 Oakridge Road,SYSTEM +VN2020_109,Jere Derisly,25/07/1985,2 Buena Vista Trail,ADMIN +VN2020_110,Vivie Tebbet,21/03/1991,00747 Chive Terrace,SYSTEM +VN2020_111,Lenee MacGebenay,24/01/1995,97 Pleasure Trail,MOBILE +VN2020_112,Christiana Tripony,17/01/1994,325 Fordem Terrace,WEB +VN2020_113,Serge Curme,12/1/1987,63 Spohn Way,WEB +VN2020_114,Tiffie Laidler,17/01/1994,292 Autumn Leaf Place,WEB +VN2020_115,Hilda Whitlaw,31/01/1987,2 Carioca Terrace,MOBILE +VN2020_116,Eleonore Kira,30/11/1990,56114 Steensland Street,WEB +VN2020_117,Rance De Simoni,8/7/1996,8 Hoffman Place,WEB +VN2020_118,Idaline Aylett,27/05/1997,8366 Fair Oaks Parkway,SYSTEM +VN2020_119,Timothy Borman,11/5/1983,78 Golf Terrace,ADMIN +VN2020_120,Anthe Renals,3/11/1987,641 Dawn Place,ADMIN +VN2020_121,Monte Wiersma,20/11/1986,59519 Toban Lane,WEB +VN2020_122,Tandie Steagall,4/8/1991,8603 Heath Hill,MOBILE +VN2020_123,Chloris Eggerton,23/09/1993,068 Corry Circle,SYSTEM +VN2020_124,Elly MacGray,24/11/1980,31 Bonner Way,MOBILE +VN2020_125,Krishnah Glowacha,24/03/1989,14 Little Fleur Trail,MOBILE +VN2020_126,Wallas Hebborne,21/12/1993,5 Leroy Circle,SYSTEM +VN2020_127,Hector Creed,19/08/1990,1 Steensland Terrace,WEB +VN2020_128,Marti Matura,5/2/1982,72135 Morrow Parkway,WEB +VN2020_129,Doreen Nutbeem,19/04/1995,5079 Mcguire Center,WEB +VN2020_130,Royal Dauncey,23/10/1984,7434 Northridge Point,QA +VN2020_131,Winnie Storcke,4/9/1986,55 8th Parkway,WEB +VN2020_132,Joyce St. Leger,5/12/1985,89869 Dennis Center,WEB +VN2020_133,Kiersten Rowbottom,26/05/1999,7 Rowland Park,MOBILE +VN2020_134,Tammie Portlock,19/05/1992,19 Thompson Center,QA +VN2020_135,Aili Badcock,25/12/1990,7108 Farragut Court,ADMIN +VN2020_136,Corly Tuxell,24/07/1988,49925 Commercial Terrace,MOBILE +VN2020_137,Aylmer Androletti,2/4/1980,57706 Londonderry Circle,ADMIN +VN2020_138,Halie McCooke,14/10/1985,5751 Melby Terrace,SYSTEM +VN2020_139,Sebastian Gerardot,25/06/1983,862 Shoshone Way,QA +VN2020_140,Andie Syphus,8/4/1999,23 Heath Court,MOBILE +VN2020_141,Elston Dulling,11/5/1997,31916 Debs Court,WEB +VN2020_142,Mickie Pepi,18/11/1984,9680 5th Hill,QA +VN2020_143,Archy Spatari,12/4/1987,0246 Commercial Pass,MOBILE +VN2020_144,Gianina Sheldon,22/08/1995,83966 Esker Circle,WEB +VN2020_145,Chelsey Eggerton,17/05/1984,7 South Center,SYSTEM +VN2020_146,Krissie Meadowcraft,20/02/1984,174 Fair Oaks Way,ADMIN +VN2020_147,Agretha Jedraszek,1/5/1993,77579 Graceland Road,QA +VN2020_148,Danya Brind,25/10/1989,8 Carberry Hill,WEB +VN2020_149,Raffaello Becker,19/11/1983,333 Northland Plaza,QA +VN2020_150,Monro Chastey,4/7/1988,95 Tennessee Avenue,MOBILE +VN2020_151,Ara Binham,8/2/1998,0 Reindahl Hill,WEB +VN2020_152,Dannel Galliver,28/09/1992,52 Sunbrook Lane,SYSTEM +VN2020_153,Granny Valentetti,12/8/1981,37 Barnett Center,SYSTEM +VN2020_154,Egbert Popplewell,3/5/1996,24633 Cordelia Hill,QA +VN2020_155,Ilsa Pinar,30/07/1980,1 Ridgeview Court,QA +VN2020_156,Danell McNalley,29/08/1983,35571 North Alley,SYSTEM +VN2020_157,Cari Heap,15/04/1988,572 Main Circle,SYSTEM +VN2020_158,Averill Gensavage,20/10/1996,63576 Blaine Pass,QA +VN2020_159,Hugibert Foakes,24/12/1998,5043 Huxley Trail,SYSTEM +VN2020_160,Cristi Durrett,30/09/1984,82 Montana Hill,MOBILE +VN2020_161,Dre Elizabeth,16/01/1997,8585 Blaine Point,WEB +VN2020_162,Clayborn Woollacott,12/12/1994,841 Summit Center,MOBILE +VN2020_163,Wendie Hallam,14/11/1999,5026 Nelson Court,MOBILE +VN2020_164,Madelena de Castelain,11/3/1990,45288 Gulseth Hill,QA +VN2020_165,Ardisj Verlander,6/2/1987,88607 Buena Vista Avenue,MOBILE +VN2020_166,Mada Flack,23/02/1998,89 Springview Parkway,MOBILE +VN2020_167,Juliet Spearman,13/02/1996,21 Springview Terrace,MOBILE +VN2020_168,Fair Bisatt,1/11/1993,377 Westport Junction,QA +VN2020_169,Jae Kocher,19/03/1994,9 Mallard Center,SYSTEM +VN2020_170,Shirley Kilbourne,11/11/1985,40 Ridge Oak Place,MOBILE +VN2020_171,Beatriz Pritchitt,6/1/1986,88995 Corry Point,SYSTEM +VN2020_172,Eddy MacGregor,10/11/1990,53229 Ridge Oak Lane,WEB +VN2020_173,Libbi Bragginton,10/12/1994,96325 Blackbird Lane,QA +VN2020_174,Feodor Semeniuk,2/6/1994,52 Merry Street,SYSTEM +VN2020_175,Chrissie McFie,4/8/1989,37629 Fieldstone Way,WEB +VN2020_176,Pierce Luscott,26/07/1991,73 Kim Junction,MOBILE +VN2020_177,Dyna Schwartz,13/04/1981,90 Fordem Trail,ADMIN +VN2020_178,Faun Gauge,28/11/1990,333 Killdeer Point,WEB +VN2020_179,Elston Yurshev,9/2/1994,5836 Forster Way,MOBILE +VN2020_180,Nelson McRinn,11/7/1997,7821 Montana Pass,MOBILE +VN2020_181,Weber Povey,23/06/1989,114 Erie Street,MOBILE +VN2020_182,Abbie Goracci,17/06/1988,58059 Texas Hill,SYSTEM +VN2020_183,Alayne Beaty,15/03/1984,88 Toban Avenue,QA +VN2020_184,Lewie McMorran,22/03/1985,81374 High Crossing Lane,MOBILE +VN2020_185,Heywood Purbrick,19/09/1995,8340 Weeping Birch Alley,QA +VN2020_186,Thornton Gwinnel,5/8/1995,81 Carpenter Lane,QA +VN2020_187,Melinde Hazlegrove,19/10/1984,1161 Bultman Terrace,QA +VN2020_188,Patsy Coventon,30/01/1999,68 Prairieview Parkway,WEB +VN2020_189,Kacie Keningley,10/12/1984,639 Kedzie Avenue,QA +VN2020_190,Wait Congreve,14/09/1990,5714 Sloan Avenue,MOBILE +VN2020_191,Chase Meenehan,3/6/1995,1 Bellgrove Place,ADMIN +VN2020_192,Mirella Hanby,6/2/1993,93 Armistice Parkway,QA +VN2020_193,Robinett Agget,2/6/1993,8 Charing Cross Plaza,WEB +VN2020_194,Sebastien Szymaniak,5/6/1993,81059 Marcy Road,ADMIN +VN2020_195,Tatiania Apperley,15/04/1982,466 Barnett Lane,SYSTEM +VN2020_196,Vina Meech,5/6/1986,0902 Scott Drive,QA +VN2020_197,Clement Luddy,18/03/1990,9045 Kropf Terrace,ADMIN +VN2020_198,Bing Bauchop,17/07/1996,575 Autumn Leaf Parkway,MOBILE +VN2020_199,Lotty Enderwick,20/06/1997,1 Forest Drive,WEB +VN2020_200,Wiley Harlick,20/07/1982,367 Sloan Junction,ADMIN +VN2020_201,Addia Heathfield,15/04/1991,1874 Buell Avenue,MOBILE +VN2020_202,Finn Nairns,11/4/1989,969 Dayton Trail,SYSTEM +VN2020_203,Kalina Dory,30/10/1995,209 Continental Parkway,QA +VN2020_204,Arlyn Coche,14/05/1989,4 Milwaukee Park,SYSTEM +VN2020_205,Gene Fergusson,5/12/1985,80713 Larry Crossing,ADMIN +VN2020_206,Reggie Egentan,16/06/1987,10 Reindahl Avenue,WEB +VN2020_207,Tiffie Duetschens,9/8/1998,9 Loeprich Point,SYSTEM +VN2020_208,Flinn Ivy,14/03/1987,3 Commercial Point,QA +VN2020_209,Kora Volks,10/12/1997,379 Dawn Court,SYSTEM +VN2020_210,Anita Clist,21/06/1999,93 Jenifer Trail,WEB +VN2020_211,Lani Pinfold,4/6/1995,743 Eggendart Trail,SYSTEM +VN2020_212,Georgine Senett,14/05/1995,429 Dapin Drive,SYSTEM +VN2020_213,Lorrie Signoret,17/07/1996,9 Stephen Street,QA +VN2020_214,Kirsten Tomsa,13/01/1991,8 Coolidge Point,MOBILE +VN2020_215,Elliot Stitcher,22/10/1981,2 Hoffman Park,QA +VN2020_216,Ardyce Lober,9/4/1986,6 Monica Pass,SYSTEM +VN2020_217,Clarie Benadette,17/08/1985,22690 Clarendon Crossing,QA +VN2020_218,Megan Melendez,24/06/1995,76 Little Fleur Crossing,QA +VN2020_219,Cammy Munden,20/02/1999,6 Tennessee Alley,WEB +VN2020_220,Kizzee Sevitt,16/03/1980,77101 Talmadge Place,MOBILE +VN2020_221,Jobye Moulden,25/07/1988,59582 Nova Terrace,WEB +VN2020_222,Hakim Paulou,12/5/1987,67 Crownhardt Avenue,SYSTEM +VN2020_223,Alexandros O'Mohun,1/7/1991,566 Kipling Trail,ADMIN +VN2020_224,Leah Bentjens,12/3/1982,2050 Arizona Point,SYSTEM +VN2020_225,Phil Rafferty,30/11/1993,882 Burrows Place,MOBILE +VN2020_226,Madel Faust,9/2/1993,6367 Bluejay Alley,WEB +VN2020_227,Jewel Marshallsay,7/5/1992,53 Oakridge Trail,SYSTEM +VN2020_228,Sib Cloute,26/06/1998,35831 Dottie Trail,MOBILE +VN2020_229,Cirstoforo Hanbury-Brown,4/9/1984,292 Blue Bill Park Way,WEB +VN2020_230,Cris Brimmacombe,3/3/1982,20 Dixon Court,QA +VN2020_231,Stephen Emanueli,10/6/1992,7607 David Hill,WEB +VN2020_232,Beau Backson,28/11/1981,299 Pepper Wood Circle,ADMIN +VN2020_233,Duff Luxen,4/5/1983,6653 David Terrace,SYSTEM +VN2020_234,Cleopatra McKeon,23/01/1980,1355 Vidon Junction,MOBILE +VN2020_235,Laurene Towhey,1/1/1984,6579 Iowa Street,WEB +VN2020_236,Lorrie Rastrick,22/09/1990,6 Arkansas Place,MOBILE +VN2020_237,Gale Meconi,17/02/1986,816 Di Loreto Crossing,WEB +VN2020_238,Otho Braikenridge,13/05/1989,784 Beilfuss Court,SYSTEM +VN2020_239,Shawna Lamplugh,22/11/1991,3384 Browning Junction,QA +VN2020_240,Jamie Eminson,22/11/1988,7 Hintze Point,SYSTEM +VN2020_241,Mannie Allday,16/07/1980,56 Myrtle Lane,QA +VN2020_242,Manolo Bartlomiej,30/01/1987,08710 School Center,ADMIN +VN2020_243,Lucille Sutworth,4/10/1988,69911 Texas Junction,MOBILE +VN2020_244,Mendie Hundall,30/01/1988,9 Bartelt Avenue,SYSTEM +VN2020_245,Margarita Batcheldor,15/08/1995,0014 Caliangt Avenue,SYSTEM +VN2020_246,Brad Vairow,12/7/1992,3517 Kingsford Terrace,WEB +VN2020_247,Gilberto Backhurst,12/4/1981,27543 Rusk Avenue,ADMIN +VN2020_248,Orly McKniely,18/02/1987,0 Hovde Lane,WEB +VN2020_249,Nani Chastenet,1/2/1991,14343 John Wall Hill,MOBILE +VN2020_250,Tiffie Eliasen,15/03/1984,89 Gateway Way,WEB +VN2020_251,Janelle Bazek,1/9/1995,43389 Superior Park,QA +VN2020_252,Trudie Raylton,14/11/1985,89499 Hudson Court,SYSTEM +VN2020_253,Ado Carlyon,10/7/1990,8662 Stephen Plaza,WEB +VN2020_254,Leonardo Cubbon,10/10/1991,658 Dayton Point,ADMIN +VN2020_255,Cilka Ince,13/03/1984,7415 Shasta Street,SYSTEM +VN2020_256,Amberly Claypole,19/12/1986,52 Maryland Street,SYSTEM +VN2020_257,Dall Wedmore.,14/04/1994,29 Scoville Road,ADMIN +VN2020_258,Jarret Josland,15/03/1982,3826 Green Point,MOBILE +VN2020_259,Meredithe Kenway,23/03/1992,3 Sloan Street,WEB +VN2020_260,Gerhardt Galliford,20/11/1990,317 Rieder Point,MOBILE +VN2020_261,Filia MacCleod,20/12/1984,05306 Pierstorff Drive,WEB +VN2020_262,Jereme Normanvell,1/5/1990,351 Stoughton Alley,SYSTEM +VN2020_263,Shelley Mumbray,15/08/1986,9 Monterey Park,MOBILE +VN2020_264,Eyde Nellis,15/03/1990,162 Monterey Junction,ADMIN +VN2020_265,Tarah Pummery,11/10/1982,2 Stoughton Terrace,QA +VN2020_266,Darrin Antoni,19/12/1997,7582 Delaware Center,MOBILE +VN2020_267,Maybelle Kivell,16/04/1991,029 Delladonna Crossing,SYSTEM +VN2020_268,Sheri Fist,20/02/1982,04763 Butterfield Drive,WEB +VN2020_269,Rickey Johann,29/09/1993,1186 Grover Terrace,SYSTEM +VN2020_270,Crawford Ivanyukov,12/10/1987,73 2nd Point,SYSTEM +VN2020_271,Carlyle Smiths,6/5/1988,8 Mayer Drive,QA +VN2020_272,Danni Pepin,30/07/1989,25 Doe Crossing Center,SYSTEM +VN2020_273,Geraldine Gisbourn,27/03/1985,86 Caliangt Pass,SYSTEM +VN2020_274,Reinhard Bims,27/12/1997,6 Luster Hill,WEB +VN2020_275,Pru Sturch,5/12/1990,20 Debs Drive,QA +VN2020_276,Koren McLucky,28/07/1995,1 Rockefeller Lane,WEB +VN2020_277,Ban McCroary,26/10/1988,82390 Montana Parkway,QA +VN2020_278,Husain Reddlesden,5/4/1993,8087 Schlimgen Road,WEB +VN2020_279,Carrie Pedreschi,28/02/1991,1 Laurel Lane,WEB +VN2020_280,Torrey Reddihough,17/06/1984,7724 Hayes Terrace,MOBILE +VN2020_281,Rora Yanuk,23/03/1999,7219 Merrick Trail,MOBILE +VN2020_282,Verile Lamba,8/1/1999,3 Caliangt Center,ADMIN +VN2020_283,Karel Pollastrone,18/09/1985,641 Twin Pines Avenue,QA +VN2020_284,Elaina Turton,1/7/1995,91270 Spenser Way,WEB +VN2020_285,Myrilla Alldread,18/08/1988,73134 Arrowood Pass,SYSTEM +VN2020_286,Dalenna Vankeev,7/11/1993,601 La Follette Court,WEB +VN2020_287,Kathryn Toolin,10/7/1995,188 Ronald Regan Point,SYSTEM +VN2020_288,Nanci Cruttenden,14/06/1998,26 Quincy Alley,MOBILE +VN2020_289,Fernanda Nutt,15/07/1994,862 Oneill Place,MOBILE +VN2020_290,Bonnibelle Ravel,10/11/1982,4372 Roth Circle,SYSTEM +VN2020_291,Reynold O'Donovan,25/12/1993,25818 Jenna Circle,SYSTEM +VN2020_292,Jorey Puve,29/09/1984,29 Montana Point,WEB +VN2020_293,Costa Yosifov,12/12/1996,14 American Ash Street,ADMIN +VN2020_294,Jakie Treversh,15/04/1982,43611 Elgar Alley,QA +VN2020_295,Caressa Dipple,12/6/1980,5 Stephen Center,SYSTEM +VN2020_296,Lizabeth Seeds,6/11/1995,08 Almo Crossing,SYSTEM +VN2020_297,Jon Tibbetts,16/04/1980,5721 Blue Bill Park Lane,MOBILE +VN2020_298,Rachel Offener,12/6/1994,177 Scofield Terrace,WEB +VN2020_299,Massimo Woolmore,15/07/1989,2124 Menomonie Alley,ADMIN +VN2020_300,Ade Shaul,17/09/1983,8 Sutteridge Pass,WEB +VN2020_301,Miranda Kolinsky,22/09/1992,19114 Lakewood Road,WEB +VN2020_302,Britni Gully,4/8/1994,91728 Burning Wood Road,MOBILE +VN2020_303,Rowen Liversley,17/10/1998,6307 Eagan Trail,WEB +VN2020_304,Gavan Trinke,16/03/1997,2 Maple Wood Alley,QA +VN2020_305,Gabby Rawlingson,11/6/1985,35636 Macpherson Plaza,ADMIN +VN2020_306,Dasya Wands,27/12/1994,18 1st Park,WEB +VN2020_307,Christian Boyce,29/01/1981,06401 Briar Crest Court,QA +VN2020_308,Dallas Adran,5/10/1993,9137 Cambridge Place,WEB +VN2020_309,Harald Bedham,10/1/1984,572 Northridge Park,WEB +VN2020_310,Morty Martelet,1/6/1998,8579 Carberry Point,QA +VN2020_311,Harman Doohey,26/03/1991,0428 Center Park,WEB +VN2020_312,Belle Whittock,18/12/1985,429 Eggendart Center,ADMIN +VN2020_313,Shannan Grelak,10/9/1985,51469 Laurel Parkway,MOBILE +VN2020_314,Feliks Senn,18/08/1981,08225 Johnson Street,WEB +VN2020_315,Jamaal Hegges,1/5/1988,576 Surrey Center,ADMIN +VN2020_316,Mathew Seawright,10/8/1986,39396 Dahle Plaza,WEB +VN2020_317,Filia Misken,8/11/1995,7 Ryan Circle,WEB +VN2020_318,Doralin Standall,9/8/1989,6676 Petterle Plaza,QA +VN2020_319,Abran Liversidge,20/03/1990,71976 Division Center,WEB +VN2020_320,Karylin Hallmark,23/07/1994,3292 Old Gate Circle,QA +VN2020_321,Marcus Izhaky,4/12/1984,8038 Morningstar Lane,WEB +VN2020_322,Tine Dudderidge,29/07/1987,152 Merrick Hill,WEB +VN2020_323,Filip Daugherty,9/2/1980,1572 Eliot Place,QA +VN2020_324,Fraser Carss,18/04/1995,06193 Sunfield Pass,MOBILE +VN2020_325,Odey Cummins,25/01/1999,38225 Judy Point,SYSTEM +VN2020_326,Yul Scanlon,9/1/1999,16473 Old Shore Parkway,WEB +VN2020_327,Kingston Tombs,12/11/1982,2632 Gulseth Plaza,ADMIN +VN2020_328,Jolie Dowman,19/03/1981,874 East Place,SYSTEM +VN2020_329,Mylo Arbuckle,16/07/1986,14235 Victoria Alley,ADMIN +VN2020_330,Lorant Habbes,11/3/1985,454 Hintze Trail,MOBILE +VN2020_331,Roosevelt Garett,12/2/1984,199 Blue Bill Park Parkway,WEB +VN2020_332,Emelen Toope,3/5/1999,6913 Londonderry Parkway,WEB +VN2020_333,Mikkel Tappin,11/10/1983,90 Riverside Drive,WEB +VN2020_334,Laurel Wicher,17/05/1983,6 Wayridge Pass,QA +VN2020_335,Jenn Barwise,5/12/1990,4 Marquette Place,WEB +VN2020_336,Mimi Red,24/01/1990,5 Del Mar Parkway,WEB +VN2020_337,Karel Barry,26/06/1983,81313 Lukken Crossing,WEB +VN2020_338,Gamaliel Duffell,6/4/1987,526 Gina Trail,WEB +VN2020_339,Lauryn Fayre,13/03/1995,27 East Center,SYSTEM +VN2020_340,Emmit Wordley,23/09/1986,86 Lien Hill,WEB +VN2020_341,Matt Abdy,23/11/1981,1 Lerdahl Plaza,MOBILE +VN2020_342,Ario Glitherow,10/4/1980,5690 Arrowood Way,WEB +VN2020_343,Dedra Scotchbrook,22/06/1999,4 Sachtjen Place,ADMIN +VN2020_344,Pepi Claisse,6/7/1981,8070 Pleasure Pass,ADMIN +VN2020_345,Kory Auchinleck,2/3/1983,84897 Hoard Hill,MOBILE +VN2020_346,Aymer Bensen,29/12/1997,2 Fisk Avenue,WEB +VN2020_347,Ellerey Stockdale,5/12/1982,563 Nevada Street,ADMIN +VN2020_348,Karlyn Warren,30/03/1994,98 Maywood Park,WEB +VN2020_349,Joly Greenshields,7/4/1997,782 Roxbury Crossing,QA +VN2020_350,Cybil Tythacott,7/3/1981,65910 Burrows Trail,QA +VN2020_351,Kelley Papierz,7/5/1984,13305 Maryland Plaza,QA +VN2020_352,Cherice McElree,6/8/1990,9057 Main Place,QA +VN2020_353,Stephine Chrestien,16/12/1980,672 Duke Terrace,MOBILE +VN2020_354,Yelena Galley,5/8/1997,16943 Bay Hill,MOBILE +VN2020_355,Marshal Chafney,4/5/1992,311 Laurel Alley,MOBILE +VN2020_356,Quill Sinderland,10/7/1991,44 Cordelia Drive,WEB +VN2020_357,Jacki Gronowe,10/3/1987,9 Lakewood Gardens Circle,MOBILE +VN2020_358,Karita Engeham,4/11/1982,6 Lerdahl Parkway,ADMIN +VN2020_359,Delcine Close,12/10/1991,223 Old Gate Point,WEB +VN2020_360,Pierette Aubrey,19/11/1986,08661 Alpine Avenue,WEB +VN2020_361,Adorne O'Teague,5/10/1993,622 Mosinee Alley,WEB +VN2020_362,Sibilla Larmett,12/11/1994,68 Londonderry Drive,MOBILE +VN2020_363,Elena Laval,2/7/1981,90 4th Junction,SYSTEM +VN2020_364,Patrizio Downage,2/8/1998,50 Comanche Parkway,MOBILE +VN2020_365,Inesita de Zamora,14/04/1999,2573 Atwood Hill,WEB +VN2020_366,Daffy Cant,15/03/1990,3 Holmberg Trail,QA +VN2020_367,Teodora Oven,16/05/1987,60 Spaight Drive,WEB +VN2020_368,Cletus Pynner,2/11/1989,584 Maple Terrace,MOBILE +VN2020_369,Travus Agastina,29/09/1988,28 Manufacturers Street,WEB +VN2020_370,Coreen Gaukrodge,18/06/1983,55 Heath Plaza,MOBILE +VN2020_371,Charlean Deave,5/1/1984,212 Birchwood Alley,WEB +VN2020_372,Brietta Mahaddie,12/4/1984,4 Summerview Parkway,WEB +VN2020_373,Jason Bassilashvili,20/07/1981,820 Nobel Point,MOBILE +VN2020_374,Bobina Adamovicz,3/12/1984,259 Meadow Ridge Crossing,WEB +VN2020_375,Yance Colwell,29/03/1996,46 Jay Circle,WEB +VN2020_376,Ric Elmar,5/3/1992,622 Springview Junction,MOBILE +VN2020_377,Gavrielle Ellis,29/11/1998,8 Linden Park,MOBILE +VN2020_378,Lacey Skyppe,2/12/1987,2 Kim Center,WEB +VN2020_379,Viv Caplan,16/09/1997,145 Packers Alley,SYSTEM +VN2020_380,Hillier Melding,24/01/1998,8940 Dapin Parkway,MOBILE +VN2020_381,Consolata Fontel,8/10/1993,235 Garrison Court,WEB +VN2020_382,Saxon Crosswaite,29/07/1997,05 Anderson Avenue,WEB +VN2020_383,Bibby Broadbridge,16/11/1993,9603 Trailsway Lane,SYSTEM +VN2020_384,Darill Arrundale,22/08/1981,1704 Blue Bill Park Lane,SYSTEM +VN2020_385,Clari Adamides,21/07/1981,905 Village Crossing,QA +VN2020_386,Yorke Osmond,18/03/1989,135 Butterfield Road,MOBILE +VN2020_387,Trev Basden,8/6/1984,3 Talmadge Circle,WEB +VN2020_388,Hunfredo Maier,29/03/1987,6542 Larry Avenue,WEB +VN2020_389,Brita Crissil,16/02/1985,1098 Prairieview Park,WEB +VN2020_390,Eleonore Marxsen,26/12/1993,986 Stuart Court,WEB +VN2020_391,Franklyn Polak,12/2/1984,05 Utah Park,WEB +VN2020_392,Jen Galler,10/6/1989,46562 Leroy Trail,SYSTEM +VN2020_393,Cass Rangle,22/06/1989,464 Buena Vista Parkway,WEB +VN2020_394,Haley Ulyatt,26/05/1994,29748 Anthes Avenue,WEB +VN2020_395,Angeline Leaning,12/2/1984,32 Sauthoff Court,WEB +VN2020_396,Gilligan Dennison,13/08/1982,28547 Fallview Alley,QA +VN2020_397,Clair Stivey,10/2/1990,880 Shasta Road,MOBILE +VN2020_398,Nye Frosch,30/06/1997,062 Emmet Parkway,MOBILE +VN2020_399,Ingrid Barfoot,3/8/1999,924 Transport Trail,WEB +VN2020_400,Gawain Siddens,23/10/1984,8 East Way,SYSTEM +VN2020_401,Leyla Moubray,12/10/1987,0 Thierer Junction,WEB +VN2020_402,Uta Karran,28/09/1988,43 Mayfield Avenue,MOBILE +VN2020_403,Scot Vaen,8/12/1997,50 Loomis Avenue,WEB +VN2020_404,Mab Dowthwaite,18/12/1997,70 Elmside Street,QA +VN2020_405,Doralynn Commuzzo,16/02/1986,25 Pearson Alley,SYSTEM +VN2020_406,Domenico Fowlie,7/4/1990,296 Shasta Terrace,QA +VN2020_407,John Highman,5/6/1984,75 Bunker Hill Road,WEB +VN2020_408,Dick Norquoy,31/08/1984,9 Fieldstone Parkway,SYSTEM +VN2020_409,Corena Issitt,17/06/1996,73959 Manufacturers Road,QA +VN2020_410,Dulci Grishagin,24/12/1988,487 Corscot Parkway,MOBILE +VN2020_411,Ardeen Cuttelar,23/07/1995,3667 International Court,MOBILE +VN2020_412,Florette Holah,29/09/1994,616 Mallory Way,QA +VN2020_413,Peter Quilty,25/01/1998,17 Lien Hill,WEB +VN2020_414,Booth Wickett,1/10/1985,8487 Rigney Place,QA +VN2020_415,Oran Sancias,16/11/1983,0530 Evergreen Road,WEB +VN2020_416,Letta Huddlestone,19/10/1999,486 6th Hill,QA +VN2020_417,Pearl Becken,4/8/1980,5 Claremont Road,WEB +VN2020_418,Konstantine Sentance,8/4/1985,36 Commercial Street,MOBILE +VN2020_419,Amble Wollaston,20/03/1993,0 Susan Plaza,MOBILE +VN2020_420,Kerrin Brymner,15/04/1991,2223 Red Cloud Circle,ADMIN +VN2020_421,Everett Kobes,5/7/1981,90 Moland Street,WEB +VN2020_422,Sheeree Killerby,16/06/1987,562 Little Fleur Court,ADMIN +VN2020_423,Celestine Hawtrey,6/12/1980,42 Meadow Valley Parkway,WEB +VN2020_424,Jorry Kroin,19/04/1988,0 Main Hill,QA +VN2020_425,Dallon Izaks,25/03/1993,20626 Delaware Crossing,ADMIN +VN2020_426,Eustace Dunphie,16/03/1981,64 Esch Pass,QA +VN2020_427,Smith Dunsford,7/6/1997,45 Wayridge Point,MOBILE +VN2020_428,Hobart Tamplin,3/10/1983,11 Lillian Junction,ADMIN +VN2020_429,Elfie Jeanesson,26/07/1983,304 Blaine Center,QA +VN2020_430,Riane Ashwell,3/7/1993,282 Eliot Terrace,MOBILE +VN2020_431,Syd Patience,17/05/1984,2196 Browning Parkway,ADMIN +VN2020_432,Patrick Aisthorpe,13/11/1994,98160 Northfield Place,ADMIN +VN2020_433,Halsy Mallion,24/12/1990,365 Packers Pass,QA +VN2020_434,Kandy Birkin,15/08/1990,22333 Lien Parkway,MOBILE +VN2020_435,Joey Reed,9/3/1988,9 Spohn Plaza,WEB +VN2020_436,Geoffrey Joberne,9/5/1989,08 Red Cloud Parkway,MOBILE +VN2020_437,Yurik Guiet,2/5/1980,8 Declaration Street,WEB +VN2020_438,Corri Arundale,27/05/1986,5466 Eliot Road,MOBILE +VN2020_439,Amye Grafton-Herbert,26/03/1990,9 Bay Park,SYSTEM +VN2020_440,Betteanne Woolley,24/03/1999,02721 Prentice Court,WEB +VN2020_441,Laureen Quilty,25/06/1995,5110 Corry Terrace,QA +VN2020_442,Lisle Antonikov,26/03/1981,8 Brentwood Court,SYSTEM +VN2020_443,Farrand St Leger,23/04/1995,98421 Leroy Plaza,WEB +VN2020_444,Gusty Thow,26/04/1995,1192 Towne Way,QA +VN2020_445,Loralie Hurcombe,3/2/1987,4 Loftsgordon Way,QA +VN2020_446,Tatiana Armes,11/2/1999,893 American Ash Hill,WEB +VN2020_447,Teodora Chipping,21/04/1999,46 Paget Crossing,QA +VN2020_448,Allissa Lozano,16/11/1999,1 Emmet Trail,MOBILE +VN2020_449,Brittaney Stainer,22/06/1990,1 Donald Circle,WEB +VN2020_450,Krishnah Funcheon,10/9/1985,4 Portage Junction,QA +VN2020_451,Giles Bloschke,2/9/1996,90 Fuller Plaza,QA +VN2020_452,Blanche Kondratovich,11/8/1990,5492 Corscot Street,WEB +VN2020_453,Astrid Weal,11/11/1998,00 Elgar Park,WEB +VN2020_454,Una McCraw,3/4/1980,67 Del Sol Lane,SYSTEM +VN2020_455,Nolly Hargate,20/08/1986,0370 Hudson Park,SYSTEM +VN2020_456,Jamil Shaw,29/12/1989,27239 Northland Point,QA +VN2020_457,Marten Price,3/5/1980,4 Green Crossing,MOBILE +VN2020_458,Constancia Guillot,2/1/1986,31 Jay Drive,MOBILE +VN2020_459,Kathryne Mecco,5/1/1989,83 Leroy Road,SYSTEM +VN2020_460,Lawry Cheale,7/10/1998,749 Truax Point,WEB +VN2020_461,Darby Lapham,24/05/1991,77 Novick Crossing,WEB +VN2020_462,Lela Barracks,6/5/1996,76 Moulton Street,QA +VN2020_463,Augy Leil,25/06/1997,64021 Melvin Place,WEB +VN2020_464,Victoria Ferrea,24/03/1996,7138 Claremont Place,ADMIN +VN2020_465,Moe Baff,18/10/1985,0 Donald Alley,ADMIN +VN2020_466,Marcelle Frodsam,8/1/1988,1877 Jay Avenue,MOBILE +VN2020_467,Cliff Dussy,6/5/1981,62 Dawn Drive,MOBILE +VN2020_468,Emmerich Boyen,30/03/1994,18 4th Circle,WEB +VN2020_469,Vivian Gosby,24/02/1988,895 Chinook Junction,MOBILE +VN2020_470,Albrecht Ollander,11/12/1980,84802 Esch Hill,SYSTEM +VN2020_471,Hephzibah O'Spillane,15/04/1997,76 Linden Junction,SYSTEM +VN2020_472,Lewiss Meacher,17/05/1981,49 Thackeray Trail,MOBILE +VN2020_473,Cesar Upstell,16/01/1990,45487 Lakewood Gardens Trail,MOBILE +VN2020_474,Arabela Colledge,25/09/1991,22177 Delladonna Park,QA +VN2020_475,Rey Gilman,13/04/1991,7816 Cordelia Crossing,QA +VN2020_476,Zolly Steffens,13/10/1985,0205 Summerview Court,ADMIN +VN2020_477,Guss Lacotte,29/03/1991,70 Dapin Junction,MOBILE +VN2020_478,Alix McDougle,20/08/1989,7 Kenwood Park,SYSTEM +VN2020_479,Stacee Holston,7/11/1990,3564 Vidon Terrace,WEB +VN2020_480,Noell Menicomb,12/5/1982,06 Monument Junction,QA +VN2020_481,Linn Rooper,3/3/1991,92845 Nova Circle,ADMIN +VN2020_482,Neysa Stanmer,1/7/1982,10 Sutteridge Crossing,SYSTEM +VN2020_483,Elmira Dubock,5/5/1997,5749 Bluejay Trail,MOBILE +VN2020_484,Marjorie Ceillier,26/02/1992,1225 Hoepker Point,ADMIN +VN2020_485,Devlen Fernan,1/3/1984,9654 Graceland Place,WEB +VN2020_486,Aylmer Saxon,3/1/1981,99908 Marquette Junction,QA +VN2020_487,Hilda McCulloch,20/09/1999,1110 Maple Wood Hill,QA +VN2020_488,Shaine Pickthorn,2/2/1993,85 Barby Alley,WEB +VN2020_489,Alfy Ivimey,2/10/1994,165 Hoffman Point,ADMIN +VN2020_490,Deloria Vernon,2/8/1980,940 Hanson Circle,SYSTEM +VN2020_491,Shea Allingham,8/5/1987,1 Myrtle Plaza,WEB +VN2020_492,Cindy Ulyatt,12/3/1992,67 Lotheville Hill,WEB +VN2020_493,Towny Pittendreigh,7/6/1981,1080 Waywood Lane,QA +VN2020_494,Loren Rowlson,30/01/1988,160 Tomscot Road,WEB +VN2020_495,Augustine Jertz,20/08/1982,129 Caliangt Lane,SYSTEM +VN2020_496,Jehanna Mavin,6/6/1984,81 Linden Crossing,WEB +VN2020_497,Jacquenette Pindred,8/6/1981,51083 Summerview Circle,ADMIN +VN2020_498,Jolie Carradice,10/8/1996,10 Lotheville Street,WEB +VN2020_499,Artemas Vivian,29/07/1998,3616 Cambridge Court,WEB +VN2020_500,Dame Gall,19/11/1982,46828 Canary Avenue,QA +VN2020_501,Eliot Abramzon,12/5/1993,0312 Northland Lane,WEB +VN2020_502,Meredith Adie,5/7/1993,62222 Mariners Cove Avenue,WEB +VN2020_503,Wadsworth Yuranovev,18/06/1992,5 Charing Cross Hill,SYSTEM +VN2020_504,Giffie Luckie,15/09/1985,85892 Miller Way,QA +VN2020_505,Cheryl Florez,30/07/1998,32 Merrick Pass,QA +VN2020_506,Bernhard Pidcock,24/08/1991,11 Judy Road,SYSTEM +VN2020_507,Conroy Jeffree,14/01/1982,6 Union Trail,WEB +VN2020_508,Daniela Uttridge,5/5/1984,508 Mallory Point,WEB +VN2020_509,Loralie Cuchey,3/8/1992,3634 Lyons Road,QA +VN2020_510,Ronny Boissier,18/01/1998,38 Bobwhite Drive,WEB +VN2020_511,Fabiano Collen,30/03/1988,763 Kinsman Trail,ADMIN +VN2020_512,Barbie Hobbema,11/10/1985,8 Roth Drive,SYSTEM +VN2020_513,Gabrielle Mesant,3/2/1992,84 7th Point,SYSTEM +VN2020_514,Ravi Seeman,13/01/1986,26 Fallview Parkway,WEB +VN2020_515,Artemas Cadwell,10/5/1987,32730 Schurz Pass,QA +VN2020_516,Anastasia Meeke,1/1/1996,36 Kingsford Road,SYSTEM +VN2020_517,Clayborne Apfler,27/09/1998,23650 Nancy Street,MOBILE +VN2020_518,Ernestine De la Zenne,21/01/1986,20304 Farmco Circle,MOBILE +VN2020_519,Deina Brookhouse,4/7/1987,816 Manley Place,SYSTEM +VN2020_520,Kittie Dudman,29/01/1994,2 Rieder Way,QA +VN2020_521,Carter Crayton,7/9/1998,1584 Glacier Hill Trail,WEB +VN2020_522,Joaquin Welden,9/10/1992,9 Clemons Crossing,SYSTEM +VN2020_523,Mayne Yusupov,14/08/1982,21240 Linden Junction,ADMIN +VN2020_524,Falkner Jagger,9/12/1990,475 Emmet Alley,MOBILE +VN2020_525,Ronnie Whewill,18/10/1986,4 Dorton Plaza,ADMIN +VN2020_526,Arv Lynam,18/06/1988,00 Service Junction,QA +VN2020_527,Danit Stidever,28/07/1997,38 Mifflin Trail,QA +VN2020_528,Iolanthe Iohananof,1/5/1995,0550 Almo Trail,SYSTEM +VN2020_529,Rosemonde Iacovaccio,3/1/1982,3 Annamark Drive,SYSTEM +VN2020_530,Quentin Targett,30/10/1986,1 Main Place,MOBILE +VN2020_531,Gal Willwood,15/02/1995,338 Welch Crossing,QA +VN2020_532,Tanya Von Der Empten,15/09/1980,6037 Lotheville Plaza,WEB +VN2020_533,Randolf Grewcock,24/11/1984,9306 Fairfield Hill,QA +VN2020_534,Radcliffe Tissiman,11/11/1991,571 Crownhardt Trail,MOBILE +VN2020_535,Arabel Steckings,9/6/1998,84 Sunnyside Point,QA +VN2020_536,Belle Collie,13/09/1998,408 Del Sol Trail,SYSTEM +VN2020_537,Etti Geerling,31/05/1981,9 Linden Hill,WEB +VN2020_538,Dolores Grose,13/04/1986,470 Maywood Lane,ADMIN +VN2020_539,Randa Dowdam,30/12/1980,8956 Kennedy Court,QA +VN2020_540,Ebony Wackley,10/12/1996,67986 Chive Trail,QA +VN2020_541,Kayla Grunwall,14/03/1981,7876 Manitowish Lane,MOBILE +VN2020_542,Marylin Willbraham,17/08/1989,2 Brickson Park Junction,WEB +VN2020_543,Ossie Rassmann,29/07/1995,46 Comanche Junction,SYSTEM +VN2020_544,Dorolice Unstead,28/06/1980,1 Butterfield Point,WEB +VN2020_545,Pearle Hambling,30/12/1991,59 Norway Maple Point,ADMIN +VN2020_546,Carly Brown,2/4/1986,1 Sage Trail,ADMIN +VN2020_547,Jemimah Culham,12/12/1987,410 Kings Junction,MOBILE +VN2020_548,Webb Pickrill,10/8/1986,79 Dakota Street,WEB +VN2020_549,Orella Ohrtmann,12/2/1996,684 Kenwood Lane,QA +VN2020_550,Kermit Hebner,24/09/1985,68 Farragut Junction,MOBILE +VN2020_551,Delores Thomke,6/4/1983,72 Summer Ridge Pass,QA +VN2020_552,Allie Ethelstone,3/11/1998,25 Raven Crossing,WEB +VN2020_553,Bili Slides,23/02/1998,1 Maple Street,WEB +VN2020_554,Bebe Purdie,10/4/1999,8306 Garrison Road,WEB +VN2020_555,Alyson Coey,15/04/1981,9135 Derek Road,SYSTEM +VN2020_556,Flor Fantonetti,12/5/1994,0488 Magdeline Avenue,WEB +VN2020_557,Andrea Behnecke,15/02/1997,3 Texas Street,ADMIN +VN2020_558,Hewet Wrout,17/12/1992,0 Summerview Crossing,WEB +VN2020_559,Jacob Tschirschky,24/07/1995,868 Forster Street,SYSTEM +VN2020_560,Cyril Labbe,29/09/1996,5597 Tennyson Court,ADMIN +VN2020_561,Somerset Huffa,16/06/1994,12 Merry Street,QA +VN2020_562,Jarid Gaskell,14/03/1983,71 Jana Way,ADMIN +VN2020_563,Drew Humblestone,24/02/1993,84 Melby Trail,QA +VN2020_564,Vernen Wilkie,4/4/1994,25084 Main Place,QA +VN2020_565,Kirbie Lazell,1/1/1994,360 Merry Alley,MOBILE +VN2020_566,Brewster Kwietak,5/11/1990,882 Arapahoe Park,MOBILE +VN2020_567,Kacie Caney,4/3/1980,4158 Hagan Alley,SYSTEM +VN2020_568,Drake Allaway,15/06/1986,77 Sundown Street,SYSTEM +VN2020_569,Leopold Bautiste,7/11/1999,98445 Pierstorff Pass,SYSTEM +VN2020_570,Gerti Fretwell,12/6/1989,7843 Kennedy Parkway,SYSTEM +VN2020_571,Dwain Purches,2/8/1980,90824 Brentwood Street,SYSTEM +VN2020_572,Elisa Coopper,8/2/1988,4 John Wall Point,QA +VN2020_573,Dorthea Toomey,23/04/1998,152 Red Cloud Point,WEB +VN2020_574,Annaliese Baugh,26/02/1989,51857 Boyd Point,WEB +VN2020_575,Ashlie Horry,4/10/1982,6322 International Trail,SYSTEM +VN2020_576,Martita Grigore,16/05/1991,520 Macpherson Court,ADMIN +VN2020_577,Larry Dehmel,30/08/1982,17545 Mallard Lane,MOBILE +VN2020_578,Carmella Rollingson,6/11/1993,929 Bonner Parkway,WEB +VN2020_579,Maxim Duffrie,11/4/1995,2164 Red Cloud Circle,QA +VN2020_580,Zilvia Skahill,30/05/1983,253 Washington Circle,QA +VN2020_581,Casandra Esel,29/02/1980,5941 Washington Terrace,SYSTEM +VN2020_582,Bibby Petrozzi,26/12/1990,0 Talmadge Pass,WEB +VN2020_583,Marcos Swanborough,28/04/1987,833 Starling Center,ADMIN +VN2020_584,Shaw Klishin,5/11/1990,864 Merchant Drive,MOBILE +VN2020_585,Cathie Yoodall,10/10/1980,2584 Prairieview Park,MOBILE +VN2020_586,Sharleen Addinall,19/09/1980,29 Florence Hill,SYSTEM +VN2020_587,Sharleen Grellis,27/02/1999,0 Bobwhite Center,QA +VN2020_588,Arlen Jedrzejewski,27/09/1993,2 Arizona Center,MOBILE +VN2020_589,Livvie Catenot,5/7/1992,40 Blue Bill Park Avenue,WEB +VN2020_590,Dominick Saker,14/09/1994,3 Spohn Alley,ADMIN +VN2020_591,Cirstoforo Wooldridge,12/9/1997,35 Cambridge Center,QA +VN2020_592,Gladi Caines,7/3/1982,63259 Graceland Parkway,WEB +VN2020_593,Eddie Andrioletti,26/10/1996,7349 Birchwood Court,QA +VN2020_594,Susanna Farge,18/01/1999,06070 Stuart Point,SYSTEM +VN2020_595,Sergeant Snoday,4/12/1988,32678 Tennyson Street,MOBILE +VN2020_596,Ruthanne Hargreaves,19/02/1986,6751 Shoshone Circle,WEB +VN2020_597,Kiri Beccero,11/5/1996,124 Judy Pass,WEB +VN2020_598,Lamont Pargeter,30/01/1995,0425 Park Meadow Way,WEB +VN2020_599,Adan Clarey,14/11/1987,68199 Corry Way,MOBILE +VN2020_600,Gabriele O'Kennavain,25/03/1988,65 Melrose Road,QA +VN2020_601,Darb Rawood,14/06/1994,7656 Lotheville Crossing,MOBILE +VN2020_602,Eliza Musicka,22/11/1981,60995 Kipling Street,MOBILE +VN2020_603,Willis Pennicott,22/08/1988,4249 Red Cloud Parkway,MOBILE +VN2020_604,Kellina Scardifield,8/12/1992,57363 Muir Place,WEB +VN2020_605,Caron Witherup,22/01/1985,8054 Morrow Avenue,MOBILE +VN2020_606,Ida McGiveen,23/09/1996,54 West Hill,MOBILE +VN2020_607,Zara Magenny,2/10/1999,7720 Crownhardt Alley,MOBILE +VN2020_608,Christoforo Huyge,27/11/1996,9 Prairie Rose Point,WEB +VN2020_609,Harlen Kacheler,15/08/1983,46798 Daystar Alley,WEB +VN2020_610,Salome Coneybeare,10/3/1982,75690 Lakewood Gardens Place,QA +VN2020_611,Ebonee Wontner,22/04/1984,89 Esker Street,MOBILE +VN2020_612,Gerardo Eleshenar,21/10/1997,551 Crescent Oaks Street,QA +VN2020_613,Lyndsay Echallie,23/02/1985,072 Lien Court,QA +VN2020_614,Harriet O'Lochan,3/7/1985,53 Rieder Hill,ADMIN +VN2020_615,Mace Mary,21/08/1982,0 Bluestem Plaza,MOBILE +VN2020_616,Rice Lezemere,17/10/1987,435 Sheridan Crossing,QA +VN2020_617,Cordell McKerron,19/03/1994,10283 Forest Run Way,WEB +VN2020_618,Artie Dallimore,10/1/1993,74 Manitowish Crossing,WEB +VN2020_619,Hildegarde Chainey,16/04/1995,66 Sugar Park,MOBILE +VN2020_620,Aldus Wisniewski,28/01/1987,302 8th Junction,ADMIN +VN2020_621,Latisha Sturgess,21/12/1982,8 Sloan Trail,WEB +VN2020_622,Caterina Oattes,6/5/1992,994 Burning Wood Point,WEB +VN2020_623,Jere Gye,18/11/1987,3 Blue Bill Park Point,WEB +VN2020_624,Starlin Paton,25/03/1985,244 Spaight Avenue,WEB +VN2020_625,Ash Fossick,18/11/1987,974 Becker Way,WEB +VN2020_626,Dorolice Ellingford,20/09/1991,460 Corscot Street,QA +VN2020_627,Joli Boor,9/8/1991,17333 Lien Trail,ADMIN +VN2020_628,Germaine Sneaker,26/01/1983,1 Southridge Plaza,SYSTEM +VN2020_629,Brittney Dunbabin,3/10/1992,66 Larry Parkway,MOBILE +VN2020_630,Hadlee Ludgate,6/5/1997,9078 Graedel Center,SYSTEM +VN2020_631,Chaim Allison,16/03/1986,1 Daystar Drive,MOBILE +VN2020_632,Corette Housiaux,5/11/1987,890 Di Loreto Junction,QA +VN2020_633,Ralph Martineau,10/11/1985,41 Pennsylvania Pass,MOBILE +VN2020_634,Charlot Merman,21/07/1985,6640 Melody Hill,WEB +VN2020_635,Gilberta Pippin,29/03/1980,48027 Clove Point,WEB +VN2020_636,Tomas O'Luby,17/02/1994,4974 Granby Crossing,WEB +VN2020_637,Jonah Kaplin,9/6/1987,73 Morningstar Road,ADMIN +VN2020_638,Yvor Kennifick,28/06/1997,8 Vera Junction,WEB +VN2020_639,Rebe Blizard,26/09/1984,002 Pankratz Plaza,QA +VN2020_640,Clarinda Rosindill,1/12/1994,890 Sachs Trail,WEB +VN2020_641,Merrill Berrow,12/6/1989,09727 Orin Terrace,QA +VN2020_642,Augustina Drivers,1/11/1995,62 Luster Parkway,SYSTEM +VN2020_643,Berna Cazalet,15/09/1983,79061 Golf View Park,WEB +VN2020_644,Lissi Bediss,28/01/1997,130 Claremont Drive,SYSTEM +VN2020_645,Anatollo Reneke,29/11/1983,3894 Maywood Crossing,WEB +VN2020_646,Lotty Angus,14/08/1992,0420 Melby Avenue,WEB +VN2020_647,Gwyn McCalum,19/02/1998,82 Vera Trail,SYSTEM +VN2020_648,Essie Gencke,9/9/1993,08060 Sheridan Drive,WEB +VN2020_649,Marti Tatlock,12/12/1987,36772 Orin Hill,WEB +VN2020_650,Kerr Bannester,24/12/1999,47 Helena Point,MOBILE +VN2020_651,Franky Bowcock,8/8/1989,71643 Knutson Circle,WEB +VN2020_652,Radcliffe Murra,29/08/1981,5682 Warrior Lane,SYSTEM +VN2020_653,Mimi Phippin,10/11/1997,030 Southridge Drive,QA +VN2020_654,Neill Semerad,27/03/1985,6569 Mendota Court,WEB +VN2020_655,Cherry Larrad,10/5/1991,35352 Kipling Alley,SYSTEM +VN2020_656,Fabien Axtonne,14/12/1991,032 Spaight Way,QA +VN2020_657,Vidovik Harrowing,15/03/1992,5 Nova Crossing,MOBILE +VN2020_658,Nicol Reitenbach,29/11/1996,595 Corben Trail,WEB +VN2020_659,Reginauld Nadin,27/09/1980,8 Pawling Parkway,SYSTEM +VN2020_660,Redford Batts,30/12/1981,46141 Doe Crossing Pass,MOBILE +VN2020_661,Erma Sancraft,23/03/1987,39285 Garrison Trail,ADMIN +VN2020_662,Mohandis Lovelace,11/2/1990,213 Eggendart Pass,WEB +VN2020_663,Dulciana Guntrip,12/2/1982,625 Forest Dale Terrace,MOBILE +VN2020_664,Pearline Ellinor,23/08/1993,15 Kennedy Court,WEB +VN2020_665,Adorne Grainger,16/12/1980,56091 Jay Lane,QA +VN2020_666,Aileen McDougle,4/6/1989,09432 Quincy Trail,ADMIN +VN2020_667,Blondell Bottinelli,12/2/1996,20320 Hermina Pass,WEB +VN2020_668,Isabel Jarmain,14/12/1981,1112 Rockefeller Trail,MOBILE +VN2020_669,Sheena Pellew,31/12/1994,37 Summerview Plaza,WEB +VN2020_670,Seumas Mularkey,6/3/1990,6 Annamark Terrace,MOBILE +VN2020_671,Georgena Liversley,10/2/1982,66431 Fremont Crossing,WEB +VN2020_672,Ellen Vairow,27/09/1988,4712 High Crossing Alley,SYSTEM +VN2020_673,Kerk Mulroy,4/8/1983,105 Dawn Junction,QA +VN2020_674,Alexis Raxworthy,18/09/1999,3 Paget Drive,QA +VN2020_675,Holmes Ding,23/02/1989,76752 Welch Point,ADMIN +VN2020_676,Tamra Paul,11/2/1992,3596 Linden Drive,WEB +VN2020_677,Rosamond Pocklington,17/02/1998,6 Eggendart Pass,QA +VN2020_678,Jack Bruck,22/12/1982,48 Utah Avenue,WEB +VN2020_679,Nicola Cisar,28/10/1992,541 Pankratz Avenue,ADMIN +VN2020_680,Boyce Fateley,10/7/1995,293 Sauthoff Crossing,QA +VN2020_681,Niles Scamadine,8/6/1995,57123 Shoshone Court,WEB +VN2020_682,Sayers Probetts,17/06/1988,7063 Old Gate Pass,WEB +VN2020_683,Theo Goodbur,15/08/1984,51 Sherman Plaza,WEB +VN2020_684,Jobye Surgood,8/11/1980,3308 Hoard Park,WEB +VN2020_685,Clarabelle Martinat,18/03/1984,15419 Mandrake Circle,WEB +VN2020_686,Enrico Northrop,17/06/1980,45 Hooker Plaza,ADMIN +VN2020_687,Dov Hewins,18/04/1997,2346 Knutson Crossing,WEB +VN2020_688,Raul Wykey,26/01/1997,54 Jay Terrace,SYSTEM +VN2020_689,Mallory Spat,10/7/1997,54 Summerview Terrace,QA +VN2020_690,Peg Toseland,4/9/1996,7 Thackeray Center,WEB +VN2020_691,Bunnie Dorow,29/10/1988,7024 Kingsford Pass,QA +VN2020_692,Tracie Straughan,3/3/1984,7792 Grayhawk Lane,WEB +VN2020_693,Claudian Turle,3/12/1983,3694 Granby Plaza,QA +VN2020_694,Morgan Sunner,2/1/1994,5114 Hazelcrest Crossing,MOBILE +VN2020_695,Gene Jagiela,3/3/1986,4 Cody Pass,ADMIN +VN2020_696,Carey Hurch,7/12/1980,20 Onsgard Lane,WEB +VN2020_697,Jamison Dingate,20/01/1981,0 Mifflin Street,WEB +VN2020_698,Gisela Titley,27/05/1994,4 Menomonie Hill,MOBILE +VN2020_699,Vera Rosenfield,7/11/1983,95 Paget Place,ADMIN +VN2020_700,Brande Tester,11/10/1991,98745 Jenifer Point,SYSTEM +VN2020_701,Bibi Gammon,7/7/1990,13 Grayhawk Place,QA +VN2020_702,Carmencita Paszek,27/11/1999,145 Nelson Crossing,WEB +VN2020_703,Gertrud Gianolini,29/03/1988,9 Buhler Road,QA +VN2020_704,Ruprecht Jumonet,27/09/1980,97 Veith Plaza,MOBILE +VN2020_705,Gunilla Mawford,30/05/1987,28421 Del Sol Center,QA +VN2020_706,Lotty Margrett,9/7/1990,7460 Merry Crossing,MOBILE +VN2020_707,Lemmie Kezar,24/06/1982,4997 Raven Way,MOBILE +VN2020_708,Rebeka Tointon,10/7/1994,403 Darwin Plaza,ADMIN +VN2020_709,Jabez Mapis,21/09/1995,1 Eagan Way,MOBILE +VN2020_710,Fairlie Caunt,29/09/1986,4016 Clarendon Hill,MOBILE +VN2020_711,Perl Tott,2/6/1994,6 Melby Lane,MOBILE +VN2020_712,Nicolas Eckert,17/03/1996,409 Dwight Terrace,WEB +VN2020_713,Tierney Doberer,24/05/1990,6654 Bunting Way,WEB +VN2020_714,Yardley Dunmuir,14/10/1999,6416 Ramsey Lane,WEB +VN2020_715,Savina Ysson,25/09/1996,5 Mandrake Court,MOBILE +VN2020_716,Cyrillus Allsopp,17/08/1995,3 Monica Way,QA +VN2020_717,Christiano Vize,19/12/1982,9865 Union Road,MOBILE +VN2020_718,Eric Kleeborn,23/06/1997,31555 Fremont Crossing,MOBILE +VN2020_719,Merrill Callington,4/6/1989,2 Hansons Point,QA +VN2020_720,Emory Espadater,6/7/1995,7 Basil Pass,WEB +VN2020_721,Tiff Blissett,15/09/1995,56343 Spenser Hill,ADMIN +VN2020_722,Dawn Ivanikhin,29/11/1993,927 Hayes Junction,WEB +VN2020_723,Urbain Luxford,24/06/1984,39987 Sutherland Trail,MOBILE +VN2020_724,Jaquelyn Cromleholme,8/12/1986,95116 Oneill Center,ADMIN +VN2020_725,Alexandra Metcalfe,11/9/1996,2 Forest Dale Crossing,SYSTEM +VN2020_726,Blanca Schenfisch,28/10/1988,24278 Wayridge Park,MOBILE +VN2020_727,Nicolais Jeyness,9/9/1996,5836 Vernon Pass,MOBILE +VN2020_728,Pieter Risen,26/11/1996,9 Moose Terrace,QA +VN2020_729,Ambros Baumford,17/05/1996,7 Declaration Circle,QA +VN2020_730,Darnall Canedo,22/10/1989,118 Leroy Court,WEB +VN2020_731,Zollie Barnby,9/1/1991,2 Sunfield Place,QA +VN2020_732,Selia Curnok,7/5/1986,3868 Chinook Junction,WEB +VN2020_733,Ronica Giorgeschi,12/10/1984,8059 Longview Hill,SYSTEM +VN2020_734,Dav Sharnock,18/09/1983,2 Lukken Pass,MOBILE +VN2020_735,Rock Server,21/03/1991,6 Mosinee Way,QA +VN2020_736,Brocky Purviss,8/9/1989,9 Muir Hill,ADMIN +VN2020_737,Alberto Basham,10/2/1997,8879 Mcbride Place,WEB +VN2020_738,Roderigo Gillis,5/3/1980,02986 American Hill,SYSTEM +VN2020_739,Carolus Kundt,15/07/1993,192 Sutteridge Junction,SYSTEM +VN2020_740,Obidiah Cornall,9/4/1981,967 Montana Hill,QA +VN2020_741,Meier Haverty,22/02/1985,29 Waubesa Trail,ADMIN +VN2020_742,Amabelle Genner,14/06/1992,95040 Monument Plaza,SYSTEM +VN2020_743,Coreen Maycock,6/10/1997,149 Moulton Terrace,QA +VN2020_744,Kial Brotherhead,27/03/1984,01 Forest Run Parkway,MOBILE +VN2020_745,Kimmie Monkeman,2/11/1985,406 Helena Place,MOBILE +VN2020_746,Brennan Naul,18/04/1996,19568 Meadow Ridge Way,MOBILE +VN2020_747,Raynor Finker,8/8/1991,20 Aberg Parkway,ADMIN +VN2020_748,Lacy Schriren,23/01/1983,000 Kingsford Street,MOBILE +VN2020_749,Clarabelle Suddock,5/8/1987,115 Moland Terrace,QA +VN2020_750,Vassili Crossdale,25/09/1983,4 Lighthouse Bay Center,MOBILE +VN2020_751,Gretta Watkiss,16/05/1994,721 Starling Court,WEB +VN2020_752,Allyson Anster,13/01/1994,354 Haas Crossing,SYSTEM +VN2020_753,Shawna Rix,22/07/1980,6328 Londonderry Crossing,MOBILE +VN2020_754,Bendite Heistermann,12/1/1983,095 Truax Crossing,SYSTEM +VN2020_755,Kain Desantis,14/06/1990,6 Eggendart Center,SYSTEM +VN2020_756,Tomas Bortolomei,5/11/1998,8580 Spaight Point,SYSTEM +VN2020_757,Waylon Jekyll,5/2/1992,91 Golf Course Trail,WEB +VN2020_758,Willabella Durrand,20/10/1997,184 Melby Parkway,QA +VN2020_759,Pavia Marmion,22/05/1988,276 Northwestern Road,WEB +VN2020_760,Lorettalorna Chasles,5/10/1983,9557 Sommers Junction,QA +VN2020_761,Chev Ghidotti,23/12/1987,774 Eggendart Avenue,WEB +VN2020_762,Marieann Kaemena,24/11/1985,83988 La Follette Pass,ADMIN +VN2020_763,Angele Geaves,12/10/1997,13774 David Lane,QA +VN2020_764,Eduardo De la Yglesias,10/8/1989,40 Oxford Plaza,SYSTEM +VN2020_765,Sissy Sotheby,21/07/1981,5 Gale Court,SYSTEM +VN2020_766,Licha Curwood,6/9/1981,1 Del Mar Trail,WEB +VN2020_767,Timmy Bonnet,26/08/1982,197 Dexter Avenue,WEB +VN2020_768,Val Khomich,19/02/1980,38 Mallory Street,SYSTEM +VN2020_769,Orlando Pinchon,24/02/1991,0 Evergreen Trail,ADMIN +VN2020_770,Park Saffon,30/05/1991,963 Moulton Point,ADMIN +VN2020_771,Veriee Townsend,8/10/1988,15663 Gateway Drive,WEB +VN2020_772,Minnie Hallor,16/12/1993,10 Lunder Center,WEB +VN2020_773,Minda Seden,27/02/1984,9 Dixon Crossing,WEB +VN2020_774,Jedediah Rossbrook,3/6/1983,32 Ohio Lane,QA +VN2020_775,Clem Olenichev,27/01/1993,48741 Barnett Hill,MOBILE +VN2020_776,Gibby O'Lyhane,29/07/1999,374 Mallory Place,MOBILE +VN2020_777,Douglas Bellison,4/10/1988,82 Hansons Place,WEB +VN2020_778,Sutherland Kemell,5/9/1986,45748 8th Place,QA +VN2020_779,Brenna Cossey,11/8/1982,89496 Florence Pass,MOBILE +VN2020_780,Kalina Ream,2/11/1983,2 Manufacturers Drive,QA +VN2020_781,Rodge Baitson,12/5/1996,83 5th Pass,MOBILE +VN2020_782,Gus Petyankin,29/03/1988,46950 Hooker Court,SYSTEM +VN2020_783,Delia Shevlane,31/12/1985,0217 Gale Center,WEB +VN2020_784,Rickard Findlow,1/9/1981,6939 Fieldstone Trail,WEB +VN2020_785,Violetta Baudichon,7/12/1989,9 Golden Leaf Street,SYSTEM +VN2020_786,Kayla Schankel,23/06/1995,31548 Maryland Drive,WEB +VN2020_787,Benji Krzysztofiak,30/06/1985,4 Forster Circle,MOBILE +VN2020_788,Hedy Royl,3/7/1991,875 Nobel Park,MOBILE +VN2020_789,Vassily Stace,21/04/1984,18 Forest Run Terrace,QA +VN2020_790,Faulkner Terrington,10/2/1987,88700 Mandrake Center,SYSTEM +VN2020_791,Isak Polsin,19/10/1987,890 Mallory Junction,WEB +VN2020_792,Ana Stanbury,3/5/1997,11562 Delladonna Crossing,QA +VN2020_793,Charmine Bolley,11/8/1984,11594 Johnson Trail,WEB +VN2020_794,Land Dillinger,15/08/1990,8 Marcy Place,WEB +VN2020_795,Cami Stelle,17/05/1990,85286 Mcguire Center,MOBILE +VN2020_796,Dot Rogge,7/4/1985,58006 Southridge Avenue,QA +VN2020_797,Hardy Westoff,30/07/1996,40 Mallory Park,WEB +VN2020_798,Cahra Adshead,1/2/1990,1 Logan Point,WEB +VN2020_799,Bronson Bedlington,4/9/1987,7 Springview Center,MOBILE +VN2020_800,Kellia Dumblton,27/01/1998,9 Kropf Pass,WEB +VN2020_801,Nickie Josefovic,22/12/1993,06191 Claremont Avenue,MOBILE +VN2020_802,Pegeen Wainman,4/6/1994,4761 Manley Pass,QA +VN2020_803,Nikki McEllen,8/11/1987,07834 Sycamore Lane,QA +VN2020_804,Kennedy Hulatt,16/06/1980,20989 Hintze Pass,MOBILE +VN2020_805,Westleigh Santacrole,15/12/1997,58333 Mcbride Pass,WEB +VN2020_806,Herta Loddon,25/10/1997,834 East Parkway,QA +VN2020_807,Pattie McPhee,1/8/1997,01 Stone Corner Street,MOBILE +VN2020_808,Krysta Knowler,28/05/1982,71053 Carberry Junction,MOBILE +VN2020_809,Rey Bareford,26/12/1999,82 Garrison Circle,MOBILE +VN2020_810,Wendall Georgiev,6/4/1990,889 Park Meadow Lane,SYSTEM +VN2020_811,Arabel Kenion,23/10/1994,09 Riverside Way,MOBILE +VN2020_812,Raven Ketcher,8/8/1986,94078 Armistice Circle,SYSTEM +VN2020_813,Ketty Cavilla,10/4/1982,4421 Ohio Avenue,SYSTEM +VN2020_814,Inna Southgate,17/01/1996,451 Milwaukee Terrace,MOBILE +VN2020_815,Marcello Phalp,8/4/1988,40848 Bellgrove Circle,SYSTEM +VN2020_816,Rockwell Benet,3/6/1995,1 Ridge Oak Park,SYSTEM +VN2020_817,Bevan Dahle,7/8/1985,88 Hanover Circle,QA +VN2020_818,Kermy Scole,5/11/1987,695 Cambridge Terrace,MOBILE +VN2020_819,Bonny Deeks,13/04/1992,2 Johnson Hill,WEB +VN2020_820,Veradis Kettel,15/11/1996,62299 Dunning Trail,QA +VN2020_821,Kalli Merali,21/08/1982,3 Larry Hill,MOBILE +VN2020_822,Dore Gerritzen,8/7/1989,644 Mitchell Park,MOBILE +VN2020_823,Chickie Streetley,3/10/1983,2 Becker Parkway,ADMIN +VN2020_824,Isaiah Kroin,4/8/1994,24125 Clove Park,QA +VN2020_825,Ali Pearcey,31/12/1998,6 Steensland Circle,WEB +VN2020_826,Delmar Lammerich,6/7/1981,597 Cardinal Center,WEB +VN2020_827,Tarrah Gammett,5/7/1981,22321 4th Way,MOBILE +VN2020_828,Catriona Wilkes,15/07/1992,74 Macpherson Crossing,ADMIN +VN2020_829,Rhetta Robecon,3/10/1986,77 Mariners Cove Point,SYSTEM +VN2020_830,Bill Balsdone,30/11/1992,9 Paget Park,QA +VN2020_831,Cristian Chester,29/07/1989,5 International Crossing,SYSTEM +VN2020_832,Mariellen Hounsome,16/11/1989,14 Caliangt Circle,WEB +VN2020_833,Marcie Clyne,7/8/1980,90075 Manley Drive,MOBILE +VN2020_834,Palm Darthe,11/11/1999,93 Fallview Avenue,WEB +VN2020_835,Dorian Joel,2/9/1999,5 Cardinal Center,MOBILE +VN2020_836,Yovonnda Scherer,5/10/1981,0826 Reindahl Lane,SYSTEM +VN2020_837,Marshal Dorow,8/8/1994,89248 Dennis Crossing,QA +VN2020_838,Arliene Cauldwell,23/08/1982,50 Kedzie Parkway,MOBILE +VN2020_839,Cleopatra Krzyzaniak,23/10/1991,38979 Maryland Point,ADMIN +VN2020_840,Bobbie Gabbett,2/6/1995,464 Lerdahl Point,MOBILE +VN2020_841,Elwira Fendley,1/1/1999,79 Superior Point,MOBILE +VN2020_842,Bord Frankel,6/1/1998,805 Clemons Trail,WEB +VN2020_843,Prudy Preshous,18/03/1997,918 Northport Plaza,SYSTEM +VN2020_844,Ruperto Piddick,9/7/1993,3 Kim Parkway,ADMIN +VN2020_845,Bendicty Knewstub,8/4/1985,02 Bonner Avenue,WEB +VN2020_846,Tatiana Stickens,8/11/1986,00163 Judy Park,MOBILE +VN2020_847,Neila Denley,12/8/1995,01283 Lillian Drive,SYSTEM +VN2020_848,Kerianne Madigan,19/01/1986,543 Forest Dale Park,WEB +VN2020_849,Clemens Impett,17/08/1987,13 Packers Alley,WEB +VN2020_850,Myranda Wellings,1/4/1997,4010 Garrison Lane,MOBILE +VN2020_851,Harmon Noad,15/10/1993,8 Utah Avenue,WEB +VN2020_852,Dyann Dumphry,28/02/1999,64 West Court,WEB +VN2020_853,Nina Emblen,8/6/1988,4534 Moulton Avenue,QA +VN2020_854,Vivia Holstein,27/01/1988,04 Farwell Park,MOBILE +VN2020_855,Gertie Hollow,18/09/1981,6553 Superior Place,SYSTEM +VN2020_856,Melisande Tomovic,30/05/1999,1393 Hauk Avenue,MOBILE +VN2020_857,Caralie Middiff,9/2/1992,161 Elgar Center,MOBILE +VN2020_858,Tamma Toynbee,28/08/1990,79936 Dexter Terrace,QA +VN2020_859,Lenette Hawksley,15/04/1989,54455 Maywood Circle,SYSTEM +VN2020_860,Claudius Kosiada,10/8/1999,70876 Grover Lane,SYSTEM +VN2020_861,Arden Hadley,10/3/1982,84 Talmadge Lane,MOBILE +VN2020_862,Tirrell Giblin,16/04/1980,265 Alpine Parkway,MOBILE +VN2020_863,Oriana Habin,24/08/1994,57 Northridge Hill,MOBILE +VN2020_864,Cedric Alliberton,15/05/1987,0 Magdeline Center,MOBILE +VN2020_865,Ambrosi Minton,22/10/1997,3700 Lake View Park,QA +VN2020_866,Ive Fellini,16/12/1982,418 Colorado Alley,WEB +VN2020_867,Charlie Worswick,26/10/1994,23874 Mendota Court,SYSTEM +VN2020_868,Carree Gaffer,22/08/1993,0 Hazelcrest Point,ADMIN +VN2020_869,Lilah Brandel,11/6/1986,19 Fordem Center,ADMIN +VN2020_870,Jenny Jurzyk,13/12/1997,178 Anthes Center,MOBILE +VN2020_871,Myrwyn Abella,3/9/1988,92722 Main Lane,MOBILE +VN2020_872,Kip Sagerson,28/05/1993,4145 Stone Corner Road,WEB +VN2020_873,Hester Antowski,1/2/1985,5538 Morning Street,SYSTEM +VN2020_874,Daryl Pheasant,3/5/1982,05 Golf View Street,WEB +VN2020_875,Fleurette Demangel,17/12/1991,9 Manley Terrace,QA +VN2020_876,Wit McFaul,11/11/1997,3597 Caliangt Place,MOBILE +VN2020_877,Smith Thomasen,13/05/1988,036 Forest Drive,SYSTEM +VN2020_878,Ezekiel Orme,7/11/1989,6220 East Drive,SYSTEM +VN2020_879,Marshall Larchier,11/2/1993,66041 Morrow Plaza,SYSTEM +VN2020_880,Karlene Corcoran,21/02/1998,04502 Messerschmidt Parkway,WEB +VN2020_881,Bessy Harrill,8/1/1994,8 Forest Run Plaza,SYSTEM +VN2020_882,Mariele Mylchreest,7/7/1991,51 Sycamore Point,SYSTEM +VN2020_883,Fleming Copeman,17/12/1997,4 Erie Terrace,MOBILE +VN2020_884,Ingamar Creek,29/08/1980,11436 Butternut Hill,QA +VN2020_885,Binnie Moakes,16/06/1993,0718 Eggendart Junction,WEB +VN2020_886,Monro Scholar,2/11/1986,417 Melody Point,MOBILE +VN2020_887,Britt Crombie,11/4/1994,6249 Hauk Avenue,SYSTEM +VN2020_888,Leoline Ireson,21/06/1987,76 Gulseth Street,WEB +VN2020_889,Berty Gawen,7/11/1995,6 Linden Parkway,WEB +VN2020_890,Marissa Mosson,18/10/1990,379 Granby Lane,MOBILE +VN2020_891,Brennan Carragher,15/06/1987,428 David Drive,MOBILE +VN2020_892,Kaiser Radborne,17/09/1981,325 Pepper Wood Pass,MOBILE +VN2020_893,Eba Duchasteau,28/12/1998,9 Maple Terrace,QA +VN2020_894,Winona Kohn,24/10/1999,32287 Portage Street,WEB +VN2020_895,Killian Ochiltree,23/03/1982,508 Bellgrove Lane,WEB +VN2020_896,Damiano Martyns,5/6/1989,3855 Glendale Drive,QA +VN2020_897,Elaina Battersby,6/9/1981,25 Stone Corner Place,MOBILE +VN2020_898,Griff Fozzard,5/11/1997,470 Anhalt Plaza,MOBILE +VN2020_899,Agnella Ewart,5/3/1981,6881 Lighthouse Bay Center,WEB +VN2020_900,Tuesday Lambourne,10/6/1994,44295 Hauk Hill,QA +VN2020_901,Lizzie Monahan,6/2/1990,6 Graceland Center,WEB +VN2020_902,Melamie Van Salzberger,7/12/1994,06 Dexter Avenue,WEB +VN2020_903,Griff Toleman,4/8/1997,98 Talisman Lane,QA +VN2020_904,Jacky Baccup,7/8/1994,51 Prairieview Drive,QA +VN2020_905,Dorree Samwayes,23/11/1988,80 Autumn Leaf Circle,WEB +VN2020_906,Grazia Coronas,23/03/1980,66912 Meadow Vale Circle,WEB +VN2020_907,Rockwell Roskruge,18/02/1984,5053 Rieder Pass,QA +VN2020_908,Reeva Perri,14/02/1981,59742 Prairieview Trail,SYSTEM +VN2020_909,Anatollo Bradnocke,25/06/1999,5 Fallview Hill,WEB +VN2020_910,Carine Marquiss,13/02/1986,94755 Rowland Trail,QA +VN2020_911,Natividad Bennit,19/08/1991,80 Bunting Place,MOBILE +VN2020_912,Madalena Tiffney,19/02/1996,1 Village Circle,QA +VN2020_913,Saba Gallifont,19/01/1994,4528 Farmco Place,WEB +VN2020_914,Jervis Tickle,30/09/1998,13089 Oak Circle,QA +VN2020_915,Myriam Antao,16/08/1987,76 Valley Edge Circle,MOBILE +VN2020_916,Truman Pledge,3/3/1992,3190 Waywood Lane,WEB +VN2020_917,Merlina McCann,2/5/1984,80899 Roth Center,ADMIN +VN2020_918,Hugues Ivashov,30/12/1985,327 Swallow Road,SYSTEM +VN2020_919,Sauveur MacCartan,6/3/1982,9171 Vahlen Pass,WEB +VN2020_920,Marlene Fleckno,27/04/1992,6059 Dwight Court,MOBILE +VN2020_921,Katleen Barber,10/5/1980,6735 Armistice Point,MOBILE +VN2020_922,Barde Rands,16/01/1987,0 West Crossing,QA +VN2020_923,Herschel Karlowicz,22/05/1998,905 Warrior Place,MOBILE +VN2020_924,Jonathon Fitchell,16/10/1997,77581 Mcguire Road,QA +VN2020_925,Janene Maughan,27/01/1987,7 Kim Crossing,MOBILE +VN2020_926,Zilvia Grisard,28/06/1982,38520 Maywood Park,MOBILE +VN2020_927,Dav Bilyard,4/5/1992,720 Roth Center,WEB +VN2020_928,Roda Iacovides,7/1/1987,63675 Del Mar Plaza,WEB +VN2020_929,Pierce Deboo,24/08/1992,87495 Bayside Lane,SYSTEM +VN2020_930,Noak Seignior,24/12/1989,8463 Killdeer Drive,ADMIN +VN2020_931,Virginie Tunaclift,14/08/1994,8032 Hayes Terrace,ADMIN +VN2020_932,Amabel Gallant,9/3/1994,91881 Northfield Circle,ADMIN +VN2020_933,Gale Bortolomei,5/12/1986,36431 Homewood Pass,WEB +VN2020_934,Godwin Bygott,27/11/1988,233 Sunfield Circle,WEB +VN2020_935,Berna Gudd,17/09/1992,06 Northridge Circle,MOBILE +VN2020_936,Jemmy Jessep,29/06/1989,5 Fairview Circle,QA +VN2020_937,Ced Budgen,9/2/1981,5 Scofield Park,WEB +VN2020_938,Kipp Oylett,25/03/1990,87 Manley Drive,WEB +VN2020_939,Benn Chupin,16/10/1989,001 Pierstorff Way,WEB +VN2020_940,Chance Bartens,25/03/1997,0902 Kensington Court,QA +VN2020_941,Millard Tynemouth,13/08/1995,39 Prairieview Terrace,WEB +VN2020_942,Elise Fosse,15/04/1984,30 Dryden Trail,ADMIN +VN2020_943,Auroora Dodds,19/09/1994,6135 Arkansas Avenue,WEB +VN2020_944,Curcio Middlemist,23/05/1990,7 Sullivan Junction,MOBILE +VN2020_945,Mathilde Speer,17/11/1981,9 Morning Avenue,WEB +VN2020_946,Adena Mew,23/06/1983,7266 Fuller Alley,WEB +VN2020_947,Rhianon Shepheard,18/11/1987,49088 Merry Alley,QA +VN2020_948,Gloria Kix,18/12/1981,4 Valley Edge Crossing,MOBILE +VN2020_949,Mandie Stapells,2/4/1984,7845 Dunning Crossing,SYSTEM +VN2020_950,Jehanna Feavers,29/11/1993,328 Chinook Avenue,QA +VN2020_951,Susana Andrelli,26/08/1980,92 Daystar Alley,SYSTEM +VN2020_952,Currey McParlin,25/11/1997,17 Del Mar Pass,QA +VN2020_953,Ashton MacCroary,9/5/1983,225 Lakewood Hill,MOBILE +VN2020_954,Sax Starzaker,15/03/1993,1 Talmadge Way,QA +VN2020_955,Zak Pantry,7/6/1996,20 Randy Circle,QA +VN2020_956,Elissa Sapena,22/12/1987,42831 Talmadge Alley,QA +VN2020_957,Francesco Windrass,14/11/1986,01042 Independence Center,QA +VN2020_958,Regan Bourgour,3/8/1999,476 Sherman Court,MOBILE +VN2020_959,Althea Coombs,6/11/1997,2428 Texas Trail,QA +VN2020_960,Ammamaria Heersma,26/01/1997,2730 Clarendon Center,MOBILE +VN2020_961,Gilberte Cumes,19/07/1993,453 8th Lane,SYSTEM +VN2020_962,Richardo Bricham,15/09/1984,28366 Bowman Drive,MOBILE +VN2020_963,Chance Spours,21/06/1982,3337 Helena Trail,MOBILE +VN2020_964,Etti Farndon,21/12/1999,7 Acker Place,ADMIN +VN2020_965,Winne Ciciura,25/07/1994,36 Schlimgen Junction,ADMIN +VN2020_966,Dasha Chmiel,27/06/1996,456 Kings Parkway,WEB +VN2020_967,Jacquelin Salway,12/7/1995,6043 Roxbury Park,WEB +VN2020_968,Wrennie Sewell,17/09/1983,8489 Petterle Pass,SYSTEM +VN2020_969,Essy Owenson,16/06/1982,6 Texas Pass,QA +VN2020_970,Maribeth McGinnell,27/04/1985,620 Arapahoe Plaza,WEB +VN2020_971,Anet Cabral,28/08/1996,27077 Basil Center,MOBILE +VN2020_972,Melinde Taffie,22/01/1998,71 Armistice Circle,ADMIN +VN2020_973,Gray Van Der Weedenburg,1/2/1990,3 Bashford Alley,SYSTEM +VN2020_974,Dyane Iorizzi,18/04/1987,1 Kinsman Street,WEB +VN2020_975,Gretel Eltun,14/08/1984,6655 Gina Circle,ADMIN +VN2020_976,Kliment Baldoni,30/11/1987,1 Heffernan Lane,ADMIN +VN2020_977,Rosabelle Dottrell,7/1/1985,24 Clove Circle,SYSTEM +VN2020_978,Jed Neat,18/07/1988,6064 Kings Avenue,SYSTEM +VN2020_979,Warde Joselson,22/07/1982,366 Lyons Hill,SYSTEM +VN2020_980,Malachi Meys,2/12/1981,7 Acker Court,SYSTEM +VN2020_981,Lory Hawkins,30/08/1991,197 Prairieview Terrace,WEB +VN2020_982,Stinky Gurnell,12/3/1997,29 Bonner Park,ADMIN +VN2020_983,Uri Dorman,5/9/1993,631 Bobwhite Junction,WEB +VN2020_984,Valerye Baskwell,11/1/1985,416 Anderson Pass,QA +VN2020_985,Rip Itzkovsky,7/6/1989,2513 Red Cloud Street,QA +VN2020_986,Loretta Hopewell,24/11/1989,25091 Bluestem Way,MOBILE +VN2020_987,Oliy Summerley,13/02/1999,3670 Tomscot Terrace,QA +VN2020_988,Nikkie Vannar,30/06/1992,1 Fairview Park,QA +VN2020_989,Eachelle Dominey,3/4/1998,93390 Moulton Way,MOBILE +VN2020_990,Mallorie Kleinerman,30/08/1985,224 Fisk Avenue,SYSTEM +VN2020_991,Sheffield Penelli,26/12/1987,494 Marcy Parkway,WEB +VN2020_992,Tab Steffans,21/10/1989,947 Bunting Trail,SYSTEM +VN2020_993,Darell Huggard,11/6/1985,31308 Amoth Trail,QA +VN2020_994,Welbie Treen,5/9/1989,1414 Union Lane,WEB +VN2020_995,Nico Kraft,30/08/1998,779 Burrows Lane,WEB +VN2020_996,Fidelia Penhall,12/8/1993,3 Meadow Valley Center,ADMIN +VN2020_997,Alverta Kennedy,8/7/1990,8 Dawn Hill,MOBILE +VN2020_998,Galen Blagdon,29/08/1981,58622 Amoth Lane,ADMIN +VN2020_999,Tracie Simester,13/04/1982,808 Southridge Hill,MOBILE +VN2020_1000,Herold Davidesco,23/12/1986,76054 Sutteridge Center,ADMIN \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java new file mode 100644 index 0000000..193b5b7 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java @@ -0,0 +1,30 @@ +package com.example.lecture_9_2.model; + +import java.time.LocalDate; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Table; +import lombok.AllArgsConstructor; +import lombok.NoArgsConstructor; +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name="employee") +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class Employee { + + // Define all the fields + @Id + @Column(name="id") + private String id; + private String name; + private LocalDate dob; + private String address; + private String department; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java new file mode 100644 index 0000000..70a21b3 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java @@ -0,0 +1,19 @@ +package com.example.lecture_9_2.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; + +import com.example.lecture_9_2.model.Employee; + +@Repository +public interface EmployeeRepository extends JpaRepository { + // Get all employees from the repository and order them by name ascending + List findAllByOrderByNameAsc(); + + // Retrieves a paginated list of all employees from the database, sorted by their names in ascending order. + Page findAllByOrderByNameAsc(Pageable pageable); +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java new file mode 100644 index 0000000..08a6203 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java @@ -0,0 +1,28 @@ +package com.example.lecture_9_2.service; + +import java.util.List; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; + +public interface EmployeeService { + // Retrieves all employees from the database, sorted by their names in ascending order. + List findAll(); + + Page findAll(Pageable pageable); + + // Retrieves an employee from the database by their unique identifier. + Employee findById(String theId); + + // Saves the given employee to the database. + void save(Employee theEmployee); + + // Deletes an employee from the database by their unique identifier. + void deleteById(String theId); + + // Uploads a CSV file containing employee data and saves it to the database. + void uploadCsv(MultipartFile file); +} diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java new file mode 100644 index 0000000..3bf2834 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java @@ -0,0 +1,108 @@ +package com.example.lecture_9_2.service.impl; + +import java.io.IOException; +import java.util.List; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.stereotype.Service; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; +import com.example.lecture_9_2.repository.EmployeeRepository; +import com.example.lecture_9_2.service.EmployeeService; +import com.example.lecture_9_2.utils.FileUtils; + +import lombok.AllArgsConstructor; + +@Service +@AllArgsConstructor +public class EmployeeServiceImpl implements EmployeeService { + + private final EmployeeRepository employeeRepository; + + /** + * Retrieves all employees from the database, sorted by their names in ascending order. + * @return a list of all employees in the database, sorted by their names. + */ + @Override + public List findAll() { + return employeeRepository.findAllByOrderByNameAsc(); + } + + /** + * Retrieves a paginated list of all employees from the database, sorted by their names in ascending order. + * + * @param pageable the pagination and sorting parameters + * @return a paginated list of all employees in the database, sorted by their names. + * The returned Page object contains the list of employees, the total number of pages, and the total number of elements. + * @throws IllegalArgumentException if the provided Pageable object is null + */ + @Override + public Page findAll(Pageable pageable) { + if (pageable == null) { + throw new IllegalArgumentException("Invalid pagination and sorting parameters: null object"); + } + return employeeRepository.findAllByOrderByNameAsc(pageable); + } + + /** + * Retrieves an employee from the database by their unique identifier. + * + * @param theId the unique identifier of the employee to be retrieved + * @return the employee with the given identifier, or throws an exception if not found + * @throws IllegalArgumentException if the provided identifier is null or empty + */ + @Override + public Employee findById(String theId) { + if (theId == null || theId.isEmpty()) { + throw new IllegalArgumentException("Invalid employee identifier: null or empty string"); + } + return employeeRepository.findById(theId).orElseThrow(); + } + + /** + * Saves the given employee to the database. + * + * @param theEmployee the employee object to be saved + * @throws IllegalArgumentException if the provided employee is null + */ + @Override + public void save(Employee theEmployee) { + if (theEmployee == null) { + throw new IllegalArgumentException("Invalid employee: null object"); + } + employeeRepository.save(theEmployee); + } + + /** + * Deletes an employee from the database by their unique identifier. + * + * @param theId the unique identifier of the employee to be deleted + * @throws IllegalArgumentException if the provided identifier is null or empty + */ + @Override + public void deleteById(String theId) { + if (theId == null || theId.isEmpty()) { + throw new IllegalArgumentException("Invalid employee identifier: null or empty string"); + } + employeeRepository.deleteById(theId); + } + + /** + * Uploads a CSV file containing employee data and saves it to the database. + * + * @param file the MultipartFile containing the CSV data + * @throws IOException if an error occurs while reading the CSV file + * @throws RuntimeException if an error occurs while uploading the CSV file + */ + @Override + public void uploadCsv(MultipartFile file) { + try { + List employees = FileUtils.readEmployeesFromCSV(file); + employeeRepository.saveAll(employees); + } catch (IOException e) { + throw new RuntimeException("Failed to upload CSV file: " + e.getMessage()); + } + } +} diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java new file mode 100644 index 0000000..a8a5102 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java @@ -0,0 +1,35 @@ +package com.example.lecture_9_2.utils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.time.format.DateTimeParseException; + +public class DateUtils { + private static final DateTimeFormatter DATE_FORMATER = DateTimeFormatter.ofPattern("d/M/yyyy"); + + /** + * Parses a date string in the format "d/M/yyyy" and returns a LocalDate object. + * + * @param dateString the date string to be parsed + * @return the parsed LocalDate object + * @throws IllegalArgumentException if the date string cannot be parsed + */ + public static LocalDate parseDate(String dateStr) { + try { + return LocalDate.parse(dateStr, DATE_FORMATER); + } catch (DateTimeParseException e) { + System.out.println("Error parsing date: " + dateStr); + throw e; + } + } + + /** + * Formats the given LocalDate object into a string in the format "d/M/yyyy". + * + * @param date the LocalDate object to be formatted + * @return the formatted string in the specified format + */ + public static String formatDate(LocalDate date) { + return date.format(DATE_FORMATER); + } +} diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java new file mode 100644 index 0000000..7e35365 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java @@ -0,0 +1,52 @@ +package com.example.lecture_9_2.utils; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; + +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; + +public class FileUtils { + /** + * Reads employees from a CSV file using manual parsing. + * + * @param file The CSV file containing employee data. + * @return A list of {@link Employee} objects read from the CSV file. + * @throws IOException If an error occurs while reading the file. + */ + public static List readEmployeesFromCSV(MultipartFile file) throws IOException { + List employees = new ArrayList<>(); + try (BufferedReader br = new BufferedReader(new InputStreamReader(file.getInputStream()))) { + String line; + br.readLine(); // Skip header + while ((line = br.readLine()) != null) { + String[] attributes = line.split(","); + Employee employee = fromCSV(attributes); + employees.add(employee); + } + } catch (IOException e) { + throw new IOException("Error reading employee (Manual) " + e); + } + return employees; + } + + /** + * Parses an array of attributes into an Employee object. + * + * @param attributes an array of strings representing the employee's id, name, date of birth, address, and department. + * @return an Employee object created from the provided attributes. + */ + public static Employee fromCSV(String[] attributes) { + String id = attributes[0]; + String name = attributes[1]; + LocalDate dob = DateUtils.parseDate(attributes[2]); + String address = attributes[3]; + String department = attributes[4]; + return new Employee(id, name, dob, address, department); + } +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java new file mode 100644 index 0000000..5d42b7e --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java @@ -0,0 +1,16 @@ +package com.example.lecture_9_2.utils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; + +import org.springframework.stereotype.Component; + +@Component +public class ThymeleafUtils { + private static final DateTimeFormatter DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd"); + + public String formatDate(LocalDate date) { + return date.format(DATE_FORMATTER); + } +} + diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/application.properties b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/application.properties new file mode 100644 index 0000000..304c6e5 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/application.properties @@ -0,0 +1,6 @@ +spring.application.name=lecture_9_2 + +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3308/week5_lecture9_2?allowPublicKeyRetrieval=true&useSSL=false +spring.datasource.username=root +spring.datasource.password=Michaeleon16606_ \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/css/style.css b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/css/style.css new file mode 100644 index 0000000..7814bd1 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/css/style.css @@ -0,0 +1,124 @@ +/* General Styles */ +body { + font-family: Arial, sans-serif; + background-color: #f8f9fa; + color: #212529; +} + +.container { + max-width: 900px; + padding-top: 1rem; + padding-bottom: 1rem; + margin: 0 auto; + padding: 20px; +} + +h3 { + text-align: center; + margin-bottom: 20px; +} + +/* Table Styles */ +table { + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; +} + +table, th, td { + border: 1px solid #dee2e6; +} + +th, td { + padding: 12px; +} + +td { + text-align: left; +} + +th { + text-align: center !important; +} + +.spacey { + display: flex; + width: 100%; + flex-direction: row; + justify-content: space-between; + margin-bottom: 0.5rem; +} + +thead { + background-color: #343a40; + color: white; +} + +tbody tr:nth-child(odd) { + background-color: #f8f9fa; +} + +/* Button Styles */ +.btn { + display: inline-block; + font-weight: 400; + color: #fff; + text-align: center; + vertical-align: middle; + user-select: none; + background-color: #007bff; + border: 1px solid #007bff; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + text-decoration: none; + margin-right: 10px; +} + +.btn:hover { + background-color: #0056b3; + border-color: #004085; +} + +.btn-secondary { + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + background-color: #545b62; + border-color: #4e555b; +} + +/* Form Styles */ +.form-group { + margin-bottom: 15px; +} + +.form-control { + width: 100%; + padding: 10px; + border: 1px solid #ced4da; + border-radius: 4px; +} + +/* Pagination Styles */ +.pagination { + display: flex; + justify-content: center; + margin-bottom: 20px; +} + +.pagination a { + color: #007bff; + padding: 8px 16px; + text-decoration: none; + border: 1px solid #dee2e6; + margin: 0 5px; + border-radius: 4px; +} + +.pagination a:hover { + background-color: #e9ecef; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/index.html b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/index.html new file mode 100644 index 0000000..d8a02ed --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/index.html @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/js/script.js b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/js/script.js new file mode 100644 index 0000000..675bf58 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/static/js/script.js @@ -0,0 +1,64 @@ +function validateForm() { + var fileInput = document.getElementById('csvFile'); + var filePath = fileInput.value; + var allowedExtensions = /(\.csv)$/i; + + // Check if file extension is .csv + if (!allowedExtensions.exec(filePath)) { + fileInput.value = ''; + Toastify({ + text: "Please check your CSV file.", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#f44336", + }).showToast(); + return false; + } + + // Read the file contents + var reader = new FileReader(); + reader.onload = function(e) { + var contents = e.target.result; + + // Split contents into lines + var lines = contents.split(/\r\n|\n/); + + // Check if the first line (header) matches expected format + var expectedHeader = "ID,Name,DateOfBirth,Address,Department"; + var actualHeader = lines[0].trim(); + + if (actualHeader !== expectedHeader) { + fileInput.value = ''; + Toastify({ + text: "Invalid CSV format. Please check your CSV file.", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#f44336", + }).showToast(); + return false; + } + + // If all validations pass, allow form submission + fileInput.closest('form').submit(); + + // Optionally, show success message using Toastify or other method + Toastify({ + text: "CSV submitted successfully!", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#4caf50", + }).showToast(); + }; + + // Read the file as text + reader.readAsText(fileInput.files[0]); + + // Prevent form submission for now + return false; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/employee-form.html b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/employee-form.html new file mode 100644 index 0000000..a351dd3 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/employee-form.html @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + Save Employee + + + +
+

Employee Management

+
+ +

Save Employee

+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+ Back to Employees List +
+ + + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/list-employees.html b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/list-employees.html new file mode 100644 index 0000000..626eea9 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/main/resources/templates/employees/list-employees.html @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + Employee Management + + + +
+

Employee Management

+
+ +
+ +
+
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + +
NameDate of BirthAddressDepartmentAction
+
+
+ +
+ + +
+ + +
+ + +
+
+
+
+ + +
+
+ First + Previous +
+ + + Page 1 of 1 + +
+ Next + Last +
+
+
+ + + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java new file mode 100644 index 0000000..8c233ce --- /dev/null +++ b/Week 05/Lecture 09/Assignment 02/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.lecture_9_2; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class Lecture92ApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/Week 05/Lecture 09/Assignment 03/README.md b/Week 05/Lecture 09/Assignment 03/README.md new file mode 100644 index 0000000..c403075 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/README.md @@ -0,0 +1,171 @@ +# πŸ‘¨πŸ»β€πŸ« Lecture 09 - Spring MVC +> This repository is created as a part of assignment for Lecture 09 - Spring MVC + +## ✍🏼 Assignment 03 - Employee Management and PDF Generating +### 🌳 Project Structure +```bash +lecture_9_2 +β”œβ”€β”€ .mvn/wrapper/ +β”‚ └── maven-wrapper.properties +β”œβ”€β”€ src/main/ +β”‚ β”œβ”€β”€ java/com/example/lecture_9_2/ +β”‚ β”‚ β”œβ”€β”€ config/ +β”‚ β”‚ β”‚ └── DateConfig.java +β”‚ β”‚ β”œβ”€β”€ controller/ +β”‚ β”‚ β”‚ └── EmployeeController.java +β”‚ β”‚ β”œβ”€β”€ data/ +β”‚ β”‚ β”‚ β”œβ”€β”€ employees.pdf +β”‚ β”‚ β”‚ β”œβ”€β”€ sampleData.csv +β”‚ β”‚ β”‚ └── template-employees.pdf +β”‚ β”‚ β”œβ”€β”€ model/ +β”‚ β”‚ β”‚ └── Employee.java +β”‚ β”‚ β”œβ”€β”€ repository/ +β”‚ β”‚ β”‚ └── EmployeeRepository.java +β”‚ β”‚ β”œβ”€β”€ service/ +β”‚ β”‚ β”‚ β”œβ”€β”€ impl/ +β”‚ β”‚ β”‚ β”‚ └─ EmployeeServiceImpl.java +β”‚ β”‚ β”‚ └── EmployeeService.java +β”‚ β”‚ β”œβ”€β”€ utils/ +β”‚ β”‚ β”‚ β”œβ”€β”€ DateUtils.java +β”‚ β”‚ β”‚ β”œβ”€β”€ FileUtils.java +β”‚ β”‚ β”‚ β”œβ”€β”€ PDFGenerator.java +β”‚ β”‚ β”‚ └── ThymeleafUtils.java +β”‚ β”‚ └── Lecture92Application.java +β”‚ └── resources/ +β”‚ β”œβ”€β”€ static/ +β”‚ β”‚ β”œβ”€β”€ css +β”‚ β”‚ β”‚ β”œβ”€β”€ style.css +β”‚ β”‚ β”‚ └── template.css +β”‚ β”‚ β”œβ”€β”€ js +β”‚ β”‚ β”‚ └── script.js +β”‚ β”‚ └── index.html +β”‚ β”œβ”€β”€ templates/ +β”‚ β”‚ β”œβ”€β”€ employees/ +β”‚ β”‚ β”‚ β”œβ”€β”€ employee-form.html +β”‚ β”‚ β”‚ └── list-employees.html +β”‚ β”‚ └── pdf/ +β”‚ β”‚ └── pdf-template.html +β”‚ └── application.properties +β”œβ”€β”€ .gitignore +β”œβ”€β”€ mvnw +β”œβ”€β”€ mvnw.cmd +β”œβ”€β”€ pom.xml +β”œβ”€β”€ run.bat +└── run.sh +``` + +### 🧩 SQL Query Data +Here is the SQL query to create the database, table, and instantiate some data. +```sql +-- Create the database +CREATE DATABASE week5_lecture9_3; + +-- Use the database +USE week5_lecture9_3; + +-- Create the employee table +CREATE TABLE `employee` ( + `id` VARCHAR(50) NOT NULL, + `name` VARCHAR(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `dob` DATE NOT NULL, + `address` VARCHAR(255) NOT NULL, + `department` VARCHAR(100) NOT NULL, + `salary` INT NOT NULL, + PRIMARY KEY (id) +); + +-- Insert dummy data into the employee table +INSERT INTO Employee (id, name, dob, address, department, salary) VALUES +('1caa1b8e-678c-41a2-9d91-234f1d75f777', 'Alice Johnson', '1985-05-15', '123 Elm Street, Springfield', 'WEB', 2000), +('2bff2b8f-789d-41b3-9e92-345f2d86f888', 'Bob Smith', '1979-12-22', '456 Oak Avenue, Springfield', 'SYSTEM', 1000), +('3ccd3c90-890e-41c4-9fa3-456f3d97f999', 'Carol Davis', '1990-08-12', '789 Pine Road, Springfield', 'MOBILE', 1500), +('4dde4d91-901f-41d5-9fb4-567f4e08faaa', 'David Wilson', '1988-07-04', '321 Maple Street, Springfield', 'QA', 1700), +('5eef5e92-0120-41e6-9fc5-678f5e19fbbb', 'Eva Brown', '1992-03-28', '654 Birch Lane, Springfield', 'ADMIN', 2500); +``` + +and here is the query to drop the database +```sql +-- Drop the database +DROP DATABASE IF EXISTS week5_lecture9_3; +``` + +Also don't forget to configure [application properties](/Week%2005/Lecture%2009/Assignment%2002/lecture_9_2/src/main/resources/application.properties) with this format +```java +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3306/ +spring.datasource.username= +spring.datasource.password= +``` + +### βš™οΈ How to run the program +1. Go to the `lecture_9_2` directory by using this command + ```bash + $ cd lecture_9_2 + ``` +2. Make sure you have maven installed on your computer, use `mvn -v` to check the version. +3. If you are using windows, you can run the program by using this command. + ```bash + $ ./run.bat + ``` + And if you are using Linux, you can run the program by using this command. + ```bash + $ chmod +x run.sh + $ ./run.sh + ``` + +If all the instruction is well executed, the main-view will be something like this. Open [localhost:8080](http://localhost:8080) to see the view. + +### πŸ“Έ Screenshots +The main modification of the program is now the program can generate a PDF based on CSV file given from the input. Here's the documentation. + +1. **Full Page** + + ![Screenshot](img/api1.png) +2. **Full Page After CSV Uploaded** + + ![Screenshot](img/api2.png) +3. **PDF Generated** + + ![Screenshot](img/api3.png) + +By using [this CSV file](/Week%2005/Lecture%2009/Assignment%2003/lecture_9_2/src/main/java/com/example/lecture_9_2/data/sampleData.csv), you can see the printed template [here](/Week%2005/Lecture%2009/Assignment%2003/lecture_9_2/src/main/java/com/example/lecture_9_2/data/template-employees.pdf) and generated PDF based on the data [here](/Week%2005/Lecture%2009/Assignment%2003/lecture_9_2/src/main/java/com/example/lecture_9_2/data/employees.pdf) + +### πŸ”₯ Bonus +I try to fed my curiousness, especially on **Tyhmeleaf** which i never use before, by experimented with web styling, handling edge cases, and adding new features such as employee name search. Here's a detailed breakdown of what I've explored: + +#### Styling with TailwindCSS +I used **TailwindCSS** to style my web application, which offers a wide range of design possibilities. Below are some screenshots showcasing the new look. + +![Screenshot](img/api4.png) + +**New UI** on main page. + +#### Pagination +I implemented pagination for the employee data. This optimization ensures the backend processes only the requested data, significantly speeding up data loading. + +![Screenshot](img/api5.png) + +Pagination across all employee data. + +#### Add Employee Page +I updated the **Add Employee Page** for a better user experience. + +![Screenshot](img/api6.png) + +Updated Add Employee Page. + +#### Edit Employee Page +Similarly, I enhanced the **Edit Employee Page**. + +![Screenshot](img/api7.png) + +Updated Edit Employee Page. + +#### Search Feature +I introduced a **search feature**! that allows users to search for employees by name, matching the search query partially. + +![Screenshot](img/api8.png) + +![Screenshot](img/api9.png) + +Search Feature in action. \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/img/api1.png b/Week 05/Lecture 09/Assignment 03/img/api1.png new file mode 100644 index 0000000..2758f9c Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api1.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api2.png b/Week 05/Lecture 09/Assignment 03/img/api2.png new file mode 100644 index 0000000..c66ef89 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api2.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api3.png b/Week 05/Lecture 09/Assignment 03/img/api3.png new file mode 100644 index 0000000..16f1c20 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api3.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api4.png b/Week 05/Lecture 09/Assignment 03/img/api4.png new file mode 100644 index 0000000..1342b53 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api4.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api5.png b/Week 05/Lecture 09/Assignment 03/img/api5.png new file mode 100644 index 0000000..2ef46c5 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api5.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api6.png b/Week 05/Lecture 09/Assignment 03/img/api6.png new file mode 100644 index 0000000..f630cd2 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api6.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api7.png b/Week 05/Lecture 09/Assignment 03/img/api7.png new file mode 100644 index 0000000..af7d2e0 Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api7.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api8.png b/Week 05/Lecture 09/Assignment 03/img/api8.png new file mode 100644 index 0000000..cba906f Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api8.png differ diff --git a/Week 05/Lecture 09/Assignment 03/img/api9.png b/Week 05/Lecture 09/Assignment 03/img/api9.png new file mode 100644 index 0000000..634b46e Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/img/api9.png differ diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/.gitignore b/Week 05/Lecture 09/Assignment 03/lecture_9_2/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/.mvn/wrapper/maven-wrapper.properties b/Week 05/Lecture 09/Assignment 03/lecture_9_2/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..8f96f52 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw b/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw new file mode 100644 index 0000000..d7c358e --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw.cmd b/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw.cmd new file mode 100644 index 0000000..6f779cf --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/pom.xml b/Week 05/Lecture 09/Assignment 03/lecture_9_2/pom.xml new file mode 100644 index 0000000..810fe0a --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/pom.xml @@ -0,0 +1,131 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.3.1 + + + com.example + lecture_9_2 + 1.0-SNAPSHOT + lecture_9_2 + Demo project for Spring Boot + + + + + + + + + + + + + + + 21 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-devtools + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + + + com.mysql + mysql-connector-j + + + + + org.apache.commons + commons-csv + 1.9.0 + + + + + org.projectlombok + lombok + true + + + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.thymeleaf + thymeleaf + 3.1.2.RELEASE + + + + + org.xhtmlrenderer + flying-saucer-core + 9.1.22 + + + org.xhtmlrenderer + flying-saucer-pdf + 9.5.1 + + + + + javax.servlet + javax.servlet-api + 4.0.1 + provided + + + + com.itextpdf + itextpdf + 5.5.13.2 + + + com.itextpdf + html2pdf + 3.0.0 + + + commons-io + commons-io + 2.11.0 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.bat b/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.bat new file mode 100644 index 0000000..0bc0dfb --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.bat @@ -0,0 +1,3 @@ +@echo off +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9_2-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.sh b/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.sh new file mode 100644 index 0000000..86e03c8 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_9_2-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java new file mode 100644 index 0000000..0bf6de9 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/Lecture92Application.java @@ -0,0 +1,11 @@ +package com.example.lecture_9_2; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Lecture92Application { + public static void main(String[] args) { + SpringApplication.run(Lecture92Application.class, args); + } +} diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java new file mode 100644 index 0000000..e9699fe --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/config/DateConfig.java @@ -0,0 +1,34 @@ +package com.example.lecture_9_2.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import com.example.lecture_9_2.utils.DateUtils; +import com.example.lecture_9_2.utils.ThymeleafUtils; + +@Configuration +public class DateConfig { + + /** + * This method creates and returns an instance of the DateUtils class. + * The DateUtils class provides utility methods for working with dates. + * + * @return An instance of the DateUtils class. + */ + @Bean + public DateUtils dateUtils() { + return new DateUtils(); + } + + /** + * This method creates and returns an instance of the ThymeleafUtils class. + * The ThymeleafUtils class provides utility methods for working with Thymeleaf templates. + * + * @return An instance of the ThymeleafUtils class. + */ + @Bean + public ThymeleafUtils thymeleafUtils() { + return new ThymeleafUtils(); + } +} + diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java new file mode 100644 index 0000000..622849d --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/controller/EmployeeController.java @@ -0,0 +1,187 @@ +package com.example.lecture_9_2.controller; + +import java.io.IOException; +import java.util.List; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.data.domain.Pageable; +import org.springframework.http.ContentDisposition; +import org.springframework.http.HttpHeaders; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; +import com.example.lecture_9_2.service.EmployeeService; +import com.example.lecture_9_2.utils.PDFGenerator; +import com.lowagie.text.DocumentException; + +import lombok.AllArgsConstructor; + +@AllArgsConstructor +@Controller +@RequestMapping("/employees") +public class EmployeeController { + + private final EmployeeService employeeService; + private final PDFGenerator pdfGenerator; + + /** + * This method retrieves a paginated list of employees from the database and renders it in the "employees/list-employees" view. + * The page number is specified as a request parameter, with a default value of 1. + * The page size is set to 20, but can be adjusted as needed. + * + * @param theModel The Spring Model to which the paginated list of employees will be added as an attribute. + * @param page The page number of the paginated list of employees. Defaults to 1 if not provided. + * @return The view name "employees/list-employees" which will be rendered by the Spring framework. + */ + @GetMapping + public String listEmployees(Model theModel, @RequestParam(defaultValue = "0") int page) { + Pageable pageable = PageRequest.of(page, 20); // 20 items per page + Page employeePage = employeeService.findAllPaginate(pageable); + theModel.addAttribute("employeePage", employeePage); + return "employees/list-employees"; + } + + /** + * This method renders the form for adding a new employee. + * It creates a new Employee object and adds it to the Spring Model as an attribute. + * The form is then rendered using the "employees/employee-form" view. + * + * @param theModel The Spring Model to which the new Employee object will be added as an attribute. + * @return The view name "employees/employee-form" which will be rendered by the Spring framework. + */ + @GetMapping("/showFormForAdd") + public String showFormForAdd(Model theModel) { + // Create model attribute to bind form data + Employee theEmployee = new Employee(); + + // Set employee as a model attribute to pre-populate the form + theModel.addAttribute("employee", theEmployee); + + // Send over to our form + return "employees/employee-form"; + } + + /** + * This method renders the form for updating an existing employee. + * It retrieves the employee from the database using the provided employeeId, + * populates the Spring Model with the employee object, and then renders the "employees/employee-form" view. + * + * @param employeeId The unique identifier of the employee to be updated. + * @param theModel The Spring Model to which the employee object will be added as an attribute. + * @return The view name "employees/employee-form" which will be rendered by the Spring framework. + */ + @PostMapping("/showFormForUpdate") + public String showFormForUpdate(@RequestParam("employeeId") String id, + Model theModel) { + // Get the employee from the service + Employee theEmployee = employeeService.findById(id); + + // Set employee as a model attribute to pre-populate the form + theModel.addAttribute("employee", theEmployee); + + // Send over to our form + return "employees/employee-form"; + } + + /** + * This method saves the provided employee object to the database using the {@link EmployeeService}. + * After the employee is saved, a redirect is performed to the "/employees" endpoint to prevent duplicate submissions. + * + * @param theEmployee The {@link Employee} object to be saved. + * @return A string representing the redirect URL to the "/employees" endpoint. + */ + @PostMapping("/save") + public String saveEmployee(@ModelAttribute("employee") Employee theEmployee) { + // Save the employee + employeeService.save(theEmployee); + + // Use a redirect to prevent duplicate submissions + return "redirect:/employees"; + } + + /** + * This method deletes an employee from the database using the provided employeeId. + * After the employee is deleted, a redirect is performed to the "/employees" endpoint to prevent duplicate submissions. + * + * @param employeeId The unique identifier of the employee to be deleted. + * @return A string representing the redirect URL to the "/employees" endpoint. + */ + @PostMapping("/delete") + public String delete(@RequestParam("employeeId") String id) { + // Delete the employee + employeeService.deleteById(id); + + // Redirect to /employees + return "redirect:/employees"; + } + + /** + * This method is responsible for uploading a CSV file containing employee data to the server. + * The uploaded file is processed by the {@link EmployeeService} to import the employee data into the database. + * After the file is uploaded and processed, the method redirects the user to the "/employees" endpoint to display the updated list of employees. + * + * @param file The {@link MultipartFile} object representing the CSV file to be uploaded. + * @return A string representing the redirect URL to the "/employees" endpoint. + */ + @PostMapping("/upload") + public String uploadCsvFile(@RequestParam("file") MultipartFile file) { + try { + employeeService.uploadCsvAndStore(file); + return "redirect:/employees"; + } catch (IOException e) { + // Handle exception appropriately (e.g., show error message) + return "redirect:/employees"; + } + } + + /** + * This method is responsible for generating a PDF file containing employee information based on the provided CSV file. + * + * @param file The {@link MultipartFile} object representing the CSV file to be processed. + * @return A {@link ResponseEntity} containing the generated PDF bytes and appropriate headers for PDF download. + * @throws IOException If an error occurs while reading the CSV file. + * @throws DocumentException If an error occurs while generating the PDF. + */ + @PostMapping("/downloadPDF") + public ResponseEntity downloadPdfFromCsv() throws IOException, DocumentException { + try { + // Get the existing employee + List employees = employeeService.findAll(); + + // Convert to PDF bytes + byte[] pdfBytes = pdfGenerator.generateEmployeeInfo(employees); + + // Set headers for PDF download + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_PDF); + headers.setContentDisposition(ContentDisposition.builder("attachment").filename("employees.pdf").build()); + + return ResponseEntity.ok() + .headers(headers) + .body(pdfBytes); + } catch (IOException | DocumentException e) { + // Handle exception appropriately (e.g., show error message) + return ResponseEntity.badRequest().build(); + } + } + + @GetMapping("/search") + public String searchEmployees(@RequestParam("query") String query, + @RequestParam(defaultValue = "0") int page, + Model model) { + Pageable pageable = PageRequest.of(page, 20); // 20 items per page + Page employeePage = employeeService.searchEmployees(query, pageable); + model.addAttribute("employeePage", employeePage); + return "employees/list-employees"; + } +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/employees.pdf b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/employees.pdf new file mode 100644 index 0000000..aa419dd Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/employees.pdf differ diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/sampleData.csv b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/sampleData.csv new file mode 100644 index 0000000..a0607cd --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/sampleData.csv @@ -0,0 +1,21 @@ +ID,Name,DateOfBirth,Address,Department,Salary +ABC_1,Stesha Benyan,23/10/1981,6 Ronald Regan Court,SYSTEM,1000 +ABC_2,Alf McTiernan,14/12/1990,9390 Utah Way,WEB,2000 +ABC_3,Olympe Nevill,30/05/1985,5 Rowland Pass,WEB,1200 +ABC_4,Noemi Silwood,9/2/1999,92736 Orin Plaza,MOBILE,1500 +ABC_5,Gale Gwalter,6/7/1997,5677 Express Lane,SYSTEM,1700 +ABC_6,Jo Conibear,13/03/1987,7990 Bashford Drive,MOBILE,1800 +ABC_7,Mar Cocksedge,21/09/1995,5 Dunning Circle,WEB,1900 +ABC_8,Moise Trillow,10/12/1994,79 Everett Circle,MOBILE,2000 +ABC_9,Perceval Leys,16/02/1996,82046 Rowland Crossing,MOBILE,1100 +ABC_10,Madeline Aspinal,30/11/1984,98444 Dixon Way,QA,1300 +ABC_11,Charin Ramshaw,31/08/1984,55 Blue Bill Park Road,SYSTEM,1300 +ABC_12,Garrek Dericot,14/02/1980,90 Ilene Crossing,QA,1400 +ABC_13,Geri Bendley,22/05/1988,5642 Crest Line Plaza,MOBILE,1400 +ABC_14,Joelle Greenlies,18/05/1998,3 Schiller Junction,ADMIN,1300 +ABC_15,Weider Soitoux,5/2/1993,390 Elmside Trail,SYSTEM,1600 +ABC_16,Grange Pitney,11/7/1989,79 Mccormick Drive,QA,1500 +ABC_17,Charity Smee,19/10/1986,80 Northport Point,QA,2000 +ABC_18,Ode Pescod,8/2/1994,62317 Barnett Junction,SYSTEM,2200 +ABC_19,Humfrid Caddies,27/01/1997,65 Miller Circle,WEB,1800 +ABC_20,Gilli Tiner,29/05/1986,369 Center Point,MOBILE,1700 diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/template-employees.pdf b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/template-employees.pdf new file mode 100644 index 0000000..54d8d6a Binary files /dev/null and b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/data/template-employees.pdf differ diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java new file mode 100644 index 0000000..0f3425c --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/model/Employee.java @@ -0,0 +1,31 @@ +package com.example.lecture_9_2.model; + +import java.time.LocalDate; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Table; +import lombok.AllArgsConstructor; +import lombok.NoArgsConstructor; +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name="employee") +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class Employee { + + // Define all the fields + @Id + @Column(name="id") + private String id; + private String name; + private LocalDate dob; + private String address; + private String department; + private int salary; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java new file mode 100644 index 0000000..f0df972 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/repository/EmployeeRepository.java @@ -0,0 +1,42 @@ +package com.example.lecture_9_2.repository; + +import java.util.List; +import java.util.Optional; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; +import org.springframework.stereotype.Repository; + +import com.example.lecture_9_2.model.Employee; + +@Repository +public interface EmployeeRepository extends JpaRepository { + // Get all employees from the repository and order them by name ascending + List findAllByOrderByNameAsc(); + + // Retrieves a paginated list of all employees from the database, sorted by their names in ascending order. + Page findAllByOrderByNameAsc(Pageable pageable); + + Page findByNameContainingIgnoreCase(String query, Pageable pageable); + + @Query(value = "SELECT MAX(salary) FROM employee", nativeQuery = true) + Optional findMaxSalary(); + + @Query(value = "SELECT MIN(salary) FROM employee", nativeQuery = true) + Optional findMinSalary(); + + @Query(value = "SELECT AVG(salary) FROM employee", nativeQuery = true) + Double findAverageSalary(); + + @Query(value = "SELECT e.name " + + "FROM employee e " + + "WHERE e.salary = (SELECT MAX(salary) FROM employee)", nativeQuery = true) + List findEmployeeNamesWithHighestSalary(); + + @Query(value = "SELECT e.name " + + "FROM employee e " + + "WHERE e.salary = (SELECT MIN(salary) FROM employee)", nativeQuery = true) + List findEmployeeNamesWithLowestSalary(); +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java new file mode 100644 index 0000000..a6e7338 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/EmployeeService.java @@ -0,0 +1,49 @@ +package com.example.lecture_9_2.service; + +import java.io.IOException; +import java.util.List; +import java.util.Optional; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; + +public interface EmployeeService { + // Retrieves all employees from the database, sorted by their names in ascending order. + List findAll(); + + // Retrieves a paginated list of all employees from the database, sorted by their names in ascending order. + Page findAllPaginate(Pageable pageable); + + // Retrieves an employee from the database by their unique identifier. + Employee findById(String theId); + + // Saves the given employee to the database. + void save(Employee theEmployee); + + // Deletes an employee from the database by their unique identifier. + void deleteById(String theId); + + // Uploads a CSV file containing employee data and saves the employees to the database. + void uploadCsvAndStore(MultipartFile file) throws IOException; + + // Retrieves the maximum salary among all employees in the database. + Optional findMaxSalary(); + + // Retrieves the minimum salary among all employees in the database. + Optional findMinSalary(); + + // Retrieves the average salary among all employees in the database. + Double findAverageSalary(); + + // Retrieves the name of the employee with the highest salary in the database. + List findEmployeeWithHighestSalary(); + + // Retrieves the name of the employee with the lowest salary in the database. + List findEmployeeWithLowestSalary(); + + // Searches for employees in the database based on a given query string. + Page searchEmployees(String query, Pageable pageable); +} diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java new file mode 100644 index 0000000..b40cfcc --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/service/impl/EmployeeServiceImpl.java @@ -0,0 +1,177 @@ +package com.example.lecture_9_2.service.impl; + +import java.io.IOException; +import java.util.List; +import java.util.Optional; + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.stereotype.Service; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; +import com.example.lecture_9_2.repository.EmployeeRepository; +import com.example.lecture_9_2.service.EmployeeService; +import com.example.lecture_9_2.utils.FileUtils; + +import lombok.AllArgsConstructor; + +@Service +@AllArgsConstructor +public class EmployeeServiceImpl implements EmployeeService { + + private final EmployeeRepository employeeRepository; + + /** + * Retrieves all employees from the database, sorted by their names in ascending order. + * @return a list of all employees in the database, sorted by their names. + */ + @Override + public List findAll() { + return employeeRepository.findAllByOrderByNameAsc(); + } + + /** + * Retrieves a paginated list of all employees from the database, sorted by their names in ascending order. + * + * @param pageable the pagination and sorting parameters + * @return a paginated list of all employees in the database, sorted by their names. + * The returned Page object contains the list of employees, the total number of pages, and the total number of elements. + * @throws IllegalArgumentException if the provided Pageable object is null + */ + @Override + public Page findAllPaginate(Pageable pageable) { + if (pageable == null) { + throw new IllegalArgumentException("Invalid pagination and sorting parameters: null object"); + } + return employeeRepository.findAllByOrderByNameAsc(pageable); + } + + /** + * Retrieves an employee from the database by their unique identifier. + * + * @param theId the unique identifier of the employee to be retrieved + * @return the employee with the given identifier, or throws an exception if not found + * @throws IllegalArgumentException if the provided identifier is null or empty + */ + @Override + public Employee findById(String theId) { + if (theId == null || theId.isEmpty()) { + throw new IllegalArgumentException("Invalid employee identifier: null or empty string"); + } + return employeeRepository.findById(theId).orElseThrow(); + } + + /** + * Saves the given employee to the database. + * + * @param theEmployee the employee object to be saved + * @throws IllegalArgumentException if the provided employee is null + */ + @Override + public void save(Employee theEmployee) { + if (theEmployee == null) { + throw new IllegalArgumentException("Invalid employee: null object"); + } + employeeRepository.save(theEmployee); + } + + /** + * Deletes an employee from the database by their unique identifier. + * + * @param theId the unique identifier of the employee to be deleted + * @throws IllegalArgumentException if the provided identifier is null or empty + */ + @Override + public void deleteById(String theId) { + if (theId == null || theId.isEmpty()) { + throw new IllegalArgumentException("Invalid employee identifier: null or empty string"); + } + employeeRepository.deleteById(theId); + } + + /** + * Uploads a CSV file containing employee data and reads the contents into a list of Employee objects. + * After reading the contents, the method saves all the read employees to the database. + * + * @param file the MultipartFile containing the CSV data + * @throws IOException if an error occurs while reading the CSV file + */ + @Override + public void uploadCsvAndStore(MultipartFile file) throws IOException { + List employees = FileUtils.readEmployeesFromCSV(file); + employeeRepository.saveAll(employees); + } + + /** + * Retrieves the maximum salary among all employees in the database. + * + * @return an Optional containing the maximum salary, or an empty Optional if no employees are found. + * The maximum salary is represented as an Integer. + */ + @Override + public Optional findMaxSalary() { + return employeeRepository.findMaxSalary(); + } + + /** + * Retrieves the minimum salary among all employees in the database. + * + * @return an Optional containing the minimum salary, or an empty Optional if no employees are found. + * The minimum salary is represented as an Integer. + */ + @Override + public Optional findMinSalary() { + return employeeRepository.findMinSalary(); + } + + /** + * Retrieves the average salary among all employees in the database. + * + * @return a Double representing the average salary of all employees in the database. + * If no employees are found, the method returns null. + */ + @Override + public Double findAverageSalary() { + return employeeRepository.findAverageSalary(); + } + + /** + * Retrieves the name of the employee with the highest salary in the database. + * + * @return an Optional containing the name of the employee with the highest salary, or an empty Optional if no employees are found. + */ + @Override + public List findEmployeeWithHighestSalary() { + return employeeRepository.findEmployeeNamesWithHighestSalary(); + } + + /** + * Retrieves the name of the employee with the lowest salary in the database. + * + * @return an Optional containing the name of the employee with the lowest salary, or an empty Optional if no employees are found. + */ + @Override + public List findEmployeeWithLowestSalary() { + return employeeRepository.findEmployeeNamesWithLowestSalary(); + } + + /** + * Searches for employees in the database based on a given query string. + * The method uses the provided query string to search for employee names that contain the query string, + * ignoring case sensitivity. The search results are then paginated and sorted according to the provided Pageable object. + * + * @param query the query string to search for in employee names + * @param pageable the pagination and sorting parameters + * @return a paginated list of employees that contain the query string in their names, sorted by their names in ascending order. + * The returned Page object contains the list of employees, the total number of pages, and the total number of elements. + * @throws IllegalArgumentException if the provided Pageable object is null + */ + @Override + public Page searchEmployees(String query, Pageable pageable) { + if (pageable == null) { + throw new IllegalArgumentException("Invalid pagination and sorting parameters: null object"); + } + return employeeRepository.findByNameContainingIgnoreCase(query, pageable); + } +} diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java new file mode 100644 index 0000000..a8a5102 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/DateUtils.java @@ -0,0 +1,35 @@ +package com.example.lecture_9_2.utils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.time.format.DateTimeParseException; + +public class DateUtils { + private static final DateTimeFormatter DATE_FORMATER = DateTimeFormatter.ofPattern("d/M/yyyy"); + + /** + * Parses a date string in the format "d/M/yyyy" and returns a LocalDate object. + * + * @param dateString the date string to be parsed + * @return the parsed LocalDate object + * @throws IllegalArgumentException if the date string cannot be parsed + */ + public static LocalDate parseDate(String dateStr) { + try { + return LocalDate.parse(dateStr, DATE_FORMATER); + } catch (DateTimeParseException e) { + System.out.println("Error parsing date: " + dateStr); + throw e; + } + } + + /** + * Formats the given LocalDate object into a string in the format "d/M/yyyy". + * + * @param date the LocalDate object to be formatted + * @return the formatted string in the specified format + */ + public static String formatDate(LocalDate date) { + return date.format(DATE_FORMATER); + } +} diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java new file mode 100644 index 0000000..3c2863f --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/FileUtils.java @@ -0,0 +1,53 @@ +package com.example.lecture_9_2.utils; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; + +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_9_2.model.Employee; + +public class FileUtils { + /** + * Reads employees from a CSV file using manual parsing. + * + * @param file The CSV file containing employee data. + * @return A list of {@link Employee} objects read from the CSV file. + * @throws IOException If an error occurs while reading the file. + */ + public static List readEmployeesFromCSV(MultipartFile file) throws IOException { + List employees = new ArrayList<>(); + try (BufferedReader br = new BufferedReader(new InputStreamReader(file.getInputStream()))) { + String line; + br.readLine(); // Skip header + while ((line = br.readLine()) != null) { + String[] attributes = line.split(","); + Employee employee = fromCSV(attributes); + employees.add(employee); + } + } catch (IOException e) { + throw new IOException("Error reading employee (Manual) " + e); + } + return employees; + } + + /** + * Parses an array of attributes into an Employee object. + * + * @param attributes an array of strings representing the employee's id, name, date of birth, address, and department. + * @return an Employee object created from the provided attributes. + */ + public static Employee fromCSV(String[] attributes) { + String id = attributes[0]; + String name = attributes[1]; + LocalDate dob = DateUtils.parseDate(attributes[2]); + String address = attributes[3]; + String department = attributes[4]; + int salary = Integer.parseInt(attributes[5]); + return new Employee(id, name, dob, address, department, salary); + } +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/PDFGenerator.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/PDFGenerator.java new file mode 100644 index 0000000..afc6ce8 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/PDFGenerator.java @@ -0,0 +1,68 @@ +package com.example.lecture_9_2.utils; + +import java.util.List; +import java.time.LocalDate; +import org.springframework.stereotype.Component; +import java.io.IOException; +import com.itextpdf.html2pdf.HtmlConverter; +import com.example.lecture_9_2.model.Employee; +import com.example.lecture_9_2.service.EmployeeService; +import org.thymeleaf.context.Context; +import org.thymeleaf.spring6.SpringTemplateEngine; +import java.io.ByteArrayOutputStream; +import java.util.Optional; + +@Component +public class PDFGenerator { + + private final SpringTemplateEngine templateEngine; + private final EmployeeService employeeService; + + public PDFGenerator(SpringTemplateEngine templateEngine, EmployeeService employeeService) { + this.templateEngine = templateEngine; + this.employeeService = employeeService; + } + + /** + * Generates a PDF document containing information about a list of employees. + * + * @param listEmployees a list of {@link Employee} objects to be included in the PDF. + * @return a byte array representing the generated PDF document. + * @throws IOException if an error occurs while generating the PDF. + */ + public byte[] generateEmployeeInfo(List listEmployees) throws IOException { + // Create a context + Context context = new Context(); + + // Gather the users data needed to generate the file + Optional maxSalary = employeeService.findMaxSalary(); // MaxSalary + Optional minSalary = employeeService.findMinSalary(); // MinSalary + Double aveSalary = employeeService.findAverageSalary(); // AverageSalary + List nameHighSal = employeeService.findEmployeeWithHighestSalary(); // Employee with Highest Salary + List nameLowSal = employeeService.findEmployeeWithLowestSalary(); // Employee with Lowest Salary + + // Gather info record and localDate + int totalRecord = listEmployees.size(); + LocalDate currentDate = LocalDate.now(); + + // Binding data to the context + context.setVariable("customer", "Michael Leon"); + context.setVariable("maxSalary", maxSalary.orElse(0)); + context.setVariable("minSalary", minSalary.orElse(0)); + context.setVariable("aveSalary", aveSalary); + context.setVariable("employees", listEmployees); + context.setVariable("record", totalRecord); + context.setVariable("currentDate", currentDate); + context.setVariable("nameHighSal", String.join(", ", nameHighSal)); + context.setVariable("nameLowSal", String.join(", ", nameLowSal)); + + // Gather the template + String processedHtml = templateEngine.process("pdf/pdf-template", context); + + // Processing all the bytearrays and ready to send + ByteArrayOutputStream stream = new ByteArrayOutputStream(); + HtmlConverter.convertToPdf(processedHtml, stream); + stream.flush(); + return stream.toByteArray(); + } +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java new file mode 100644 index 0000000..9825e6b --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/java/com/example/lecture_9_2/utils/ThymeleafUtils.java @@ -0,0 +1,22 @@ +package com.example.lecture_9_2.utils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; + +import org.springframework.stereotype.Component; + +@Component +public class ThymeleafUtils { + private static final DateTimeFormatter DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd"); + + /** + * Formats the given LocalDate object using the specified date format pattern. + * + * @param date The LocalDate object to be formatted. + * @return A String representation of the date in the format "yyyy-MM-dd". + */ + public String formatDate(LocalDate date) { + return date.format(DATE_FORMATTER); + } +} + diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/application.properties b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/application.properties new file mode 100644 index 0000000..3b0b1d6 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/application.properties @@ -0,0 +1,6 @@ +spring.application.name=lecture_9_2 + +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3308/week5_lecture9_3?allowPublicKeyRetrieval=true&useSSL=false +spring.datasource.username=root +spring.datasource.password=Michaeleon16606_ \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/style.css b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/style.css new file mode 100644 index 0000000..058d381 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/style.css @@ -0,0 +1,172 @@ +/* General Styles */ +body { + font-family: Arial, sans-serif; + background-color: #f8f9fa; + color: #212529; +} + +.container { + max-width: 900px; + padding-top: 1rem; + padding-bottom: 1rem; + margin: 0 auto; + padding: 20px; +} + +h3 { + text-align: center; + margin-bottom: 20px; +} + +/* Table Styles */ +table { + width: 100%; + border-collapse: collapse; + margin-bottom: 20px; +} + +table, th, td { + border: 1px solid #dee2e6; +} + +th, td { + padding: 12px; +} + +td { + text-align: left; +} + +th { + text-align: center !important; +} + +.spacey { + display: flex; + width: 100%; + flex-direction: row; + justify-content: space-between; + margin-bottom: 0.5rem; +} + +thead { + background-color: #343a40; + color: white; +} + +tbody tr:nth-child(odd) { + background-color: #f8f9fa; +} + +/* Button Styles */ +.btn { + display: inline-block; + font-weight: 400; + color: #fff; + text-align: center; + vertical-align: middle; + user-select: none; + background-color: #007bff; + border: 1px solid #007bff; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + text-decoration: none; + margin-right: 10px; +} + +.btn:hover { + background-color: #0056b3; + border-color: #004085; +} + +.btn-secondary { + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + background-color: #545b62; + border-color: #4e555b; +} + +/* Form Styles */ +.form-group { + margin-bottom: 15px; +} + +.form-control { + width: 100%; + padding: 10px; + border: 1px solid #ced4da; + border-radius: 4px; +} + +/* Pagination Styles */ +.pagination { + display: flex; + justify-content: center; + margin-bottom: 20px; +} + +.pagination a { + color: #007bff; + padding: 8px 16px; + text-decoration: none; + border: 1px solid #dee2e6; + margin: 0 5px; + border-radius: 4px; +} + +.pagination a:hover { + background-color: #e9ecef; +} + +.custom-file-input { + position: relative; + display: inline-block; + width: 100%; + height: 2.5rem; + cursor: pointer; +} + +.custom-file-input input[type="file"] { + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0; + cursor: pointer; +} + +.custom-file-label { + display: inline-block; + width: calc(100% - 2.5rem); + height: 2.5rem; + line-height: 2.5rem; + padding: 0 1rem; + background-color: #f1f1f1; + border: 1px solid #ccc; + border-radius: 0.375rem; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + cursor: pointer; +} + +.custom-file-button { + display: inline-block; + width: 2.5rem; + height: 2.5rem; + line-height: 2.5rem; + background-color: #3490dc; + border: 1px solid #3490dc; + color: #fff; + text-align: center; + border-radius: 0.375rem; + cursor: pointer; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/template.css b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/template.css new file mode 100644 index 0000000..2dc303c --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/css/template.css @@ -0,0 +1,42 @@ +body { + font-family: Arial, sans-serif; + margin: 20px; +} + +.container { + max-width: 600px; + margin: auto; +} + +h2 { + text-align: center; + margin-bottom: 20px; +} + +.form-group { + margin-bottom: 15px; +} + +label { + display: block; + margin-bottom: 5px; +} + +input[type="file"] { + display: block; +} + +button { + display: block; + width: 100%; + padding: 10px; + background-color: #007bff; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; +} + +button:hover { + background-color: #0056b3; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/index.html b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/index.html new file mode 100644 index 0000000..5e6ae86 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/index.html @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/js/script.js b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/js/script.js new file mode 100644 index 0000000..63eb7a1 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/static/js/script.js @@ -0,0 +1,71 @@ +function validateForm() { + var fileInput = document.getElementById('csvFile'); + var filePath = fileInput.value; + var allowedExtensions = /(\.csv)$/i; + + // Check if file extension is .csv + if (!allowedExtensions.exec(filePath)) { + fileInput.value = ''; + Toastify({ + text: "Please check your CSV file.", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#f44336", + }).showToast(); + return false; + } + + // Read the file contents + var reader = new FileReader(); + reader.onload = function(e) { + var contents = e.target.result; + + // Split contents into lines + var lines = contents.split(/\r\n|\n/); + + // Check if the first line (header) matches expected format + var expectedHeader = "ID,Name,DateOfBirth,Address,Department,Salary"; + var actualHeader = lines[0].trim(); + + if (actualHeader !== expectedHeader) { + fileInput.value = ''; + Toastify({ + text: "Invalid CSV format. Please check your CSV file.", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#f44336", + }).showToast(); + return false; + } + + // If all validations pass, allow form submission + fileInput.closest('form').submit(); + + // Optionally, show success message using Toastify or other method + Toastify({ + text: "CSV submitted successfully!", + duration: 3000, + close: true, + gravity: "top", + position: "right", + backgroundColor: "#4caf50", + }).showToast(); + }; + + // Read the file as text + reader.readAsText(fileInput.files[0]); + + // Prevent form submission for now + return false; +} + +function updateFileName() { + var input = document.getElementById('csvFile'); + var fileName = input.files[0].name; + var label = document.getElementById('file-label'); + label.textContent = fileName; +} \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/employee-form.html b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/employee-form.html new file mode 100644 index 0000000..5b4d332 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/employee-form.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + Save Employee + + + +
+

Employee Management

+
+ +
+ +
Save Employee
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+
+ + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/list-employees.html b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/list-employees.html new file mode 100644 index 0000000..9c2c7b4 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/employees/list-employees.html @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + Employee Management + + + +
+

Employee Management

+
+ + +
+
+

Hello, Michael Leon!

+

Welcome back, and have a good day

+
+
+
+
+ + +
+
+
+
+ +
+ +
+ +
+ + +
+ + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + +
NameDate of BirthAddressDepartmentSalaryAction
+
+ +
+ + +
+ + +
+ + +
+
+
+ + +
+
+ First + Previous +
+ + + Page 1 of 1 + +
+ Next + Last +
+
+
+ + + + + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/pdf/pdf-template.html b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/pdf/pdf-template.html new file mode 100644 index 0000000..eff32c6 --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/main/resources/templates/pdf/pdf-template.html @@ -0,0 +1,136 @@ + + + + + + Fsoft + + + +

FPT BE COURSE

+

Genarate PDF

+
+
+

User:

+

+

Date:

+
+
+
+

Message summary

+ + + + + + + + + + + + + + + + + + + + + + +
+

Message details

+ + + + + + + + + + + + + + + + + + + + + + + +
No.IDNameDate of BirthAddressDeparmentSalary
#
+ + \ No newline at end of file diff --git a/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java new file mode 100644 index 0000000..8c233ce --- /dev/null +++ b/Week 05/Lecture 09/Assignment 03/lecture_9_2/src/test/java/com/example/lecture_9_2/Lecture92ApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.lecture_9_2; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class Lecture92ApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/Week 05/Lecture 10/.gitkeep b/Week 05/Lecture 10/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Week 05/Lecture 10/Assignment 01/Lecture 10 - Assignment 01.postman_collection.json b/Week 05/Lecture 10/Assignment 01/Lecture 10 - Assignment 01.postman_collection.json new file mode 100644 index 0000000..cbdf17a --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/Lecture 10 - Assignment 01.postman_collection.json @@ -0,0 +1,100 @@ +{ + "info": { + "_postman_id": "859f23f0-952d-4e0d-b176-9816219a20e5", + "name": "Lecture 10 - Assignment 01", + "description": "This postman collection is created by Michael Leon as a part of Assignment 02 for Lecture 08 - Spring boot", + "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json", + "_exporter_id": "34693283" + }, + "item": [ + { + "name": "Get All Employees", + "request": { + "method": "GET", + "header": [], + "url": "localhost:8080/api/v1/employee" + }, + "response": [] + }, + { + "name": "Get Employee By ID", + "request": { + "method": "GET", + "header": [], + "url": "localhost:8080/api/v1/employee/3ccd3c90-890e-41c4-9fa3-456f3d97f999" + }, + "response": [] + }, + { + "name": "Add New Employee", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\r\n \"name\": \"Michael Leon\",\r\n \"dob\": \"2003-12-18\",\r\n \"address\": \"Anytime anywhere\",\r\n \"department\": \"MOBILE\",\r\n \"email\": \"michael.leon@example.com\",\r\n \"phone\": \"+6281234567890\"\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "localhost:8080/api/v1/employee" + }, + "response": [] + }, + { + "name": "Edit Employee", + "request": { + "method": "PUT", + "header": [], + "body": { + "mode": "raw", + "raw": "{\r\n \"name\": \"Leon Michael\",\r\n \"dob\": \"2003-12-18\",\r\n \"address\": \"Anytime anywhere anyplace\",\r\n \"department\": \"MOBILE\",\r\n \"email\": \"leon.michael@example.com\",\r\n \"phone\": \"+6281234567890\"\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": "localhost:8080/api/v1/employee/1caa1b8e-678c-41a2-9d91-234f1d75f777" + }, + "response": [] + }, + { + "name": "Delete Employee", + "request": { + "method": "DELETE", + "header": [], + "url": "localhost:8080/api/v1/employee/f82cafb3-a5b2-481e-8f05-e8bec34bba78" + }, + "response": [] + }, + { + "name": "Get Employees by Department", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "localhost:8080/api/v1/employee?department=QA", + "host": [ + "localhost" + ], + "port": "8080", + "path": [ + "api", + "v1", + "employee" + ], + "query": [ + { + "key": "department", + "value": "QA" + } + ] + } + }, + "response": [] + } + ] +} \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/README.md b/Week 05/Lecture 10/Assignment 01/README.md new file mode 100644 index 0000000..303d55a --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/README.md @@ -0,0 +1,147 @@ +# πŸ‘¨πŸ»β€πŸ« Lecture 10 - SpringBoot REST API +> This repository is created as a part of assignment for Lecture 10 - SpringBoot REST API + +## ✍🏼 Assignment 01 - CRUD Project for Employee Management +### 🌳 Project Structure +```bash +lecture_10 +β”œβ”€β”€ .mvn/wrapper/ +β”‚ └── maven-wrapper.properties +β”œβ”€β”€ src/main/ +β”‚ β”œβ”€β”€ java/com/example/lecture_10/ +β”‚ β”‚ β”œβ”€β”€ controller/ +β”‚ β”‚ β”‚ └── EmployeeController.java +β”‚ β”‚ β”œβ”€β”€ data/ +β”‚ β”‚ β”‚ β”œβ”€β”€ model/ +β”‚ β”‚ β”‚ β”‚ └── Employee.java +β”‚ β”‚ β”‚ β”œβ”€β”€ repository/ +β”‚ β”‚ β”‚ β”‚ └── EmployeeRepository.java +β”‚ β”‚ β”‚ └── ImportData.csv +β”‚ β”‚ β”œβ”€β”€ dto/ +β”‚ β”‚ β”‚ └── EmployeeDTO.java +β”‚ β”‚ β”œβ”€β”€ exception/ +β”‚ β”‚ β”‚ └── GlobalExceptionHandler.java +β”‚ β”‚ β”œβ”€β”€ mapper/ +β”‚ β”‚ β”‚ └── EmployeeMapper.java +β”‚ β”‚ β”œβ”€β”€ utils/ +β”‚ β”‚ β”‚ β”œβ”€β”€ DateUtils.java +β”‚ β”‚ β”‚ └── FileUtils.java +β”‚ β”‚ └── Lecture10Application.java +β”‚ └── resources/ +β”‚ └── application.properties +β”œβ”€β”€ .gitignore +β”œβ”€β”€ mvnw +β”œβ”€β”€ mvnw.cmd +β”œβ”€β”€ pom.xml +β”œβ”€β”€ run.bat +└── run.sh +``` + +### 🧩 SQL Query Data +Here is the SQL query to create the database, table, and instantiate some data +```sql +-- Create the database +CREATE DATABASE week5_lecture10; + +-- Use the database +USE week5_lecture10; + +-- Create the employee table +CREATE TABLE `employee` ( + `id` VARCHAR(50) NOT NULL, + `name` VARCHAR(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `dob` DATE NOT NULL, + `address` VARCHAR(255) NOT NULL, + `department` VARCHAR(100) NOT NULL, + `email` VARCHAR(255) NOT NULL, + `phone` VARCHAR(20) NOT NULL, + PRIMARY KEY (id) +); + +-- Insert dummy data into the employee table +INSERT INTO Employee (id, name, dob, address, department, email, phone) VALUES +('1caa1b8e-678c-41a2-9d91-234f1d75f777', 'Alice Johnson', '1985-05-15', '123 Elm Street, Springfield', 'WEB', 'alice@example.com', '+6281234567890'), +('2bff2b8f-789d-41b3-9e92-345f2d86f888', 'Bob Smith', '1979-12-22', '456 Oak Avenue, Springfield', 'SYSTEM', 'bob@example.com', '+6281234567890'), +('3ccd3c90-890e-41c4-9fa3-456f3d97f999', 'Carol Davis', '1990-08-12', '789 Pine Road, Springfield', 'MOBILE', 'carol@example.com', '+6281234567890'), +('4dde4d91-901f-41d5-9fb4-567f4e08faaa', 'David Wilson', '1988-07-04', '321 Maple Street, Springfield', 'QA', 'david@example.com', '+6281234567890'), +('5eef5e92-0120-41e6-9fc5-678f5e19fbbb', 'Eva Brown', '1992-03-28', '654 Birch Lane, Springfield', 'ADMIN', 'eva@example.com', '+6281234567890'); +``` + +and here is the query to drop the database +```sql +-- Drop the database +DROP DATABASE IF EXISTS week5_lecture10; +``` + +### βš™οΈ How to run the program +1. Go to the `lecture_10` directory by using this command + ```bash + $ cd lecture_10 + ``` +2. Make sure you have maven installed on your computer, use `mvn -v` to check the version. +3. If you are using windows, you can run the program by using this command. + ```bash + $ ./run.bat + ``` + And if you are using Linux, you can run the program by using this command. + ```bash + $ chmod +x run.sh + $ ./run.sh + ``` + +### πŸ“Έ Screenshots +Here is some result of the APIs created. +1. **Get All Employees** + `(GET /api/v1/employee)` + + ![Screenshot](img/api1.png) +2. **Get Employee By ID** + `(GET /api/v1/employee/3ccd3c90-890e-41c4-9fa3-456f3d97f999)` + + ![Screenshot](img/api2.png) +3. **Add New Employee** + `(POST /api/v1/employee)` + + Body (Raw): + ```json + { + "name": "Michael Leon", + "dob": "2003-12-18", + "address": "Anytime anywhere", + "department": "MOBILE", + "email": "michael.leon@example.com", + "phone": "+6281234567890" + } + ``` + + ![Screenshot](img/api3.png) + ![Screenshot](img/api32.png) +4. **Edit Employee** + `(PUT /api/v1/employee/{idEmployee})` + + Body (Raw): + ```json + { + "name": "Leon Michael", + "dob": "2003-12-18", + "address": "Anytime anywhere anyplace", + "department": "MOBILE", + "email": "leon.michael@example.com", + "phone": "+6281234567890" + } + ``` + + ![Screenshot](img/api4.png) + ![Screenshot](img/api42.png) +5. **Delete Employee** + `(DELETE /api/v1/employee/{idEmployee})` + + ![Screenshot](img/api5.png) + ![Screenshot](img/api52.png) +6. **Get Employees by Department** + `(GET /api/v1/employee?department=QA)` + + ![Screenshot](img/api6.png) + +### πŸ“¬ Postman Collection +Here is the [postman collection](/Week%2005/Lecture%2010/Assignment%2001/Lecture%2010%20-%20Assignment%2001.postman_collection.json) you can use to demo the API functionality. \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/img/api1.png b/Week 05/Lecture 10/Assignment 01/img/api1.png new file mode 100644 index 0000000..2e1e023 Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api1.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api2.png b/Week 05/Lecture 10/Assignment 01/img/api2.png new file mode 100644 index 0000000..812d2dc Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api2.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api3.png b/Week 05/Lecture 10/Assignment 01/img/api3.png new file mode 100644 index 0000000..1b22a2c Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api3.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api32.png b/Week 05/Lecture 10/Assignment 01/img/api32.png new file mode 100644 index 0000000..b3c3acc Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api32.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api4.png b/Week 05/Lecture 10/Assignment 01/img/api4.png new file mode 100644 index 0000000..286c12a Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api4.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api42.png b/Week 05/Lecture 10/Assignment 01/img/api42.png new file mode 100644 index 0000000..be9765d Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api42.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api5.png b/Week 05/Lecture 10/Assignment 01/img/api5.png new file mode 100644 index 0000000..c949b3a Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api5.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api52.png b/Week 05/Lecture 10/Assignment 01/img/api52.png new file mode 100644 index 0000000..730976f Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api52.png differ diff --git a/Week 05/Lecture 10/Assignment 01/img/api6.png b/Week 05/Lecture 10/Assignment 01/img/api6.png new file mode 100644 index 0000000..e981d13 Binary files /dev/null and b/Week 05/Lecture 10/Assignment 01/img/api6.png differ diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/.gitignore b/Week 05/Lecture 10/Assignment 01/lecture_10/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/.mvn/wrapper/maven-wrapper.properties b/Week 05/Lecture 10/Assignment 01/lecture_10/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..8f96f52 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw b/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw new file mode 100644 index 0000000..d7c358e --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw.cmd b/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw.cmd new file mode 100644 index 0000000..6f779cf --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/pom.xml b/Week 05/Lecture 10/Assignment 01/lecture_10/pom.xml new file mode 100644 index 0000000..84ad00f --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/pom.xml @@ -0,0 +1,104 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.3.1 + + + com.example + lecture_10 + 1.0-SNAPSHOT + lecture_10 + Demo project for Spring Boot + + + + + + + + + + + + + + + 21 + + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-starter-web-services + + + + + org.springframework.boot + spring-boot-starter-data-jpa + + + mysql + mysql-connector-java + 8.0.33 + + + + + org.projectlombok + lombok + + + + + org.springframework.boot + spring-boot-starter-validation + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + javax.validation + validation-api + 2.0.1.Final + + + + + org.mapstruct + mapstruct + 1.5.3.Final + + + org.mapstruct + mapstruct-processor + 1.5.3.Final + provided + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/run.bat b/Week 05/Lecture 10/Assignment 01/lecture_10/run.bat new file mode 100644 index 0000000..d55b8f9 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/run.bat @@ -0,0 +1,3 @@ +@echo off +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_10-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/run.sh b/Week 05/Lecture 10/Assignment 01/lecture_10/run.sh new file mode 100644 index 0000000..e2a0e8a --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo Building the project with Maven... +mvn clean install && java -jar target/lecture_10-1.0-SNAPSHOT.jar \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/Lecture10Application.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/Lecture10Application.java new file mode 100644 index 0000000..5782ddc --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/Lecture10Application.java @@ -0,0 +1,13 @@ +package com.example.lecture_10; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Lecture10Application { + + public static void main(String[] args) { + SpringApplication.run(Lecture10Application.class, args); + } + +} diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/controller/EmployeeController.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/controller/EmployeeController.java new file mode 100644 index 0000000..0bbb792 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/controller/EmployeeController.java @@ -0,0 +1,176 @@ +package com.example.lecture_10.controller; + +import java.io.IOException; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.ResponseEntity; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_10.data.model.Employee; +import com.example.lecture_10.data.repository.EmployeeRepository; +import com.example.lecture_10.dto.EmployeeDTO; +import com.example.lecture_10.mapper.EmployeeMapper; +import com.example.lecture_10.util.FileUtils; + +import lombok.AllArgsConstructor; + +@RestController +@RequestMapping("/api/v1/employee") +@AllArgsConstructor +@Validated +public class EmployeeController { + + @Autowired + private final EmployeeRepository employeeRepository; + + private final EmployeeMapper employeeMapper = EmployeeMapper.INSTANCE; + + /** + * Retrieves a list of all employees, optionally filtered by department. + * + * @param departmentId The ID of the department to filter employees by. If not provided, all employees are returned. + * @return A ResponseEntity containing a list of EmployeeDTOs representing the retrieved employees. + * If no employees are found, an empty ResponseEntity with status 204 (No Content) is returned. + */ + @GetMapping + public ResponseEntity> listAllEmployee(@RequestParam(value = "department", required = false) String departmentId) { + List employees; + + if (departmentId != null && !departmentId.isEmpty()) { + employees = employeeRepository.findByDepartmentId(departmentId); + } else { + employees = employeeRepository.findAll(); + } + + if (employees.isEmpty()) { + return ResponseEntity.noContent().build(); + } + + List employeeDTOs = employees.stream() + .map(employeeMapper::toEmployeeDTO) + .collect(Collectors.toList()); + + return ResponseEntity.ok(employeeDTOs); + } + + /** + * Retrieves an employee by their unique ID. + * + * @param id The unique identifier of the employee to retrieve. + * @return A ResponseEntity containing an EmployeeDTO representing the retrieved employee. + * If the employee is not found, a ResponseEntity with status 404 (Not Found) is returned. + */ + @GetMapping(value = "/{id}") + public ResponseEntity findEmployeeById(@PathVariable("id") String id) { + Optional employeeOpt = employeeRepository.findById(id); + + if (employeeOpt.isPresent()) { + EmployeeDTO employeeDTO = employeeMapper.toEmployeeDTO(employeeOpt.get()); + return ResponseEntity.ok(employeeDTO); + } + + return ResponseEntity.notFound().build(); + } + + /** + * Saves a new employee to the database and returns the saved employee as an EmployeeDTO. + * + * @param employeeDTO The EmployeeDTO containing the details of the new employee to be saved. + * @return A ResponseEntity containing the saved employee as an EmployeeDTO. + */ + @PostMapping + public ResponseEntity saveEmployee(@RequestBody EmployeeDTO employeeDTO) { + Employee employee = employeeMapper.toEmployee(employeeDTO); + Employee savedEmployee = employeeRepository.save(employee); + return ResponseEntity.ok(employeeMapper.toEmployeeDTO(savedEmployee)); + } + + /** + * Updates an existing employee in the database with the provided EmployeeDTO. + * + * @param id The unique identifier of the employee to be updated. + * @param employeeDTO The EmployeeDTO containing the updated details of the employee. + * @return A ResponseEntity containing the updated employee as an EmployeeDTO if the employee is found, otherwise a ResponseEntity with status 404 (Not Found). + */ + @PutMapping(value = "/{id}") + public ResponseEntity updateEmployee(@PathVariable(value = "id") String id, @RequestBody EmployeeDTO employeeDTO) { + Optional employeeOpt = employeeRepository.findById(id); + + if (employeeOpt.isPresent()) { + Employee employee = employeeOpt.get(); + employee.setName(employeeDTO.getName()); + employee.setDob(employeeDTO.getDob()); + employee.setAddress(employeeDTO.getAddress()); + employee.setDepartment(employeeDTO.getDepartment()); + employee.setEmail(employeeDTO.getEmail()); + employee.setPhone(employeeDTO.getPhone()); + + Employee updatedEmployee = employeeRepository.save(employee); + return ResponseEntity.ok(employeeMapper.toEmployeeDTO(updatedEmployee)); + } + + return ResponseEntity.notFound().build(); + } + + /** + * Deletes an existing employee from the database based on the provided unique ID. + * + * @param id The unique identifier of the employee to be deleted. + * @return A ResponseEntity containing the deleted employee if found, otherwise a ResponseEntity with status 404 (Not Found). + */ + @DeleteMapping(value = "/{id}") + public ResponseEntity deleteEmployee(@PathVariable(value = "id") String id) { + Optional employeeOpt = employeeRepository.findById(id); + + if (employeeOpt.isPresent()) { + employeeRepository.delete(employeeOpt.get()); + return ResponseEntity.ok().build(); + } + + return ResponseEntity.notFound().build(); + } + + /** + * Uploads a CSV file containing employee data and saves it to the database. + * + * @param file The MultipartFile containing the CSV file to be uploaded. + * @return A ResponseEntity containing a success message if the file is read successfully and data is saved, otherwise a ResponseEntity with a bad request status and an error message. + * @throws IOException If an error occurs while reading the CSV file. + */ + @PostMapping("/upload-csv") + public ResponseEntity uploadCsv(@RequestParam("file") MultipartFile file) throws IOException { + if (file.isEmpty()) { + return ResponseEntity.badRequest().body("File is empty"); + } + + List employeeDTOs; + try { + employeeDTOs = FileUtils.readEmployeesFromCSV(file).stream() + .map(employeeMapper::toEmployeeDTO) + .collect(Collectors.toList()); + + List employees = employeeDTOs.stream() + .map(employeeMapper::toEmployee) + .collect(Collectors.toList()); + + employeeRepository.saveAll(employees); + return ResponseEntity.ok("File read successfully and data saved."); + } catch (IOException e) { + return ResponseEntity.badRequest().body(e.getMessage()); + } + } +} + diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/ImportData.csv b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/ImportData.csv new file mode 100644 index 0000000..287d2bf --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/ImportData.csv @@ -0,0 +1,5001 @@ +ID,Name,DateOfBirth,Address,Department +ABC_1,Stesha Benyan,23/10/1981,6 Ronald Regan Court,SYSTEM +ABC_2,Alf McTiernan,14/12/1990,9390 Utah Way,WEB +ABC_3,Olympe Nevill,30/05/1985,5 Rowland Pass,WEB +ABC_4,Noemi Silwood,9/2/1999,92736 Orin Plaza,MOBILE +ABC_5,Gale Gwalter,6/7/1997,5677 Express Lane,SYSTEM +ABC_6,Jo Conibear,13/03/1987,7990 Bashford Drive,MOBILE +ABC_7,Mar Cocksedge,21/09/1995,5 Dunning Circle,WEB +ABC_8,Moise Trillow,10/12/1994,79 Everett Circle,MOBILE +ABC_9,Perceval Leys,16/02/1996,82046 Rowland Crossing,MOBILE +ABC_10,Madeline Aspinal,30/11/1984,98444 Dixon Way,QA +ABC_11,Charin Ramshaw,31/08/1984,55 Blue Bill Park Road,SYSTEM +ABC_12,Garrek Dericot,14/02/1980,90 Ilene Crossing,QA +ABC_13,Geri Bendley,22/05/1988,5642 Crest Line Plaza,MOBILE +ABC_14,Joelle Greenlies,18/05/1998,3 Schiller Junction,ADMIN +ABC_15,Weider Soitoux,5/2/1993,390 Elmside Trail,SYSTEM +ABC_16,Grange Pitney,11/7/1989,79 Mccormick Drive,QA +ABC_17,Charity Smee,19/10/1986,80 Northport Point,QA +ABC_18,Ode Pescod,8/2/1994,62317 Barnett Junction,SYSTEM +ABC_19,Humfrid Caddies,27/01/1997,65 Miller Circle,WEB +ABC_20,Gilli Tiner,29/05/1986,369 Center Point,MOBILE +ABC_21,Alessandro Eriksson,14/03/1982,2 Bluejay Pass,WEB +ABC_22,Harris Wyles,14/07/1991,04938 Northfield Alley,QA +ABC_23,Amanda Vasilmanov,22/02/1997,2 Fuller Court,WEB +ABC_24,Muffin Doody,18/09/1990,586 Basil Point,QA +ABC_25,Emera Balkwill,21/02/1980,8 Riverside Drive,QA +ABC_26,Yancy Himpson,30/07/1989,067 Karstens Way,MOBILE +ABC_27,Farrell Buchett,12/7/1999,5 Meadow Ridge Alley,QA +ABC_28,Vanda Veldens,10/8/1997,91954 Moland Drive,QA +ABC_29,Katherine Joannet,25/08/1995,97 5th Center,SYSTEM +ABC_30,Vale Gosden,21/05/1986,20 Blackbird Street,SYSTEM +ABC_31,Gracia Burleigh,11/8/1992,487 Sugar Court,MOBILE +ABC_32,Arlena Troup,21/06/1982,01570 6th Way,MOBILE +ABC_33,Kris Routham,28/01/1992,501 Cardinal Court,WEB +ABC_34,Jamal Sabatier,11/3/1993,0353 Crownhardt Hill,MOBILE +ABC_35,Caitrin Sabben,12/11/1987,658 Sommers Point,QA +ABC_36,Daisey Malloch,31/08/1995,2223 David Street,SYSTEM +ABC_37,Davide Clymer,25/12/1992,09620 Bultman Alley,MOBILE +ABC_38,Madalena Calderonello,10/12/1985,55 Graedel Center,ADMIN +ABC_39,Kayley Spatig,14/05/1993,751 Rockefeller Way,ADMIN +ABC_40,Jordana Hugnin,9/2/1984,2539 Nancy Lane,ADMIN +ABC_41,Murielle Andrys,11/7/1991,905 Green Circle,WEB +ABC_42,Babb Ivashev,2/2/1997,8 Larry Street,SYSTEM +ABC_43,Dicky Sherratt,29/02/1996,16254 Clyde Gallagher Park,QA +ABC_44,Marlon Gladstone,25/03/1999,39314 Shopko Terrace,MOBILE +ABC_45,Queenie Pennicott,25/06/1988,5576 Arizona Trail,WEB +ABC_46,Oriana Mathews,2/10/1984,9170 High Crossing Hill,QA +ABC_47,Baldwin Palmar,23/05/1985,936 Bashford Avenue,SYSTEM +ABC_48,Livvy Sessuns,12/10/1982,88 Shasta Hill,WEB +ABC_49,Hadrian Mitchiner,19/09/1997,19 Scoville Junction,WEB +ABC_50,Phillie Dunbavin,20/11/1983,5290 Bonner Crossing,WEB +ABC_51,Nat Tomasini,17/12/1980,23458 Acker Street,WEB +ABC_52,Sharai Arnaud,2/11/1985,354 Darwin Place,ADMIN +ABC_53,Flint Haxbie,4/1/1980,97 Oakridge Alley,WEB +ABC_54,Sharlene Darnbrook,30/09/1985,5514 Maple Plaza,ADMIN +ABC_55,Hilliard Mortel,15/12/1995,61238 Johnson Pass,WEB +ABC_56,Tad Swallwell,31/05/1986,21 Hansons Lane,WEB +ABC_57,Teresita Po,11/6/1988,491 Westerfield Parkway,WEB +ABC_58,Monroe Ilymanov,29/12/1989,48532 Heath Lane,MOBILE +ABC_59,Carlina O'Hartnedy,23/01/1987,46 Summit Court,ADMIN +ABC_60,Kenny Boness,14/07/1998,2479 Hovde Parkway,SYSTEM +ABC_61,Jocelyn Cardus,9/7/1981,14879 Namekagon Street,SYSTEM +ABC_62,Andrus Waby,13/12/1999,00190 Washington Center,SYSTEM +ABC_63,Garret Delgaty,12/6/1994,04646 Helena Place,MOBILE +ABC_64,Starlene Sinnocke,22/06/1990,43151 Bay Circle,QA +ABC_65,Hermy Ravilus,27/05/1989,8 East Parkway,SYSTEM +ABC_66,Gabbie Hunsworth,30/03/1984,260 Ridgeway Pass,ADMIN +ABC_67,Faustina Lownes,18/12/1998,86 Graedel Terrace,ADMIN +ABC_68,Federica Kropp,16/07/1983,8 Melody Drive,QA +ABC_69,George Ammer,4/6/1983,0864 Logan Avenue,QA +ABC_70,Keen Antonelli,29/07/1986,48125 Mosinee Hill,SYSTEM +ABC_71,Raffaello Dain,23/07/1991,6 Laurel Point,ADMIN +ABC_72,Fanny Gathercole,27/11/1995,521 Michigan Street,QA +ABC_73,Isadore Stowers,3/12/1991,58 Village Green Point,MOBILE +ABC_74,Merrick Sugden,25/05/1991,19 Rockefeller Parkway,SYSTEM +ABC_75,Blondell Drepp,1/2/1988,498 Northport Hill,ADMIN +ABC_76,Oliviero Sheen,3/5/1985,4476 Northland Terrace,WEB +ABC_77,Marilin Crennell,10/10/1992,45 Gale Hill,WEB +ABC_78,Elva Holwell,4/11/1988,13 Nova Way,QA +ABC_79,Loria Reggio,17/11/1984,3559 Shopko Crossing,QA +ABC_80,Udale Teas,4/11/1980,9 Clyde Gallagher Center,QA +ABC_81,Betty Ibbeson,2/8/1993,39 Swallow Plaza,SYSTEM +ABC_82,Lodovico Lanfere,7/7/1992,5 Holmberg Point,QA +ABC_83,Sunny Carruth,28/05/1985,60 Orin Court,SYSTEM +ABC_84,Timmie Kinrade,21/11/1993,2 Pleasure Terrace,SYSTEM +ABC_85,Lucky Chese,22/10/1989,3 Tennessee Drive,SYSTEM +ABC_86,Keefer Garside,22/10/1984,662 Eliot Circle,SYSTEM +ABC_87,Yuma Cholomin,25/04/1987,1 Northridge Point,QA +ABC_88,Tirrell Romao,2/9/1981,6 Warner Crossing,WEB +ABC_89,Caresse Robillard,30/12/1982,0216 Hermina Road,MOBILE +ABC_90,Peder Chichgar,24/01/1990,144 Memorial Parkway,QA +ABC_91,Jemima Jachimiak,1/7/1987,1478 Kingsford Trail,MOBILE +ABC_92,Madel Summers,9/12/1991,1 Forest Road,MOBILE +ABC_93,Phelia O'Connel,12/2/1980,9420 Londonderry Avenue,ADMIN +ABC_94,Salvidor Mandre,22/02/1990,6 Redwing Plaza,MOBILE +ABC_95,Uri Eads,3/6/1989,0 Meadow Valley Road,SYSTEM +ABC_96,Stella Traher,28/04/1993,412 Eggendart Terrace,WEB +ABC_97,Lenci Teece,27/12/1981,6682 Springview Way,MOBILE +ABC_98,Birgit Boni,6/10/1993,879 Packers Hill,MOBILE +ABC_99,Georgi Spark,9/8/1984,61 Larry Alley,WEB +ABC_100,Donaugh Adlem,6/3/1996,42 Marquette Crossing,MOBILE +ABC_101,Barry Blaylock,2/4/1986,89 Montana Way,QA +ABC_102,Avictor Cornilli,2/7/1998,2 Oakridge Terrace,QA +ABC_103,Jerrie Tidcombe,11/9/1984,390 Melody Alley,QA +ABC_104,Ollie Kew,7/8/1993,94 Jay Plaza,ADMIN +ABC_105,Tierney Petrazzi,3/4/1987,047 Scofield Park,MOBILE +ABC_106,Carmella Pittway,10/3/1989,03 Kensington Avenue,WEB +ABC_107,Ros Besse,8/8/1982,1 Scott Avenue,WEB +ABC_108,Rubina Heinschke,22/08/1997,41521 American Terrace,MOBILE +ABC_109,Willetta Bosden,27/08/1982,0946 Petterle Park,ADMIN +ABC_110,Francene Croutear,11/7/1988,969 Glacier Hill Avenue,SYSTEM +ABC_111,Idell Huygens,27/10/1995,6498 Daystar Center,SYSTEM +ABC_112,Freeman Lackham,8/9/1992,0 Corben Center,WEB +ABC_113,Tatiana Seebright,11/3/1996,02845 Donald Circle,WEB +ABC_114,Keir Himpson,13/01/1986,6143 Columbus Park,SYSTEM +ABC_115,Euphemia Habbergham,6/7/1995,218 Harper Point,QA +ABC_116,Mallissa Cuardall,26/11/1986,9 Orin Place,SYSTEM +ABC_117,Padraic Vargas,21/12/1981,07 Emmet Parkway,WEB +ABC_118,Kristan Nelsen,28/08/1998,22 Lien Parkway,SYSTEM +ABC_119,Wadsworth Ceschini,12/1/1997,5 Porter Trail,MOBILE +ABC_120,Tull Bang,19/12/1986,47979 Russell Way,ADMIN +ABC_121,Charlean MacArthur,28/09/1985,3340 Blaine Center,MOBILE +ABC_122,Alta Tapp,29/01/1994,2 Judy Drive,MOBILE +ABC_123,Drugi La Grange,9/2/1996,5289 Anzinger Avenue,WEB +ABC_124,Dayle Cheke,27/11/1981,8172 Sutteridge Plaza,QA +ABC_125,Joell Hargrove,24/08/1980,217 Reinke Drive,WEB +ABC_126,Mei Deinhardt,13/09/1980,726 Lakewood Gardens Place,WEB +ABC_127,Sherlock Burtonwood,22/09/1999,45468 Blackbird Terrace,ADMIN +ABC_128,Felecia Tante,27/10/1997,6840 Bayside Hill,WEB +ABC_129,Afton Chatband,12/11/1999,7578 Lerdahl Crossing,ADMIN +ABC_130,Benito Kaye,12/6/1985,57741 Heffernan Park,ADMIN +ABC_131,Teriann Dimitrie,10/7/1999,00 Morrow Drive,QA +ABC_132,Bea Barnaby,12/1/1982,6190 Birchwood Parkway,MOBILE +ABC_133,Phoebe MacCaffery,13/09/1988,35 Monica Way,ADMIN +ABC_134,Maria Frow,12/4/1994,4 Sugar Parkway,MOBILE +ABC_135,Kimmi Whoston,30/04/1986,246 Bluestem Way,SYSTEM +ABC_136,Cassie Tisun,10/1/1994,74 Mendota Circle,WEB +ABC_137,Kaleb Mattsson,25/10/1987,2 Thackeray Road,WEB +ABC_138,Patsy Wiffill,15/07/1993,356 Myrtle Terrace,ADMIN +ABC_139,Alejandrina Durrell,18/09/1985,7210 Michigan Plaza,QA +ABC_140,Lew Miliffe,3/9/1995,2 Hoffman Crossing,MOBILE +ABC_141,Becca Labarre,24/09/1998,37 Sunnyside Alley,MOBILE +ABC_142,Willard MacCumeskey,1/6/1997,25 Dorton Parkway,SYSTEM +ABC_143,Gonzales Antoniutti,4/12/1997,56 Erie Point,WEB +ABC_144,Christabel Szabo,15/06/1980,48593 Dottie Junction,QA +ABC_145,Eva Walford,27/09/1997,0 Luster Avenue,WEB +ABC_146,Zahara Guidone,18/12/1984,7608 Dexter Park,QA +ABC_147,Toddy Fero,30/06/1981,0 Hovde Alley,SYSTEM +ABC_148,Geri Newall,22/09/1989,7442 Killdeer Hill,SYSTEM +ABC_149,Minnnie McNelly,1/8/1994,8442 Sycamore Pass,WEB +ABC_150,Spencer Oxford,7/7/1992,7 Debs Court,QA +ABC_151,Thedric Zeale,27/03/1989,44646 5th Parkway,SYSTEM +ABC_152,Ada Dykas,24/01/1987,13214 Spenser Parkway,QA +ABC_153,Cobby Cumberland,15/12/1996,4483 Arrowood Center,WEB +ABC_154,Ardelis Mallinder,23/03/1986,4772 Stephen Parkway,ADMIN +ABC_155,Kesley Caddell,23/03/1989,80436 Lukken Trail,QA +ABC_156,Viv Peaurt,12/3/1985,0 Eastwood Alley,SYSTEM +ABC_157,Winny Stopps,22/07/1983,7 Paget Avenue,QA +ABC_158,Faunie Briers,23/06/1990,92 Roth Terrace,ADMIN +ABC_159,Tilly Prester,12/12/1990,3 2nd Avenue,QA +ABC_160,Aldon Kunze,18/07/1981,65780 La Follette Junction,MOBILE +ABC_161,Mikey Mongain,12/11/1990,1 Kingsford Center,SYSTEM +ABC_162,Randolf Nowill,16/11/1986,8 Bayside Center,QA +ABC_163,Lotty Guyonneau,21/06/1994,8917 Mariners Cove Way,SYSTEM +ABC_164,Geri Mattusevich,30/07/1986,9 Blue Bill Park Parkway,WEB +ABC_165,Gretna Ling,17/04/1996,0081 Village Green Center,QA +ABC_166,Godart Joron,16/08/1996,09 Arapahoe Avenue,SYSTEM +ABC_167,Ulberto Shorrock,27/12/1994,7 Sutteridge Pass,SYSTEM +ABC_168,Mollie Buller,11/2/1983,388 Buell Street,WEB +ABC_169,Almeria MacBarron,27/12/1982,327 Tomscot Center,MOBILE +ABC_170,Rafferty Epsley,28/01/1985,47541 Crescent Oaks Place,QA +ABC_171,Rossie Julyan,27/02/1981,22805 Tennessee Place,QA +ABC_172,Alta Darnody,13/11/1980,0 Bashford Street,QA +ABC_173,Shaun Clitherow,12/10/1986,51660 Troy Avenue,MOBILE +ABC_174,Tessie Stockton,24/03/1994,69672 Canary Center,WEB +ABC_175,Kori Naisey,5/3/1998,03 Kenwood Plaza,QA +ABC_176,Enriqueta Shannon,27/10/1985,9488 Sachtjen Alley,WEB +ABC_177,Marina Rawcliffe,26/09/1985,6160 Anzinger Place,QA +ABC_178,Lesley Fawson,3/3/1989,488 Di Loreto Alley,QA +ABC_179,Krishna Smale,9/4/1984,74188 Kings Drive,SYSTEM +ABC_180,Sharia O'Harney,11/8/1988,97194 New Castle Lane,SYSTEM +ABC_181,Lynnet Cleft,10/5/1989,003 Red Cloud Drive,QA +ABC_182,Laughton Blakeslee,7/6/1995,56 Ohio Alley,WEB +ABC_183,Junia Kirkbride,27/09/1985,5153 Everett Circle,QA +ABC_184,Carmen O'Quin,22/07/1993,03 Crowley Road,SYSTEM +ABC_185,Sloane Childers,25/09/1986,1648 Tennyson Park,SYSTEM +ABC_186,Billye Gullivan,29/09/1999,969 Truax Lane,MOBILE +ABC_187,Tedman Rubee,24/02/1985,3 Anthes Center,WEB +ABC_188,Nannie Barry,16/10/1980,8 Nevada Hill,SYSTEM +ABC_189,Hanson Rosier,8/6/1992,452 Myrtle Center,MOBILE +ABC_190,Roma Longbottom,17/08/1989,9531 Nancy Road,WEB +ABC_191,Darlleen Boulton,17/10/1985,8 Hermina Pass,QA +ABC_192,Emmett Elbourn,31/08/1990,74211 Derek Drive,WEB +ABC_193,Isak Sloey,14/09/1982,71 Westport Park,SYSTEM +ABC_194,Parke Yorkston,22/08/1997,09 Hauk Circle,SYSTEM +ABC_195,Raye Griniov,15/05/1984,8 Warrior Way,WEB +ABC_196,Shana Staite,9/12/1987,7 Talisman Junction,SYSTEM +ABC_197,Vinnie Richardson,15/06/1998,8260 Summer Ridge Road,MOBILE +ABC_198,Cristina Elford,22/07/1998,1 Kings Center,QA +ABC_199,Siward Jellyman,16/10/1993,9 Ridge Oak Drive,ADMIN +ABC_200,Fidel Chapier,23/05/1997,3573 Vermont Hill,QA +ABC_201,Kathryne Rapsey,30/12/1984,55755 Birchwood Place,SYSTEM +ABC_202,Bendite Reichert,1/10/1993,3 Delladonna Way,WEB +ABC_203,Jarvis Sclater,2/8/1980,27478 Commercial Center,ADMIN +ABC_204,Donella Swatton,16/11/1993,586 Packers Trail,QA +ABC_205,Regan Mortell,6/11/1981,743 Westridge Lane,QA +ABC_206,Orbadiah Garlette,18/12/1997,10397 Elka Circle,MOBILE +ABC_207,Amanda Bisley,31/07/1988,882 Union Terrace,SYSTEM +ABC_208,Leoline Swatheridge,28/10/1989,7977 Petterle Place,WEB +ABC_209,Cathleen Rabson,26/05/1981,0045 Dryden Avenue,WEB +ABC_210,Pieter Routh,7/8/1986,7661 Barby Center,WEB +ABC_211,Northrup Shallo,3/4/1989,951 Old Shore Avenue,QA +ABC_212,Waite Swann,14/04/1999,95747 Alpine Junction,MOBILE +ABC_213,Mabel Kemwall,9/6/1997,3944 Lakewood Gardens Park,WEB +ABC_214,Darell Thombleson,17/03/1998,22 Valley Edge Junction,QA +ABC_215,Chas Crayker,25/05/1985,9 Sauthoff Trail,SYSTEM +ABC_216,Wilbert Douty,20/10/1986,068 Schmedeman Lane,WEB +ABC_217,Jilly Meharry,21/01/1997,14733 Oak Valley Park,WEB +ABC_218,Carrie Caldwall,26/01/1981,4427 Kenwood Road,WEB +ABC_219,Lauraine Shanahan,31/10/1991,44 Carey Place,QA +ABC_220,Wallis Epperson,5/7/1983,5 Northview Way,SYSTEM +ABC_221,Curcio Heamus,11/3/1983,4939 Crescent Oaks Court,WEB +ABC_222,Arlie Jellett,31/07/1984,85 Truax Place,ADMIN +ABC_223,Cletis Blackley,27/03/1998,3295 Helena Parkway,QA +ABC_224,Halimeda Spurryer,26/04/1988,08956 Di Loreto Avenue,MOBILE +ABC_225,Giralda Christol,18/01/1988,12 Lakewood Gardens Point,WEB +ABC_226,Haskell Hance,14/12/1985,87 Cambridge Pass,WEB +ABC_227,Florentia Borrie,26/08/1984,70914 Arkansas Avenue,WEB +ABC_228,Yalonda Jandl,14/11/1988,09101 Dahle Park,SYSTEM +ABC_229,Shara Blaasch,6/8/1991,94 Westridge Lane,WEB +ABC_230,Desiri Jobern,10/9/1998,335 Sommers Court,MOBILE +ABC_231,Giraldo Hansel,11/6/1985,09 Ludington Pass,QA +ABC_232,Marlane Blundin,14/03/1989,080 Hagan Road,MOBILE +ABC_233,Sioux Alfonsini,19/03/1981,9398 Towne Way,WEB +ABC_234,Winny Mulvey,12/3/1994,7 Susan Lane,SYSTEM +ABC_235,Zechariah Rosenfeld,9/7/1997,3 Stuart Junction,WEB +ABC_236,Dorotea Milburne,10/6/1997,8792 Calypso Court,MOBILE +ABC_237,Brita Cranham,16/12/1997,6352 Forest Alley,QA +ABC_238,Aylmar Ennion,29/05/1994,48375 Village Green Crossing,MOBILE +ABC_239,Farand Featherstonhalgh,22/02/1992,5 Veith Hill,WEB +ABC_240,Mohammed McGeagh,8/2/1994,84971 Graedel Place,SYSTEM +ABC_241,Suzie Probert,27/01/1987,59988 Southridge Crossing,QA +ABC_242,Toby De Giorgio,15/11/1989,056 East Parkway,SYSTEM +ABC_243,Donny Brea,29/08/1980,4 Miller Way,QA +ABC_244,Max Limerick,6/5/1999,833 Aberg Lane,MOBILE +ABC_245,Edita Giorgietto,29/12/1994,24 Pearson Alley,MOBILE +ABC_246,Sterne Summerfield,3/4/1999,259 Badeau Circle,QA +ABC_247,Fannie Garrud,24/06/1989,3294 Coleman Park,SYSTEM +ABC_248,Dinah Cockland,26/05/1989,98 Ryan Street,MOBILE +ABC_249,Aurelea Pittock,29/08/1994,53 Mariners Cove Street,WEB +ABC_250,Tana Rash,12/10/1986,81 Ramsey Circle,SYSTEM +ABC_251,Jammie Karpenya,6/10/1999,98018 Shopko Plaza,WEB +ABC_252,Clim Rashleigh,27/07/1999,68 Farwell Way,MOBILE +ABC_253,Lola Itzkovich,28/10/1989,49 Fuller Avenue,ADMIN +ABC_254,Aurie Mazin,18/08/1997,3143 Forest Dale Pass,MOBILE +ABC_255,Ingar Cooch,8/9/1997,738 Hudson Street,MOBILE +ABC_256,Conroy Condict,20/11/1988,5162 Ridgeview Trail,SYSTEM +ABC_257,Corny Jones,19/02/1987,865 Dexter Road,SYSTEM +ABC_258,Atlante Clougher,14/02/1989,6 Redwing Point,WEB +ABC_259,Betteann Malt,9/4/1986,12657 Kinsman Alley,QA +ABC_260,Christopher Hyndman,9/12/1990,58 Wayridge Trail,WEB +ABC_261,Alane Feakins,29/01/1983,58 Chinook Trail,WEB +ABC_262,Delphine Lancastle,13/02/1982,065 Melvin Trail,WEB +ABC_263,Valdemar Staves,14/05/1980,5 Fordem Center,WEB +ABC_264,Olympie Clacey,4/11/1987,081 Sunnyside Alley,MOBILE +ABC_265,Valencia Inker,29/11/1981,40 Johnson Place,QA +ABC_266,Cris Urwen,30/01/1983,96 Esch Crossing,ADMIN +ABC_267,Ulrike Kupec,22/10/1992,857 Kropf Point,MOBILE +ABC_268,Tabitha Attwater,10/4/1982,17 Crowley Parkway,WEB +ABC_269,Michelina Winsor,10/7/1992,96081 Loeprich Alley,ADMIN +ABC_270,Wash Kleinhaus,9/5/1987,523 School Alley,SYSTEM +ABC_271,Annetta Bachelor,11/11/1989,3205 7th Place,QA +ABC_272,Teddie Berard,23/09/1989,886 Forest Dale Terrace,MOBILE +ABC_273,Nicholle McLanaghan,3/4/1996,21 Butternut Way,SYSTEM +ABC_274,Bidget Forde,1/8/1984,63124 Melody Street,QA +ABC_275,Giraud Hapke,15/06/1991,1 Onsgard Crossing,WEB +ABC_276,Tremain Tonna,17/06/1991,9 Meadow Vale Plaza,MOBILE +ABC_277,Adela Andriuzzi,8/2/1987,3511 Graceland Alley,SYSTEM +ABC_278,Arden Elener,22/12/1985,018 Gulseth Crossing,WEB +ABC_279,Viki Purslow,9/7/1993,37 Almo Place,WEB +ABC_280,Camilla O'Dea,18/07/1996,6104 Stang Way,MOBILE +ABC_281,Rose Follett,10/10/1994,9 Forest Run Alley,ADMIN +ABC_282,Pavlov Evett,5/10/1982,27787 Lakewood Gardens Parkway,MOBILE +ABC_283,Aube Carlow,2/2/1988,0 Kensington Hill,ADMIN +ABC_284,Gates Willatt,17/05/1995,929 Comanche Lane,SYSTEM +ABC_285,Ossie Balsdone,24/02/1996,4 Bultman Center,WEB +ABC_286,Shannen Macari,21/10/1990,068 Russell Avenue,SYSTEM +ABC_287,Riobard Strowthers,11/1/1987,314 Oxford Parkway,SYSTEM +ABC_288,Kacy Infantino,16/07/1986,4391 Northwestern Pass,WEB +ABC_289,Orelle Behne,25/11/1998,963 Spaight Circle,SYSTEM +ABC_290,Edin Aseef,17/03/1985,5080 Acker Road,SYSTEM +ABC_291,Jackqueline Helmke,11/3/1998,6754 Lien Road,MOBILE +ABC_292,Shurwood Heasman,15/10/1981,799 Sunnyside Court,SYSTEM +ABC_293,Jeannie Coppo,6/1/1989,6642 Moulton Place,SYSTEM +ABC_294,Brant Syrett,14/06/1994,74 Scofield Lane,WEB +ABC_295,Carlee Gilkison,16/05/1986,01335 Macpherson Avenue,QA +ABC_296,Meriel Schowenburg,24/10/1993,8 Kenwood Parkway,SYSTEM +ABC_297,Klarrisa Simionato,11/12/1982,2414 Waywood Circle,SYSTEM +ABC_298,Inge Ginnally,25/04/1996,71327 Fairview Parkway,WEB +ABC_299,Jonell Harbard,2/10/1994,17 Lake View Point,WEB +ABC_300,Farrel Garrit,6/10/1994,2680 Warner Pass,WEB +ABC_301,Nikola Crutchley,17/05/1984,8 Cherokee Trail,QA +ABC_302,Lucina Hurren,6/11/1993,3 Duke Street,QA +ABC_303,Dulce Whifen,6/5/1999,96916 Jackson Terrace,ADMIN +ABC_304,Clementine Brandon,22/07/1983,0 Shopko Street,MOBILE +ABC_305,Florenza Stiell,30/08/1984,4 Schiller Lane,ADMIN +ABC_306,Aurelie Vaune,5/6/1995,4458 Del Mar Road,WEB +ABC_307,Baryram Merchant,22/11/1988,300 Summerview Drive,SYSTEM +ABC_308,Abeu Vallis,10/3/1989,14009 International Parkway,QA +ABC_309,Tobias Baynon,10/3/1988,671 Karstens Circle,SYSTEM +ABC_310,Vivienne Baszniak,29/07/1980,633 Columbus Road,SYSTEM +ABC_311,Myriam Kilbane,3/6/1992,03593 Derek Circle,ADMIN +ABC_312,Coop Clemendet,19/02/1988,37 Moland Trail,WEB +ABC_313,Ginnifer Harbert,17/04/1996,776 Meadow Valley Alley,QA +ABC_314,Alidia Terram,4/3/1992,9 Pine View Way,QA +ABC_315,Corinna Mewes,21/06/1989,78 Ridge Oak Alley,MOBILE +ABC_316,Tedmund Van der Daal,14/02/1994,22 Burning Wood Point,SYSTEM +ABC_317,Carlie Brompton,5/2/1991,98 Daystar Parkway,ADMIN +ABC_318,Roshelle Mathivet,13/12/1998,3118 Loftsgordon Pass,SYSTEM +ABC_319,Althea Spieght,20/04/1986,542 Kropf Junction,SYSTEM +ABC_320,Mattie Gadeaux,10/9/1995,0185 Park Meadow Junction,WEB +ABC_321,Vassily Garland,14/05/1983,23465 Summerview Road,ADMIN +ABC_322,Susann Hug,5/1/1983,30650 Packers Street,WEB +ABC_323,Margaux Kilfoyle,19/07/1994,1 Moland Terrace,MOBILE +ABC_324,Justinian Gillean,14/10/1999,92910 3rd Street,QA +ABC_325,Carey Sizland,14/11/1993,57627 Mariners Cove Drive,SYSTEM +ABC_326,Corrianne Clearie,28/09/1995,7 Bluejay Road,WEB +ABC_327,Sid Dowda,23/11/1986,73148 Mccormick Drive,QA +ABC_328,Terrie Milburne,3/5/1992,28035 Buhler Way,WEB +ABC_329,Meridel Craighill,23/06/1981,4590 Amoth Park,QA +ABC_330,Carolyne Mussettini,26/10/1982,8 Artisan Hill,WEB +ABC_331,Ricardo Pollard,11/1/1986,2887 Luster Hill,SYSTEM +ABC_332,Sergeant Dalbey,31/07/1998,557 Warbler Circle,SYSTEM +ABC_333,Coletta Dietz,7/8/1994,38 Pepper Wood Court,WEB +ABC_334,Amberly Capelow,23/11/1999,2 Hagan Parkway,SYSTEM +ABC_335,Korney Slader,28/01/1988,9460 Sunnyside Drive,WEB +ABC_336,Gerick O'Cosgra,20/04/1995,8005 Mitchell Park,WEB +ABC_337,Mendel De Moreno,13/04/1994,159 Badeau Junction,WEB +ABC_338,Joeann Eadon,18/04/1998,24 International Drive,WEB +ABC_339,Rooney Ochterlonie,15/12/1983,2 Magdeline Crossing,WEB +ABC_340,Jamie Woodall,30/03/1982,175 Artisan Street,QA +ABC_341,Aldus Foulkes,8/4/1990,523 Homewood Lane,WEB +ABC_342,Prince Macias,21/11/1986,60 Sauthoff Street,QA +ABC_343,Leticia Quest,22/03/1995,62301 Hansons Trail,QA +ABC_344,Curran Pipworth,22/05/1981,603 American Junction,MOBILE +ABC_345,Teador Brazer,12/9/1995,66 Corscot Pass,QA +ABC_346,Angel Dunbobin,1/11/1986,169 Rowland Lane,MOBILE +ABC_347,Berny Fessler,22/05/1987,3883 Hoepker Drive,QA +ABC_348,Maye Iiannoni,26/04/1993,6 Main Junction,SYSTEM +ABC_349,Killian Sciacovelli,11/10/1983,20 Burning Wood Center,MOBILE +ABC_350,Andie Dowd,3/4/1998,34 Burning Wood Crossing,WEB +ABC_351,Ida Eastam,2/2/1992,5 Forest Hill,WEB +ABC_352,Carlynne Rivard,25/02/1995,8 Delaware Plaza,MOBILE +ABC_353,Pollyanna Coleborn,7/10/1995,153 Dottie Alley,WEB +ABC_354,Maxim Clow,8/8/1998,1314 Mcbride Terrace,MOBILE +ABC_355,Katrine Sedcole,11/2/1984,448 Manley Drive,QA +ABC_356,Clemmy Pegler,23/11/1980,7 Pankratz Crossing,MOBILE +ABC_357,Mirelle de Zamora,13/09/1984,36082 Eliot Way,SYSTEM +ABC_358,Dode Croan,8/5/1982,97129 Esker Park,WEB +ABC_359,Dorene Lemmen,27/06/1988,91327 Iowa Alley,MOBILE +ABC_360,Inness Comford,28/08/1991,5 Morning Street,MOBILE +ABC_361,Lind Pickavant,26/06/1982,07748 Fairfield Street,WEB +ABC_362,Glen Sutherden,9/8/1999,77 Nelson Alley,ADMIN +ABC_363,Melonie Eykelbosch,16/09/1983,693 Cherokee Drive,ADMIN +ABC_364,Harriet Eltringham,26/06/1987,954 David Lane,WEB +ABC_365,Craggie Yablsley,4/6/1993,74 Dennis Terrace,WEB +ABC_366,Cletus Deport,22/04/1994,59 Eastlawn Park,QA +ABC_367,Noni Bagniuk,25/08/1986,5 Riverside Road,QA +ABC_368,Chico Christou,9/8/1986,1 Manufacturers Junction,ADMIN +ABC_369,Catharina Tremlett,21/11/1999,96 Scofield Center,SYSTEM +ABC_370,Violetta Bernhard,11/10/1983,29794 Algoma Street,WEB +ABC_371,Brit Matiebe,2/2/1981,24858 Burrows Circle,MOBILE +ABC_372,Goddard Annon,26/05/1988,1856 Coolidge Avenue,WEB +ABC_373,Hermione Coles,21/08/1997,557 Graceland Avenue,QA +ABC_374,Karna Croy,1/2/1997,8155 Anthes Street,WEB +ABC_375,Valentina Mozzini,23/12/1995,852 Chinook Street,WEB +ABC_376,Eileen Dutnell,3/11/1985,85956 Kinsman Point,WEB +ABC_377,Jenny Martinot,3/6/1983,55459 Londonderry Street,WEB +ABC_378,Danella Stenbridge,12/4/1992,56 Crest Line Point,SYSTEM +ABC_379,Delinda Harriagn,22/11/1988,41020 Bobwhite Junction,WEB +ABC_380,Bealle Otter,25/08/1980,39 Waywood Way,MOBILE +ABC_381,Matthieu Beiderbeck,3/9/1980,2519 Tony Drive,WEB +ABC_382,Janean Slaten,16/11/1998,059 Northridge Trail,ADMIN +ABC_383,Fidela Spain-Gower,30/10/1997,45979 Old Gate Crossing,SYSTEM +ABC_384,Candace Gubbins,22/11/1984,833 Onsgard Trail,SYSTEM +ABC_385,Marcela Renfrew,9/1/1991,6 Miller Hill,MOBILE +ABC_386,Brooke Crinkley,11/1/1991,37 Division Terrace,SYSTEM +ABC_387,Paco Crunden,21/02/1992,1 Logan Road,MOBILE +ABC_388,Rosemarie Colquite,10/10/1995,1 Glacier Hill Avenue,WEB +ABC_389,Betteanne Pigne,2/11/1986,95642 Hayes Street,WEB +ABC_390,Toinette Sandeman,10/6/1989,1910 Spenser Plaza,WEB +ABC_391,Gan Furmage,29/04/1982,01 Knutson Alley,MOBILE +ABC_392,Symon Toft,27/08/1993,11 Forest Run Alley,QA +ABC_393,Ulises Stack,14/11/1982,6 Moulton Circle,WEB +ABC_394,Carlynne Tart,5/12/1981,48376 Dwight Crossing,SYSTEM +ABC_395,Ashli Muggeridge,10/10/1980,533 Glendale Way,WEB +ABC_396,Lauryn Appleton,26/11/1989,34 Pine View Center,MOBILE +ABC_397,Chelsea Lilleman,30/08/1989,579 Holmberg Alley,MOBILE +ABC_398,Ora Daniely,12/10/1982,3 Canary Circle,WEB +ABC_399,Jerrold Goundrill,31/01/1982,348 Northfield Crossing,MOBILE +ABC_400,Hannie Zannetti,5/12/1988,84136 Arrowood Road,MOBILE +ABC_401,Lief Eberlein,22/07/1991,36748 Oxford Crossing,SYSTEM +ABC_402,Ania Smeal,6/9/1988,7376 Bartelt Court,SYSTEM +ABC_403,Redford Whipple,1/12/1988,854 La Follette Place,WEB +ABC_404,Sayres Towey,19/01/1985,90138 Vahlen Center,SYSTEM +ABC_405,Nial Bjerkan,1/9/1999,3 Chive Center,MOBILE +ABC_406,Blancha Eckley,31/12/1994,264 Bobwhite Point,MOBILE +ABC_407,Filberto Goulborn,22/05/1988,27 Continental Place,QA +ABC_408,Magdalene Dawdry,5/2/1994,51321 Susan Alley,WEB +ABC_409,Torre Murphy,13/10/1984,9 8th Place,SYSTEM +ABC_410,Lawton Ubank,29/12/1995,9362 Ridgeway Alley,QA +ABC_411,Olav Clay,10/8/1989,78 Cardinal Trail,WEB +ABC_412,Sigrid Waterstone,1/11/1995,1 Chive Avenue,QA +ABC_413,Rupert Curragh,31/08/1990,810 Graceland Center,WEB +ABC_414,Phaedra McGurgan,15/12/1992,86536 Mesta Center,SYSTEM +ABC_415,Imelda Davidow,28/11/1997,001 Judy Street,ADMIN +ABC_416,Ddene Stores,3/9/1981,185 Commercial Hill,ADMIN +ABC_417,Karalee McRitchie,14/02/1986,797 Starling Parkway,QA +ABC_418,Tucker Sarle,27/03/1981,9 Holmberg Drive,SYSTEM +ABC_419,Danell Hawkwood,30/06/1981,2 Anderson Plaza,QA +ABC_420,Misti Coldbathe,27/04/1997,7 Weeping Birch Trail,ADMIN +ABC_421,Robinia Barnsdall,17/11/1988,01987 Scott Parkway,MOBILE +ABC_422,Gussi Hampson,9/10/1983,267 Milwaukee Street,SYSTEM +ABC_423,Dasha Elph,10/12/1995,9934 Waywood Drive,ADMIN +ABC_424,Vernice Beushaw,4/9/1992,0 Independence Avenue,ADMIN +ABC_425,Keefer Christofol,3/4/1991,43416 Lerdahl Way,WEB +ABC_426,Eleanora Jehu,18/11/1980,6 Northridge Plaza,MOBILE +ABC_427,Corbet Sline,6/2/1987,640 Rieder Road,WEB +ABC_428,Lenard Tunnick,2/11/1988,7616 Harper Crossing,SYSTEM +ABC_429,Ingar Sealey,6/7/1983,872 Hazelcrest Avenue,QA +ABC_430,Jillene Plewright,6/9/1981,13 Anthes Place,QA +ABC_431,Neddie Merit,14/07/1997,733 Blue Bill Park Park,QA +ABC_432,Jayme Lowman,6/12/1986,149 Gateway Plaza,SYSTEM +ABC_433,Rooney Lacheze,28/03/1982,2970 Shasta Alley,ADMIN +ABC_434,Mae Capini,23/03/1999,15713 Division Hill,QA +ABC_435,Daniele Gowland,10/9/1988,494 Dapin Way,MOBILE +ABC_436,Murvyn Haseley,19/09/1987,00562 Russell Street,SYSTEM +ABC_437,Barry Adelsberg,17/08/1999,07 Summer Ridge Pass,WEB +ABC_438,Michelina Niccolls,8/5/1989,52 Warner Terrace,ADMIN +ABC_439,Rozanna Stennett,23/10/1984,20 Lakeland Street,SYSTEM +ABC_440,Francklin Rymour,6/1/1984,90 Elgar Terrace,WEB +ABC_441,Carlynne Tebbs,17/12/1990,5 Reinke Avenue,ADMIN +ABC_442,Sebastien O'Donoghue,7/4/1986,18398 Reindahl Junction,ADMIN +ABC_443,Monah Hollingby,14/11/1998,2489 Schiller Center,ADMIN +ABC_444,Helga Simmon,7/12/1985,8876 Burning Wood Terrace,MOBILE +ABC_445,Kerr Labden,20/03/1988,6250 Center Point,MOBILE +ABC_446,Jedd Boykett,19/11/1986,089 Stoughton Terrace,ADMIN +ABC_447,Demetris Patton,17/05/1999,8753 Hoepker Trail,QA +ABC_448,Gabriello Ick,29/12/1985,69702 Sutteridge Crossing,WEB +ABC_449,Alethea Burbage,29/07/1992,4813 Fulton Junction,WEB +ABC_450,Cristian MacAlister,15/02/1994,8268 Cordelia Junction,MOBILE +ABC_451,Karee Blagburn,13/07/1994,69 Loeprich Avenue,WEB +ABC_452,Birch Sizzey,22/02/1985,05914 Warrior Trail,WEB +ABC_453,Erwin Silcox,14/05/1998,1398 Vernon Point,QA +ABC_454,Antonin Lundberg,5/1/1983,26 Loomis Pass,QA +ABC_455,Rodi Jays,4/3/1980,7680 2nd Drive,MOBILE +ABC_456,Agretha Savory,17/02/1993,13 Linden Junction,QA +ABC_457,Lilas Binton,15/08/1999,15 Morningstar Lane,WEB +ABC_458,Chrisy Prevost,5/5/1993,84 Autumn Leaf Place,WEB +ABC_459,Jennica Gilogly,30/12/1995,6674 Mesta Court,MOBILE +ABC_460,Tades Pibsworth,7/3/1988,594 Maywood Crossing,QA +ABC_461,Bobbette Fantone,27/06/1986,44 Shopko Alley,WEB +ABC_462,Marice Harmson,14/05/1996,920 Muir Plaza,WEB +ABC_463,Karen Omrod,20/07/1980,9 Old Shore Drive,SYSTEM +ABC_464,Rafaela Rubes,15/11/1986,3821 Messerschmidt Junction,SYSTEM +ABC_465,Federica Duffyn,4/9/1996,25 Laurel Trail,MOBILE +ABC_466,Tades Novis,27/12/1984,5327 Luster Plaza,MOBILE +ABC_467,Tanney Aldam,31/01/1993,05021 Reindahl Park,MOBILE +ABC_468,Gareth Desquesnes,24/01/1986,10070 Melby Park,WEB +ABC_469,Marcelline McGrill,25/11/1980,67263 Sommers Court,SYSTEM +ABC_470,Elmore Ridout,7/9/1991,15 Northridge Way,WEB +ABC_471,Erich Riepel,22/03/1980,8 Gale Crossing,MOBILE +ABC_472,Ardyce O'Doherty,26/11/1993,63 Village Green Court,ADMIN +ABC_473,Roger Whitby,11/8/1998,6 Almo Trail,SYSTEM +ABC_474,Lotta Cannon,24/06/1993,5 North Junction,WEB +ABC_475,Jdavie De Vere,1/4/1988,984 Buhler Point,ADMIN +ABC_476,Olly Rugiero,11/2/1996,7461 Brickson Park Plaza,ADMIN +ABC_477,Ardella Kubelka,31/07/1982,1480 Heath Pass,WEB +ABC_478,Haleigh Devil,12/9/1987,0657 Eastlawn Hill,QA +ABC_479,Germana Baudrey,19/11/1981,027 Clove Circle,WEB +ABC_480,Marigold Klaas,19/05/1992,6823 Glacier Hill Place,WEB +ABC_481,Judith Sedgeman,22/04/1998,84757 Brentwood Plaza,QA +ABC_482,Talbot Lundie,28/07/1993,6710 Amoth Street,MOBILE +ABC_483,Suzette Balfour,14/08/1987,2458 Express Court,QA +ABC_484,Ernie Attryde,7/7/1983,8 Heffernan Parkway,SYSTEM +ABC_485,Jerrine Fearick,12/11/1998,90 Schlimgen Drive,WEB +ABC_486,Farlay Reilly,16/11/1997,41031 Hintze Plaza,ADMIN +ABC_487,Benjamin Yakebovitch,22/12/1989,438 Corscot Road,MOBILE +ABC_488,Alanna Burnand,20/02/1980,421 Clyde Gallagher Junction,ADMIN +ABC_489,Nixie Pedlar,14/12/1993,47 Birchwood Junction,SYSTEM +ABC_490,Grover Spatari,20/11/1988,913 Knutson Hill,MOBILE +ABC_491,Bartie Pelosi,30/06/1980,718 Dapin Place,SYSTEM +ABC_492,Micky Murricanes,16/02/1989,664 Cardinal Circle,MOBILE +ABC_493,Imojean Bisley,22/07/1995,73 Graedel Circle,MOBILE +ABC_494,Kari Verry,20/01/1985,991 Center Street,WEB +ABC_495,Alta Morfett,23/02/1981,2 Prairieview Pass,WEB +ABC_496,Talyah Bragg,16/04/1998,833 Bunker Hill Parkway,ADMIN +ABC_497,Maridel Allnatt,3/3/1993,5419 Hoard Park,SYSTEM +ABC_498,Konstanze Dicken,29/11/1994,788 Gulseth Street,WEB +ABC_499,Lyssa Poxon,14/11/1998,19 Kim Pass,WEB +ABC_500,Berkie Beynkn,25/12/1985,69 Springs Plaza,SYSTEM +ABC_501,Cesaro Busse,25/04/1983,905 Chive Trail,WEB +ABC_502,Blondell Tyce,30/09/1990,98246 Buena Vista Crossing,MOBILE +ABC_503,North Morrieson,7/4/1981,726 Heffernan Street,WEB +ABC_504,Tove Courtman,28/05/1995,52571 Fulton Park,ADMIN +ABC_505,Rhianon Tomney,7/11/1983,86 Petterle Terrace,SYSTEM +ABC_506,Row Chaney,28/04/1983,9 Express Hill,QA +ABC_507,Garvy Varnam,29/08/1988,17 Norway Maple Place,WEB +ABC_508,Alfonso Joynson,11/5/1980,85 West Alley,ADMIN +ABC_509,Hakim Peter,26/07/1991,96 Merry Point,QA +ABC_510,Felike Craydon,8/7/1987,6573 Mccormick Street,MOBILE +ABC_511,Arabella Winslade,30/05/1996,4481 Waubesa Drive,MOBILE +ABC_512,Kristos Hargess,26/04/1981,3 Mallory Hill,SYSTEM +ABC_513,Sigismond Cafe,23/11/1992,75406 Tennessee Road,WEB +ABC_514,Lewie Millbank,5/9/1991,2034 Florence Road,MOBILE +ABC_515,Dani Haet,11/5/1988,43 Buhler Circle,WEB +ABC_516,Normand Squelch,14/12/1996,78 Parkside Parkway,MOBILE +ABC_517,Gilberto Bettinson,11/11/1989,51497 Tennessee Lane,WEB +ABC_518,Waring Pineaux,16/01/1994,964 Florence Parkway,ADMIN +ABC_519,Jennee McCready,24/01/1986,1406 Parkside Terrace,QA +ABC_520,Franciskus Hapgood,8/2/1988,0 Starling Parkway,MOBILE +ABC_521,Emilie Ruprecht,14/12/1983,6984 Canary Lane,ADMIN +ABC_522,Kerby Poynter,28/04/1980,10234 Troy Terrace,SYSTEM +ABC_523,Natka Yurevich,5/7/1994,4 Chive Center,QA +ABC_524,Miner Eustis,19/08/1994,5 Springview Avenue,WEB +ABC_525,Sacha Aiskovitch,26/10/1983,9808 4th Junction,QA +ABC_526,Bealle Stait,25/07/1992,7010 Summit Hill,MOBILE +ABC_527,Virgil Denyer,11/6/1994,94 Graceland Street,WEB +ABC_528,Orland Beals,31/05/1996,9 Barnett Crossing,SYSTEM +ABC_529,Ken Mesnard,7/12/1998,58317 Nevada Plaza,SYSTEM +ABC_530,Justine Pringour,3/4/1989,8 Sycamore Way,WEB +ABC_531,Whit Carette,30/05/1990,8961 Carioca Park,WEB +ABC_532,Pierson Redmond,5/10/1995,0452 Bartillon Park,SYSTEM +ABC_533,Rebbecca Mohring,1/2/1985,303 Cordelia Circle,QA +ABC_534,Colleen Harrald,21/06/1981,79828 Blackbird Lane,ADMIN +ABC_535,Thatcher Daunter,23/05/1993,8163 Independence Plaza,MOBILE +ABC_536,Kimberlee Letford,15/03/1983,48 1st Way,WEB +ABC_537,Holt Eskrigg,28/03/1989,14364 Orin Lane,WEB +ABC_538,Grier LeEstut,30/10/1993,582 Mifflin Circle,SYSTEM +ABC_539,Meagan Manz,11/4/1990,47 Arkansas Street,ADMIN +ABC_540,Athene Batiste,6/2/1983,0 Melby Drive,SYSTEM +ABC_541,Jeannette Jest,31/03/1980,81 Shoshone Parkway,MOBILE +ABC_542,Moreen Paulou,27/06/1986,751 Brickson Park Pass,SYSTEM +ABC_543,Tiebold Benitti,5/4/1998,4876 Autumn Leaf Park,MOBILE +ABC_544,Claudetta Kennion,7/4/1988,818 Butternut Way,MOBILE +ABC_545,Genna Babonau,25/04/1980,84655 Oneill Point,SYSTEM +ABC_546,Theo Gavagan,17/09/1986,055 Glacier Hill Drive,SYSTEM +ABC_547,Clovis Saffell,8/9/1995,1272 Shopko Crossing,WEB +ABC_548,Sandie Aymeric,10/1/1983,0821 Briar Crest Alley,WEB +ABC_549,Daniella Cutridge,19/04/1982,32 Village Terrace,SYSTEM +ABC_550,Verge Infantino,9/8/1987,9635 Becker Pass,MOBILE +ABC_551,Mick O'Dee,8/4/1985,43322 Manitowish Street,MOBILE +ABC_552,Chic Noore,14/09/1991,378 Forest Run Pass,QA +ABC_553,Burton Gerretsen,29/01/1993,76266 Oakridge Pass,SYSTEM +ABC_554,Keene Pethick,15/11/1985,2 Sutherland Pass,MOBILE +ABC_555,Jakie Dragonette,23/08/1990,314 Huxley Court,WEB +ABC_556,Alexio Swalowe,19/06/1985,63 Buena Vista Alley,MOBILE +ABC_557,Dav Radcliffe,15/08/1985,172 Columbus Court,MOBILE +ABC_558,Amalee Lisamore,13/11/1985,6 Shoshone Drive,MOBILE +ABC_559,Alameda Mees,11/11/1980,41084 Bowman Pass,ADMIN +ABC_560,Adolph Albrighton,27/03/1996,589 Jana Alley,QA +ABC_561,Packston Dubique,24/04/1992,24 Bartillon Drive,SYSTEM +ABC_562,Scarlet Rewan,12/4/1987,9515 Waywood Street,SYSTEM +ABC_563,Mel Follows,13/09/1985,7 Muir Lane,MOBILE +ABC_564,Eachelle Ghioni,24/07/1997,7 Reindahl Junction,MOBILE +ABC_565,Hoyt Twinterman,25/01/1998,075 Brickson Park Way,SYSTEM +ABC_566,Danie Tanguy,14/10/1985,13841 Spenser Terrace,QA +ABC_567,Bing Castenda,12/9/1984,66 Karstens Parkway,QA +ABC_568,Gardener Heineking,20/03/1990,437 Westport Park,MOBILE +ABC_569,Elsy Paten,30/03/1995,40067 Linden Pass,ADMIN +ABC_570,Mariele Geertz,19/10/1980,568 Michigan Place,ADMIN +ABC_571,Jordana Litton,2/7/1980,4575 Badeau Way,WEB +ABC_572,Ina Nowaczyk,27/04/1985,8 Bellgrove Alley,QA +ABC_573,Bing Yurivtsev,28/11/1984,251 Bunting Crossing,MOBILE +ABC_574,Silvio MacCarter,6/9/1993,9769 Grim Trail,QA +ABC_575,Virgilio Skowcraft,6/10/1989,88 Wayridge Road,MOBILE +ABC_576,Leticia Bisgrove,12/1/1986,35 Grim Drive,QA +ABC_577,Beckie Shervil,8/8/1996,2 Bay Center,MOBILE +ABC_578,Jerri Golding,19/07/1983,3551 Forest Run Hill,SYSTEM +ABC_579,Eryn Kennsley,24/09/1995,17527 Stoughton Alley,QA +ABC_580,Erika Schachter,15/07/1996,7481 Holy Cross Road,WEB +ABC_581,Farra Bendare,25/01/1991,18 Arrowood Plaza,WEB +ABC_582,Carney MacMeeking,6/8/1992,39036 Village Way,MOBILE +ABC_583,Harri Coughlan,11/1/1998,3 Coleman Hill,QA +ABC_584,Efren Ximenez,11/1/1987,9160 Little Fleur Plaza,QA +ABC_585,Christian Hedworth,11/1/1987,8579 Raven Junction,MOBILE +ABC_586,Loella Ping,24/11/1980,028 Hoepker Street,SYSTEM +ABC_587,Nydia Zannolli,31/01/1996,03004 Washington Point,QA +ABC_588,Gipsy Henri,8/5/1992,311 Bobwhite Court,QA +ABC_589,Shawnee Freathy,20/10/1982,48 Chinook Lane,QA +ABC_590,Damita Markussen,1/5/1984,50451 Spaight Place,SYSTEM +ABC_591,Maribel Spalls,6/6/1985,6564 7th Crossing,WEB +ABC_592,Albertine Rosoni,5/11/1985,434 Jackson Pass,MOBILE +ABC_593,Rancell McCreery,9/6/1983,268 Merrick Center,WEB +ABC_594,Giles Cubitt,7/5/1986,19195 Independence Avenue,MOBILE +ABC_595,Jule Goatman,13/05/1983,22 Mifflin Lane,WEB +ABC_596,Saudra Birdsall,8/10/1982,7 Doe Crossing Plaza,QA +ABC_597,Lotte Gresser,21/08/1989,24174 Browning Junction,SYSTEM +ABC_598,Glen Quenell,7/11/1983,82 Victoria Pass,SYSTEM +ABC_599,Shepard Langhorn,30/01/1992,385 7th Park,WEB +ABC_600,Jamill Prosser,29/08/1998,10510 Ruskin Trail,MOBILE +ABC_601,Errol Bovingdon,7/1/1983,06 Ilene Circle,ADMIN +ABC_602,Fernanda Fairholme,2/5/1991,9709 Mallard Plaza,SYSTEM +ABC_603,Bartolomeo D'Adamo,3/12/1984,917 La Follette Junction,MOBILE +ABC_604,Iona Ludovici,3/5/1987,1 Lake View Junction,MOBILE +ABC_605,Chlo Lovelace,13/09/1984,39874 Hollow Ridge Trail,ADMIN +ABC_606,Mariquilla Tavener,4/6/1992,63 Kings Place,ADMIN +ABC_607,Ursuline Doull,30/07/1986,7 Armistice Hill,WEB +ABC_608,Barbey O'Brallaghan,1/5/1985,26 Pond Crossing,ADMIN +ABC_609,Ola Sheere,19/01/1998,9678 Towne Court,WEB +ABC_610,Dareen Rattrie,18/02/1990,55307 Kedzie Point,MOBILE +ABC_611,Randolf Jimson,3/10/1980,4 Commercial Lane,MOBILE +ABC_612,Fidela Greger,13/06/1996,538 Longview Avenue,SYSTEM +ABC_613,Eugenie Hrinchenko,19/06/1981,1 Morrow Crossing,WEB +ABC_614,Olly Hickisson,20/01/1991,450 Village Parkway,MOBILE +ABC_615,Daryl Boar,26/10/1980,7555 Debs Way,WEB +ABC_616,Franklyn Shovelton,4/7/1983,35964 Mitchell Place,ADMIN +ABC_617,Whitby Samwaye,28/06/1989,207 Moose Lane,WEB +ABC_618,Randy Gueny,19/08/1994,2 Elgar Center,WEB +ABC_619,Stanislaw Moyers,24/05/1983,97743 Lakewood Gardens Junction,SYSTEM +ABC_620,Bethany Bache,19/04/1982,54 Buhler Point,WEB +ABC_621,Ailis Piche,28/02/1991,7 Moulton Lane,WEB +ABC_622,Fedora Whybray,8/1/1996,8 Oxford Place,ADMIN +ABC_623,Jaquenetta Sandal,26/07/1980,88295 Elmside Pass,MOBILE +ABC_624,Sadie Mylechreest,14/11/1985,65155 Tennessee Crossing,WEB +ABC_625,Tara Greer,24/06/1991,83 Vahlen Avenue,WEB +ABC_626,Lilah Curnok,14/09/1994,3 Welch Street,QA +ABC_627,Eben Birkby,26/05/1991,5 Mariners Cove Pass,MOBILE +ABC_628,Colby McCaffrey,6/8/1998,44047 Oak Alley,ADMIN +ABC_629,Raine McTrustey,5/3/1981,90826 Cherokee Hill,QA +ABC_630,Dalli Heisler,11/10/1981,317 Del Mar Place,QA +ABC_631,Juliane Tucsell,21/06/1998,7 Reindahl Park,SYSTEM +ABC_632,Nicolai Badger,27/10/1990,73 Merrick Road,MOBILE +ABC_633,Case Harrisson,12/4/1991,55790 Killdeer Terrace,WEB +ABC_634,Sibylle Peerless,21/09/1990,6 Rusk Drive,ADMIN +ABC_635,Fredrika Simione,7/3/1988,908 Little Fleur Avenue,WEB +ABC_636,Maximilian Ackrill,27/10/1987,55858 Sullivan Parkway,MOBILE +ABC_637,Humbert Heyns,15/05/1999,5 Ryan Alley,MOBILE +ABC_638,Ferdinand Waddell,24/02/1989,548 Logan Park,ADMIN +ABC_639,Deloria Yeliashev,6/6/1996,44196 Green Parkway,ADMIN +ABC_640,Cissiee Lias,17/05/1983,435 Aberg Pass,MOBILE +ABC_641,Ricard Mandrake,14/07/1992,60507 Continental Circle,MOBILE +ABC_642,Esra Antusch,10/4/1994,01296 Lakeland Center,WEB +ABC_643,Coleman Guppy,30/12/1986,54 Bluestem Circle,QA +ABC_644,Gorden Tebbut,28/04/1997,54709 Blackbird Lane,QA +ABC_645,Jolynn Tailby,8/5/1997,57 Namekagon Point,WEB +ABC_646,Lona Soden,26/08/1988,7931 Spohn Terrace,WEB +ABC_647,De Rudeyeard,18/07/1995,666 Morningstar Terrace,SYSTEM +ABC_648,Eimile Kindread,9/9/1993,72908 Main Street,WEB +ABC_649,Minette Marsie,28/05/1987,131 Northport Avenue,WEB +ABC_650,Robinson Belt,30/11/1991,0 Debs Avenue,QA +ABC_651,Maison O'Finan,7/3/1990,01689 Hallows Pass,ADMIN +ABC_652,Borg Meuse,2/8/1993,40 International Alley,SYSTEM +ABC_653,Seka Colborn,14/06/1983,1 Anderson Crossing,WEB +ABC_654,Alicia Penhalurick,1/2/1984,4 New Castle Lane,ADMIN +ABC_655,Raine Couser,22/07/1992,489 Thompson Way,ADMIN +ABC_656,Coretta Glencorse,30/09/1992,58 Claremont Road,ADMIN +ABC_657,Kaila Roderighi,29/01/1999,9745 Lien Terrace,SYSTEM +ABC_658,Dari Diddams,4/9/1998,1 Ridgeview Road,WEB +ABC_659,Ethelred Carrabott,30/07/1982,26 Talmadge Way,ADMIN +ABC_660,Newton Isacsson,26/07/1982,98 Vahlen Place,WEB +ABC_661,Dwayne Garside,31/07/1987,85 Reindahl Alley,QA +ABC_662,Pier Petkens,20/08/1996,968 Melvin Place,WEB +ABC_663,Dacy Walker,7/7/1994,2265 Harper Pass,WEB +ABC_664,Timmie Shotboult,6/5/1995,28183 Barby Plaza,MOBILE +ABC_665,Winnifred Onraet,3/2/1988,282 Maple Road,MOBILE +ABC_666,Dunc Heimes,16/10/1992,30380 Mallory Way,QA +ABC_667,Sandra Till,3/5/1981,35112 Buell Lane,QA +ABC_668,Olga Chattaway,21/05/1994,8527 Mandrake Lane,QA +ABC_669,Oralle Hatwells,11/8/1980,36 Toban Avenue,SYSTEM +ABC_670,Blayne Ovett,3/12/1991,2 Upham Point,ADMIN +ABC_671,Dinah Kissell,14/12/1985,1 Darwin Center,MOBILE +ABC_672,Theresita Mico,17/11/1998,09 Glendale Parkway,MOBILE +ABC_673,Catherine Hebbs,21/05/1988,490 Old Shore Junction,QA +ABC_674,Drusy Micheau,6/6/1996,5450 Ohio Court,QA +ABC_675,Garnet Harlock,28/04/1980,1177 Service Alley,WEB +ABC_676,Sandor Opdenort,8/2/1983,5194 Colorado Trail,WEB +ABC_677,Angelico Galiero,20/09/1995,23108 Brown Street,MOBILE +ABC_678,Welsh Carlisi,25/11/1982,48200 Pepper Wood Alley,MOBILE +ABC_679,Trescha Billyard,16/12/1982,90 Bay Drive,ADMIN +ABC_680,Ivar Meneur,3/5/1993,3 Menomonie Way,WEB +ABC_681,Irene Heinke,14/01/1998,776 Fairview Point,SYSTEM +ABC_682,Derk Dorro,4/12/1988,363 Valley Edge Street,SYSTEM +ABC_683,Jessamine Boorn,22/10/1987,5088 Hintze Junction,QA +ABC_684,Cal Loseke,30/12/1988,71 Tennessee Place,MOBILE +ABC_685,Gwenny Leebetter,19/09/1981,9 Towne Park,WEB +ABC_686,Simonne Winspeare,2/10/1983,80 Scott Alley,MOBILE +ABC_687,Nelly Minter,23/10/1984,406 Loeprich Lane,WEB +ABC_688,Pris Bellhanger,2/10/1980,8148 Michigan Street,WEB +ABC_689,Tammi Mellanby,23/06/1980,6 Hintze Alley,WEB +ABC_690,Lydon Melladew,29/07/1990,81211 Grover Pass,WEB +ABC_691,Lucais Campbell-Dunlop,14/08/1995,0957 Welch Junction,MOBILE +ABC_692,Perle MacNish,19/01/1992,44147 Harbort Lane,SYSTEM +ABC_693,Alphonse Willgrass,8/9/1980,2891 Farmco Way,MOBILE +ABC_694,Revkah Pinner,9/8/1985,0 Farragut Center,QA +ABC_695,Tris Bortolomei,2/11/1991,01256 Troy Hill,WEB +ABC_696,Phip Coronas,20/08/1995,55992 Mcbride Trail,MOBILE +ABC_697,Elberta Friese,16/08/1991,82432 Park Meadow Terrace,QA +ABC_698,Tisha Carver,5/3/1980,60 Schiller Place,SYSTEM +ABC_699,Nadeen Whyteman,20/03/1981,55437 Kim Trail,SYSTEM +ABC_700,Dacia Dominici,3/12/1992,06 Badeau Junction,SYSTEM +ABC_701,Rancell Mewburn,18/06/1982,190 Lerdahl Street,SYSTEM +ABC_702,Maxi Otton,1/4/1991,1 Warner Avenue,QA +ABC_703,Aristotle Nabbs,9/5/1991,286 5th Junction,MOBILE +ABC_704,Elsbeth Schoales,8/2/1986,088 Manley Road,QA +ABC_705,Berri Brewins,25/03/1994,88 Shopko Hill,QA +ABC_706,Reggie Howie,25/06/1996,7335 Northwestern Junction,WEB +ABC_707,Alberik Stangroom,22/01/1982,13 Eagan Street,WEB +ABC_708,Gerrilee O'Halloran,7/9/1983,029 Magdeline Crossing,QA +ABC_709,Yves Foxon,23/05/1995,45 Fulton Avenue,MOBILE +ABC_710,Clementia Yukhnin,17/03/1993,6733 Victoria Pass,QA +ABC_711,Trent Minshull,9/3/1994,87 Morning Point,MOBILE +ABC_712,Obadiah O'Fallone,25/02/1984,35 Service Drive,WEB +ABC_713,Sarita Neissen,23/11/1991,48 Stuart Avenue,MOBILE +ABC_714,Rosie Plews,2/2/1990,0411 Waubesa Way,SYSTEM +ABC_715,Cammy Glanville,6/1/1997,0605 Hayes Pass,WEB +ABC_716,Maxy Bartleman,19/10/1993,1557 1st Court,WEB +ABC_717,Radcliffe Heisham,29/06/1982,9 Fisk Hill,MOBILE +ABC_718,Ritchie De Cristoforo,29/09/1999,3 Derek Place,QA +ABC_719,Conway Lightbowne,18/01/1984,2 Green Ridge Drive,ADMIN +ABC_720,Giraud Casini,11/8/1981,07503 Melby Crossing,QA +ABC_721,Jeth Winson,6/10/1997,4 Truax Terrace,MOBILE +ABC_722,Row Howels,1/12/1995,48860 Scoville Point,WEB +ABC_723,Heinrick Palser,17/09/1999,37570 Swallow Trail,WEB +ABC_724,Dennie Kosiada,1/7/1982,6655 Chive Circle,SYSTEM +ABC_725,Tabbie Edworthie,17/06/1988,40 International Crossing,WEB +ABC_726,Garrick Ridesdale,13/02/1993,610 Stone Corner Lane,WEB +ABC_727,Ethelred Alpine,25/03/1981,28 Brentwood Circle,ADMIN +ABC_728,Curt Bezemer,18/10/1986,70733 American Ash Point,SYSTEM +ABC_729,Henderson Hornung,22/07/1990,86022 Vermont Way,QA +ABC_730,Bobby Fishwick,27/05/1993,569 Jenifer Pass,SYSTEM +ABC_731,Jefferey Dorow,29/01/1991,3905 Jenifer Alley,MOBILE +ABC_732,Gerome O'Doherty,27/12/1990,34 Southridge Lane,SYSTEM +ABC_733,Sayer Baud,22/09/1986,77 Nova Pass,SYSTEM +ABC_734,Paco Handsheart,23/01/1982,205 Fieldstone Trail,SYSTEM +ABC_735,Abbe Wigginton,22/10/1988,6 Sachtjen Park,ADMIN +ABC_736,Paule Denyukhin,17/09/1985,1513 Drewry Road,MOBILE +ABC_737,Cynthea Barette,11/5/1998,4 Elgar Road,ADMIN +ABC_738,Renelle Moulton,10/2/1985,5722 Talmadge Parkway,SYSTEM +ABC_739,Cacilia Whilder,15/07/1999,710 Farragut Street,SYSTEM +ABC_740,Farra Sparey,23/06/1994,9 Bowman Hill,WEB +ABC_741,Austin Treagus,10/10/1996,37 Bay Drive,WEB +ABC_742,Sheff Van Cassel,23/08/1998,6623 Waubesa Court,QA +ABC_743,Tatum Creasey,7/8/1998,66 West Place,QA +ABC_744,Zita Stenner,22/06/1980,4950 Dwight Avenue,WEB +ABC_745,Sheree Durno,26/05/1993,9408 Starling Court,MOBILE +ABC_746,Francesco Upson,18/11/1996,09 Mcbride Hill,WEB +ABC_747,Ruthann Barbera,27/06/1982,1151 Eggendart Road,SYSTEM +ABC_748,Laurena Renforth,2/8/1998,3667 Prentice Alley,WEB +ABC_749,Rosy Jakov,24/09/1989,63971 Eggendart Plaza,QA +ABC_750,Dina Vann,21/11/1987,08 Carpenter Avenue,WEB +ABC_751,Lars Karpol,21/02/1982,8 Paget Trail,SYSTEM +ABC_752,Marylinda Acey,5/4/1995,1116 Grasskamp Road,QA +ABC_753,Logan Fitton,23/10/1985,30362 Summit Park,QA +ABC_754,Fredia Lynas,29/08/1983,40 Lakewood Terrace,MOBILE +ABC_755,Arny Degenhardt,18/12/1995,1830 Dovetail Trail,WEB +ABC_756,Rodrique Adriani,27/02/1994,8459 Gale Park,SYSTEM +ABC_757,Hubey Gunter,28/05/1986,0665 Pankratz Avenue,WEB +ABC_758,Annemarie Bartlomiejczyk,30/05/1987,9 Huxley Center,MOBILE +ABC_759,Carly Osan,5/11/1986,7 Norway Maple Court,QA +ABC_760,Irvin Congrave,18/09/1995,340 Sachtjen Junction,WEB +ABC_761,Hobey Heersema,25/12/1992,30987 Eagle Crest Trail,MOBILE +ABC_762,Jana Pettie,1/4/1991,694 Ohio Hill,SYSTEM +ABC_763,Dewain Probate,28/07/1995,71873 Oakridge Drive,SYSTEM +ABC_764,Charlene Lamberth,22/04/1986,96041 Summit Drive,WEB +ABC_765,Jacques Doubleday,5/2/1987,787 Parkside Road,SYSTEM +ABC_766,Nick Eadmead,29/05/1986,1774 Buhler Plaza,MOBILE +ABC_767,Korrie Markl,11/2/1982,168 Union Crossing,MOBILE +ABC_768,Nickey O'Crigane,11/9/1988,25836 Ridge Oak Place,ADMIN +ABC_769,Ali Hulmes,22/07/1999,79888 Stone Corner Circle,MOBILE +ABC_770,Brandy Gittins,30/05/1995,6607 Magdeline Way,QA +ABC_771,Egor MacMenamie,15/03/1986,8 Little Fleur Parkway,WEB +ABC_772,Wynne Pinkie,8/8/1996,20048 Autumn Leaf Junction,ADMIN +ABC_773,Wilfrid Gibbs,30/01/1998,55 North Park,WEB +ABC_774,Jyoti Findlay,26/04/1986,3 Maple Road,SYSTEM +ABC_775,Marita Blumfield,25/07/1982,913 Center Parkway,ADMIN +ABC_776,Boniface Peron,27/12/1994,49929 Carberry Parkway,WEB +ABC_777,Gianina Pepon,30/03/1982,7142 Declaration Parkway,SYSTEM +ABC_778,Lanae Challener,13/09/1982,37089 Green Point,ADMIN +ABC_779,Ricard Witherspoon,8/3/1999,23475 Sunnyside Crossing,MOBILE +ABC_780,Mattheus Folan,8/5/1995,8 Northview Drive,WEB +ABC_781,Nariko Diggons,19/05/1987,1 Prairieview Parkway,WEB +ABC_782,Aylmar Borthwick,25/01/1985,69460 Washington Center,MOBILE +ABC_783,Dedra Wormstone,20/06/1991,0309 Erie Crossing,WEB +ABC_784,Andrew Ketchaside,9/12/1985,0071 Canary Trail,SYSTEM +ABC_785,Ody Siggens,1/8/1999,098 Dixon Place,ADMIN +ABC_786,Hephzibah Steers,15/08/1989,50279 Rigney Terrace,SYSTEM +ABC_787,Nikkie Trimbey,25/08/1993,08 Hayes Terrace,MOBILE +ABC_788,Ketti Matthiesen,7/5/1982,69 Sunnyside Trail,QA +ABC_789,Clayborn Starrs,3/1/1990,32340 Schurz Center,MOBILE +ABC_790,Goldie Crow,12/7/1989,18 Waubesa Court,ADMIN +ABC_791,Ronnica Legion,4/7/1986,526 Vahlen Pass,QA +ABC_792,Miran Lesmonde,23/08/1981,3512 Stephen Junction,MOBILE +ABC_793,Franzen Kaygill,7/2/1981,13033 Hovde Way,WEB +ABC_794,Ron Hughs,23/08/1983,27 Columbus Point,ADMIN +ABC_795,Rozanne Grabham,29/06/1996,7 Chinook Lane,WEB +ABC_796,Konrad Seiller,6/12/1983,949 Rigney Avenue,WEB +ABC_797,Salomon Abramovitz,18/12/1991,36 Caliangt Crossing,ADMIN +ABC_798,Englebert Keunemann,3/4/1983,03 Pine View Court,ADMIN +ABC_799,Gherardo Rootes,17/06/1986,10 Algoma Center,SYSTEM +ABC_800,Onofredo Butte,10/3/1991,1 Johnson Place,ADMIN +ABC_801,Gaynor Dominici,27/09/1996,2 Debra Park,WEB +ABC_802,Henka Bodle,28/04/1995,911 Hanover Avenue,SYSTEM +ABC_803,Gus Bricknall,17/11/1988,34 Carberry Alley,MOBILE +ABC_804,Wilona Cawkill,4/6/1988,75 Pepper Wood Pass,SYSTEM +ABC_805,Lorry Sings,29/10/1992,7399 Rutledge Trail,QA +ABC_806,Maryl Childerley,19/03/1992,84 Russell Alley,MOBILE +ABC_807,Rochester Ruler,22/11/1999,0 Bowman Street,WEB +ABC_808,Albrecht Tarbath,8/6/1994,31 4th Trail,ADMIN +ABC_809,Shari West,13/03/1995,2987 Pankratz Drive,QA +ABC_810,Andriette Havoc,23/11/1994,148 Havey Point,WEB +ABC_811,Garek Gallehawk,12/1/1994,3 Corry Pass,MOBILE +ABC_812,Reuven Yeend,23/03/1989,7286 Oak Valley Center,WEB +ABC_813,Ashely Wyllcocks,11/11/1989,757 Melrose Plaza,MOBILE +ABC_814,Hilton Levay,10/8/1995,003 Hanson Plaza,ADMIN +ABC_815,Hatti Alberts,22/11/1994,7499 Artisan Circle,QA +ABC_816,Gilberto McKern,21/05/1990,0879 Old Gate Point,WEB +ABC_817,Gaby Eccles,3/10/1991,80 Mosinee Hill,MOBILE +ABC_818,Calypso Physick,13/09/1995,49242 Anthes Way,MOBILE +ABC_819,Iosep Rathe,30/11/1990,31420 Cody Alley,MOBILE +ABC_820,Berri Yurov,11/3/1993,83746 Ridgeway Crossing,MOBILE +ABC_821,Whittaker Georgescu,24/01/1992,60646 Fairview Street,QA +ABC_822,Korella Sygroves,16/09/1999,7 Lakeland Point,QA +ABC_823,Walker Ibeson,15/02/1998,0414 Northwestern Terrace,WEB +ABC_824,Hunter Puckett,6/8/1998,77 Center Park,ADMIN +ABC_825,Silvia Ilem,20/07/1993,127 Ridgeview Road,QA +ABC_826,Fiorenze Whyler,16/04/1981,6 Fieldstone Pass,MOBILE +ABC_827,Rheba MacCarter,27/08/1985,295 Golf View Center,SYSTEM +ABC_828,Nikkie McAw,22/10/1995,214 Hooker Pass,MOBILE +ABC_829,Marybelle Loren,24/12/1990,104 Gina Crossing,QA +ABC_830,Samuel Lippiello,29/11/1982,274 Melvin Plaza,SYSTEM +ABC_831,Jodi De Castri,4/6/1993,61497 Sunbrook Center,MOBILE +ABC_832,Gannon Sherston,22/02/1992,80064 Scott Avenue,MOBILE +ABC_833,Gilbertina Bew,16/12/1998,48 Elka Junction,SYSTEM +ABC_834,Ciro Blumfield,16/07/1999,91134 Dwight Point,MOBILE +ABC_835,Leone MacKaig,25/05/1983,7646 Victoria Crossing,QA +ABC_836,Georgi Brownhall,15/01/1997,1 Claremont Terrace,WEB +ABC_837,Arda Fathers,29/10/1983,25132 Grover Park,QA +ABC_838,Justino Shawdforth,19/01/1980,6 Summerview Way,SYSTEM +ABC_839,Foss Walter,17/01/1986,5 Pine View Plaza,QA +ABC_840,Noella Toms,24/06/1999,6 Brown Alley,QA +ABC_841,Hew Chalker,21/04/1989,78 Prairie Rose Trail,WEB +ABC_842,Tudor Braybrooks,5/8/1981,48 Banding Lane,WEB +ABC_843,Brande Vickers,22/06/1996,66425 Fulton Pass,ADMIN +ABC_844,Gratiana Reuben,1/1/1986,1 Grayhawk Park,MOBILE +ABC_845,Emanuele Whatling,23/08/1995,33 Sloan Parkway,SYSTEM +ABC_846,Margalo Canadas,22/06/1984,19 Milwaukee Junction,WEB +ABC_847,Tamra Berthon,11/6/1991,0 Swallow Plaza,ADMIN +ABC_848,Harlene Cowoppe,27/11/1995,978 Amoth Court,WEB +ABC_849,Bill Betterton,30/08/1996,0599 Stoughton Road,MOBILE +ABC_850,Jamima Aimson,13/08/1983,9678 Bartillon Hill,WEB +ABC_851,Annice McMurraya,24/11/1994,3 Buell Trail,QA +ABC_852,Dominga Martignoni,13/08/1992,8330 3rd Alley,MOBILE +ABC_853,Yetta Cracker,5/3/1985,294 Katie Trail,MOBILE +ABC_854,Stephi Crosen,15/06/1982,0 Saint Paul Point,QA +ABC_855,Janene Dinsell,30/07/1997,75657 Fairview Point,WEB +ABC_856,Welby Maidment,10/5/1980,0089 Kennedy Road,WEB +ABC_857,Sande Garnar,15/07/1993,6833 Nova Parkway,WEB +ABC_858,Jacquie Scaddon,11/5/1993,50 Clemons Street,QA +ABC_859,Christi Tomkys,6/5/1983,0507 Saint Paul Drive,ADMIN +ABC_860,Bernete Pretswell,3/11/1981,283 Johnson Park,MOBILE +ABC_861,Ailee Blues,29/04/1985,06 Mayer Park,MOBILE +ABC_862,Fee Breffit,4/3/1981,64 Hanson Trail,QA +ABC_863,Tedmund Castello,11/3/1983,5 Longview Terrace,WEB +ABC_864,Cozmo Martijn,20/09/1992,5 Lighthouse Bay Circle,WEB +ABC_865,Sherlocke Ridesdale,4/12/1995,866 American Ash Court,SYSTEM +ABC_866,Kile Kirkam,26/02/1997,751 Eagan Alley,SYSTEM +ABC_867,Mic Baldam,20/11/1982,40 Cody Center,MOBILE +ABC_868,Lesya Cairney,20/05/1981,750 Onsgard Junction,SYSTEM +ABC_869,Cathi Phipps,4/9/1991,68 Emmet Park,ADMIN +ABC_870,Gillian Mackelworth,5/2/1980,553 Huxley Way,SYSTEM +ABC_871,Russ Quayle,1/8/1987,75155 Forest Road,MOBILE +ABC_872,Solomon Kirkbright,12/11/1983,77 Lakewood Lane,QA +ABC_873,Chrystal Lownds,14/12/1996,56708 Green Place,QA +ABC_874,Jock Le Blond,6/4/1988,26041 Harbort Road,MOBILE +ABC_875,Frederich Rother,7/1/1981,614 Calypso Terrace,WEB +ABC_876,Miner MacMickan,11/4/1985,78 Colorado Junction,SYSTEM +ABC_877,Mallory Goley,29/06/1990,20131 Westend Center,SYSTEM +ABC_878,Christa Zanini,30/10/1989,7034 Thackeray Trail,WEB +ABC_879,Konstantin Olander,1/2/1996,37070 Macpherson Center,SYSTEM +ABC_880,Ayn Reasce,20/07/1981,2734 Gulseth Plaza,WEB +ABC_881,Hebert Cescot,28/05/1999,3 Monica Avenue,WEB +ABC_882,Hercule Francescuzzi,18/08/1983,98 Di Loreto Road,QA +ABC_883,Barris Edmead,25/05/1995,0083 Union Road,WEB +ABC_884,Lorianna Stoltz,24/08/1982,0200 Butterfield Lane,WEB +ABC_885,Tabbi Borland,10/6/1991,844 Bowman Street,WEB +ABC_886,Dusty Priestley,6/3/1999,0 Thierer Point,WEB +ABC_887,Wildon Yurenev,19/09/1994,029 Birchwood Avenue,ADMIN +ABC_888,Luther Kittles,20/08/1998,420 Burrows Lane,SYSTEM +ABC_889,Kalinda Byne,11/5/1998,56467 Magdeline Avenue,WEB +ABC_890,Hendrick Bean,20/08/1984,1 Namekagon Park,WEB +ABC_891,Yanaton Bayly,5/7/1994,166 Wayridge Hill,WEB +ABC_892,Elfrieda Wadly,17/06/1981,1937 Ruskin Parkway,SYSTEM +ABC_893,Otes Balderstone,14/05/1982,383 Golf Court,ADMIN +ABC_894,Amye Woolvett,1/8/1992,33825 Fuller Terrace,QA +ABC_895,Giacomo Candwell,9/11/1985,33 Shopko Junction,WEB +ABC_896,Prudy Fridd,16/06/1984,961 Michigan Circle,SYSTEM +ABC_897,Ferris Waterstone,18/05/1997,8054 Upham Trail,WEB +ABC_898,Glenn Faas,14/04/1996,214 Messerschmidt Street,MOBILE +ABC_899,Lyssa Bridgewood,13/09/1997,88 Memorial Road,SYSTEM +ABC_900,Rikki O'Hanley,29/09/1999,3 Lighthouse Bay Junction,SYSTEM +ABC_901,Wilton Camplen,21/09/1982,5866 Cordelia Crossing,MOBILE +ABC_902,Garret Skillings,20/01/1993,53972 Center Avenue,QA +ABC_903,Glenn Colomb,6/2/1998,76704 Westerfield Drive,WEB +ABC_904,Cammie Fancet,29/09/1997,4763 Mallard Drive,SYSTEM +ABC_905,Mindy Worling,20/10/1990,0 Thierer Crossing,ADMIN +ABC_906,Kit Maureen,9/11/1990,9 Cascade Circle,SYSTEM +ABC_907,Hurlee John,28/04/1983,12164 Stang Point,QA +ABC_908,Vanna Nancekivell,8/9/1993,7 Londonderry Way,WEB +ABC_909,Lewie Tattam,31/08/1995,73659 Macpherson Drive,WEB +ABC_910,Celestyna Giabuzzi,12/6/1991,8 Buhler Trail,SYSTEM +ABC_911,Billy Loades,21/12/1983,79 Butterfield Hill,WEB +ABC_912,Kay Fidgett,15/07/1991,22414 Debs Road,ADMIN +ABC_913,Alexina Moukes,30/04/1986,0887 Jenna Drive,QA +ABC_914,Andrus Cafferky,14/06/1990,240 Erie Terrace,MOBILE +ABC_915,Alida Franzke,19/04/1994,167 Moland Road,ADMIN +ABC_916,Amalita Scohier,13/10/1990,065 Dawn Center,ADMIN +ABC_917,Bearnard Monksfield,8/12/1980,84357 Scoville Plaza,WEB +ABC_918,Tonnie Clemenceau,1/1/1992,74404 Lukken Circle,ADMIN +ABC_919,Phoebe Tuer,9/8/1990,24130 Becker Court,MOBILE +ABC_920,Erastus Scyone,28/11/1990,7 Alpine Pass,MOBILE +ABC_921,Casey Lankham,12/12/1986,1052 Dawn Hill,WEB +ABC_922,Gladys Lacy,19/03/1993,515 Oakridge Street,WEB +ABC_923,Yale Oda,3/10/1992,35604 Northwestern Center,SYSTEM +ABC_924,Ellery Parkyn,19/05/1991,70477 Esch Point,WEB +ABC_925,Olia Killiner,9/1/1998,6535 Porter Court,WEB +ABC_926,Lavinie O'Hederscoll,30/10/1998,23914 Clyde Gallagher Drive,WEB +ABC_927,Ryley Shales,17/12/1984,6 Amoth Terrace,SYSTEM +ABC_928,Greggory Lindblom,15/07/1982,86363 Monument Trail,ADMIN +ABC_929,Will Emmer,21/10/1988,5488 Merry Trail,MOBILE +ABC_930,Linoel Paddeley,1/4/1987,00 Maple Place,ADMIN +ABC_931,Ryan Hassett,2/2/1989,42 Autumn Leaf Trail,MOBILE +ABC_932,Mayor Derby,7/8/1999,19 Barby Crossing,QA +ABC_933,Dorian Grimolbie,4/3/1983,01 New Castle Center,SYSTEM +ABC_934,Lauren Harradence,4/7/1991,7365 Towne Crossing,SYSTEM +ABC_935,Mar Lamburn,15/11/1993,8458 Meadow Vale Park,WEB +ABC_936,Padraig Fittes,12/4/1980,43713 Charing Cross Trail,SYSTEM +ABC_937,Felipe Buckle,17/12/1996,7 Killdeer Trail,MOBILE +ABC_938,Teressa Durgan,12/3/1997,8 Dawn Terrace,MOBILE +ABC_939,Winnifred Chelsom,20/04/1991,984 Stone Corner Parkway,QA +ABC_940,Xaviera Whal,6/4/1987,678 Sommers Place,ADMIN +ABC_941,Jobina Foulstone,1/4/1980,141 Hallows Way,WEB +ABC_942,Dannye Dreghorn,29/09/1995,08 Roth Place,SYSTEM +ABC_943,Wilbert Tuft,13/08/1982,0646 Badeau Center,WEB +ABC_944,Abbott Agiolfinger,3/10/1982,40094 Crescent Oaks Terrace,QA +ABC_945,Ilaire Tremoille,1/3/1990,5 Vermont Terrace,WEB +ABC_946,Pauly Pfaffel,4/1/1991,3988 Truax Junction,MOBILE +ABC_947,Elspeth Nelane,30/11/1993,43 Russell Crossing,ADMIN +ABC_948,Tracie Duckitt,16/07/1993,1302 Dorton Center,SYSTEM +ABC_949,Dennet McCathie,29/10/1985,514 Sherman Alley,WEB +ABC_950,Hogan Fiddiman,14/06/1989,6 Raven Hill,ADMIN +ABC_951,Trev Everix,17/06/1995,65 West Street,WEB +ABC_952,Ag Raiman,25/12/1992,370 Sundown Lane,QA +ABC_953,Janela Symcock,16/04/1996,6671 Mosinee Place,MOBILE +ABC_954,Violante Nitti,19/12/1985,96969 Kenwood Way,WEB +ABC_955,Penelope Brettor,18/08/1987,9 Stephen Circle,WEB +ABC_956,Arliene Ferber,25/12/1985,50 Lien Alley,QA +ABC_957,Tabb Noteyoung,16/02/1990,50 8th Pass,WEB +ABC_958,Alva Blackshaw,11/1/1992,14 Longview Avenue,WEB +ABC_959,Roxanna Jarrold,21/09/1984,69866 Beilfuss Center,WEB +ABC_960,Myca Caroline,20/08/1984,57041 High Crossing Alley,WEB +ABC_961,Larry Maund,31/08/1999,5863 Vera Place,MOBILE +ABC_962,Benedikt Hart,25/07/1993,89913 Springs Parkway,WEB +ABC_963,Neel Moneypenny,27/04/1998,87 Rigney Point,WEB +ABC_964,Chrissy Lightfoot,7/9/1982,3980 Cascade Trail,QA +ABC_965,Kirk Vickors,27/04/1989,63958 Columbus Circle,WEB +ABC_966,Charline Lees,2/11/1992,47628 Oriole Plaza,QA +ABC_967,Dinnie Klemencic,23/02/1981,8731 Arrowood Point,ADMIN +ABC_968,Jordana Gibbe,26/03/1982,5038 Upham Avenue,SYSTEM +ABC_969,Cyrus Ollivier,26/06/1996,48 Banding Lane,SYSTEM +ABC_970,Bryan Batham,12/1/1989,471 Browning Parkway,QA +ABC_971,Tessi Finessy,18/06/1985,233 Colorado Trail,QA +ABC_972,Winn Atchly,6/8/1985,81964 Pierstorff Court,QA +ABC_973,Brandon Thynn,23/08/1999,27453 Sutteridge Point,ADMIN +ABC_974,Dasya Schoenrock,28/08/1991,536 Nevada Junction,MOBILE +ABC_975,Shirlee Poolman,24/04/1997,211 Welch Lane,ADMIN +ABC_976,Thomasin Sedwick,30/03/1996,4389 Superior Hill,QA +ABC_977,Saunder Arrigucci,26/02/1983,71808 Kensington Court,MOBILE +ABC_978,Timmy Paterson,2/1/1992,2380 Fremont Terrace,WEB +ABC_979,Ilaire Beaves,20/06/1993,15423 Artisan Court,WEB +ABC_980,Laetitia Jerrard,15/10/1997,2 Forest Run Center,SYSTEM +ABC_981,Law Drennan,26/11/1990,03 Talmadge Crossing,QA +ABC_982,Kirbie Salliere,18/08/1983,21 Lerdahl Terrace,SYSTEM +ABC_983,Randee Leuren,14/12/1998,722 Schlimgen Drive,SYSTEM +ABC_984,Arabella Postan,18/10/1989,28 Blue Bill Park Crossing,SYSTEM +ABC_985,Winifield Allom,28/02/1993,0 Golf Lane,ADMIN +ABC_986,Victoir Forder,10/8/1984,96144 Macpherson Road,WEB +ABC_987,Trstram Kennington,12/8/1989,4 Crescent Oaks Center,QA +ABC_988,Rodd Flahy,11/12/1984,6 Roth Place,MOBILE +ABC_989,Cherey Tripony,15/12/1998,11574 Dwight Alley,MOBILE +ABC_990,Scotti Pape,31/08/1997,4142 Eggendart Drive,SYSTEM +ABC_991,Si Huleatt,26/04/1998,71 Bellgrove Court,MOBILE +ABC_992,Adele Murkitt,18/04/1990,6782 Declaration Crossing,MOBILE +ABC_993,Revkah Charnock,20/06/1997,475 Rusk Terrace,QA +ABC_994,Tiebold Drinkeld,12/4/1983,74 Hooker Center,QA +ABC_995,Latisha Zuanelli,23/11/1993,21 Michigan Plaza,MOBILE +ABC_996,Rorke Stelfax,6/9/1998,8 Sachtjen Terrace,MOBILE +ABC_997,Ethe Joder,13/04/1984,93 Killdeer Road,MOBILE +ABC_998,Findlay Sprouls,31/01/1994,88 Northwestern Road,MOBILE +ABC_999,Jacquetta Perham,19/06/1990,3201 Parkside Junction,MOBILE +ABC_1000,Sofie Nevitt,14/07/1989,87 Dexter Plaza,SYSTEM +ABC_1001,Mick Theurer,19/12/1990,57010 Morrow Alley,MOBILE +ABC_1002,Peyton Gaskall,1/7/1999,6412 Tennyson Alley,WEB +ABC_1003,Jillie Klaus,8/10/1993,9500 Northland Pass,SYSTEM +ABC_1004,Addi McOwan,7/3/1986,909 Loomis Park,SYSTEM +ABC_1005,Roxine Carnegy,29/09/1981,25136 Lakewood Gardens Pass,MOBILE +ABC_1006,Georg Motton,27/08/1982,093 Hollow Ridge Parkway,SYSTEM +ABC_1007,Angelle Keates,2/7/1990,6517 Butternut Alley,ADMIN +ABC_1008,Juieta Sharpe,14/02/1984,8568 Basil Plaza,MOBILE +ABC_1009,Shamus Rate,18/01/1980,6 East Place,MOBILE +ABC_1010,Kincaid Mellmoth,9/12/1983,7 Evergreen Alley,WEB +ABC_1011,Angelita Titt,10/7/1987,65425 Homewood Alley,MOBILE +ABC_1012,Randene Quipp,22/08/1997,836 Washington Crossing,ADMIN +ABC_1013,Cesaro Jakubovicz,18/12/1986,45090 Nancy Plaza,WEB +ABC_1014,Nan Fitzroy,2/5/1983,93 Morrow Court,WEB +ABC_1015,Jaimie Lilian,6/7/1991,36016 Porter Street,QA +ABC_1016,Leone Keniwell,12/3/1983,4884 Becker Point,MOBILE +ABC_1017,Louis Beazley,21/10/1987,31 Sloan Trail,ADMIN +ABC_1018,Jeffy Handforth,26/04/1981,75759 Brentwood Alley,QA +ABC_1019,Jenelle Greenwood,17/02/1996,30 Loomis Park,QA +ABC_1020,Millicent Roiz,31/10/1987,0867 Hanover Place,MOBILE +ABC_1021,Ilene Ketteringham,14/06/1987,2 Buena Vista Lane,SYSTEM +ABC_1022,Dugald Geyton,31/07/1989,61372 Rockefeller Place,WEB +ABC_1023,Norean Brinsford,31/12/1991,6874 Daystar Junction,QA +ABC_1024,Lorens Newis,22/12/1987,084 Weeping Birch Pass,MOBILE +ABC_1025,Jodee Denyer,21/05/1996,60 Karstens Way,QA +ABC_1026,Jacki Kreutzer,5/6/1984,7 La Follette Circle,SYSTEM +ABC_1027,Alfons Johananoff,14/02/1999,6951 Meadow Ridge Place,ADMIN +ABC_1028,Jackie Standidge,27/12/1998,8 Butternut Drive,MOBILE +ABC_1029,Myra Havis,19/06/1992,496 Mallard Alley,SYSTEM +ABC_1030,Rainer Wooldridge,28/04/1990,39661 Oak Terrace,WEB +ABC_1031,Lurlene Eudall,4/3/1995,58 Farmco Pass,SYSTEM +ABC_1032,Conny Queyeiro,23/03/1990,598 Texas Terrace,SYSTEM +ABC_1033,Rubin Rown,21/12/1986,68 Lotheville Drive,MOBILE +ABC_1034,Randy Stoter,13/11/1993,18 Melby Alley,ADMIN +ABC_1035,Syman Trimme,5/12/1990,15351 Vera Road,MOBILE +ABC_1036,Freemon Blankley,1/10/1997,32 Russell Terrace,SYSTEM +ABC_1037,Bernadina Gerber,3/5/1980,85 Marquette Terrace,WEB +ABC_1038,Edythe Krzyzanowski,9/1/1999,28673 Gale Junction,MOBILE +ABC_1039,Elia Circuitt,13/10/1999,4 Steensland Crossing,WEB +ABC_1040,Adriena Eason,21/10/1980,217 Logan Pass,MOBILE +ABC_1041,Jaquith Groomebridge,3/3/1987,42 Waxwing Terrace,SYSTEM +ABC_1042,Moreen Carstairs,9/8/1993,6107 Eagan Avenue,QA +ABC_1043,Payton Covotti,19/08/1992,26190 Riverside Street,QA +ABC_1044,Vivyanne Colam,3/2/1996,38830 Maple Wood Road,WEB +ABC_1045,Tybalt Barnewall,4/4/1985,78759 Trailsway Lane,WEB +ABC_1046,Nickolas Bourke,27/10/1994,32497 Waxwing Center,SYSTEM +ABC_1047,Kevina Bonelle,29/10/1995,91 Eliot Road,WEB +ABC_1048,Lorri Bifield,31/12/1983,61914 Oneill Alley,WEB +ABC_1049,Upton Meiningen,14/06/1981,419 Waxwing Drive,SYSTEM +ABC_1050,Nevin Scone,14/03/1984,6 Donald Junction,MOBILE +ABC_1051,Caitrin Scarr,22/12/1986,13063 Iowa Crossing,MOBILE +ABC_1052,Jourdan Pucker,11/1/1999,43201 Hagan Junction,SYSTEM +ABC_1053,Lennie Stratten,13/12/1984,639 Grim Lane,SYSTEM +ABC_1054,Lila Ganing,5/7/1980,74 Heffernan Road,ADMIN +ABC_1055,Bella Goldberg,28/11/1986,24588 Thompson Parkway,MOBILE +ABC_1056,Marnia Screen,15/01/1981,5 Saint Paul Street,SYSTEM +ABC_1057,Angele Bullar,4/6/1984,53 Bartillon Park,WEB +ABC_1058,Roosevelt Andrejevic,17/08/1981,4675 Jay Drive,ADMIN +ABC_1059,Finn Redgrave,23/12/1992,17317 Scott Trail,QA +ABC_1060,Odille Glander,4/2/1986,37 Basil Way,SYSTEM +ABC_1061,Jessica Thurske,22/02/1997,1 Gina Terrace,WEB +ABC_1062,Heida MacKnight,28/09/1983,207 Macpherson Park,SYSTEM +ABC_1063,Gerhardt Hartus,14/07/1991,8 Melody Junction,SYSTEM +ABC_1064,Clemente Emanueli,8/11/1985,12668 Forest Pass,ADMIN +ABC_1065,Hinda Danet,9/5/1983,24 Paget Junction,ADMIN +ABC_1066,Roxanne Dahler,25/11/1999,30 Esch Circle,QA +ABC_1067,Viviene Duberry,11/5/1989,7 Stone Corner Center,WEB +ABC_1068,Cori Pitway,14/07/1995,809 Maple Wood Court,MOBILE +ABC_1069,Arlana Gooda,6/2/1987,259 Mesta Trail,SYSTEM +ABC_1070,Pearl Boyse,10/11/1995,9148 Lillian Drive,ADMIN +ABC_1071,Hubert Frowd,31/01/1990,99 Debs Place,WEB +ABC_1072,Anderson Clemo,5/7/1988,3361 Bluestem Pass,QA +ABC_1073,Rollin Delyth,13/12/1982,35 Bunting Junction,QA +ABC_1074,Jeddy MacHostie,17/03/1982,1274 Duke Court,SYSTEM +ABC_1075,Arman Burnep,2/8/1983,628 Surrey Center,QA +ABC_1076,Morten Lesly,6/5/1989,9522 Boyd Circle,ADMIN +ABC_1077,Alleen Chinge de Hals,16/02/1999,7 Burning Wood Lane,QA +ABC_1078,Tyrone Derry,3/6/1992,6 Corben Circle,WEB +ABC_1079,Melicent Wartonby,14/11/1990,50 Magdeline Way,MOBILE +ABC_1080,Genovera Connechie,29/08/1981,7390 Nova Center,SYSTEM +ABC_1081,Fernando Cheel,23/10/1981,8 Corry Street,WEB +ABC_1082,Carissa Leisman,10/9/1994,1950 Atwood Road,QA +ABC_1083,Silvana Clarycott,28/05/1980,9125 Burrows Way,ADMIN +ABC_1084,Guss Melwall,23/05/1985,68940 Carey Drive,QA +ABC_1085,Trever Schorah,30/11/1986,1265 Hanover Trail,ADMIN +ABC_1086,Web Compston,4/9/1983,2606 Mandrake Circle,QA +ABC_1087,Rufus Drogan,28/06/1994,1 Kipling Alley,MOBILE +ABC_1088,Babb Gomersal,25/04/1992,206 Marcy Hill,SYSTEM +ABC_1089,Cosimo Dyneley,11/4/1994,04924 Pearson Park,WEB +ABC_1090,Trstram Marthen,3/10/1998,99 Loomis Park,SYSTEM +ABC_1091,Darya Brunicke,19/05/1998,7 Hoepker Crossing,MOBILE +ABC_1092,Ruttger Kettow,3/4/1991,378 Transport Place,ADMIN +ABC_1093,Leonie Vollam,30/04/1995,8 Walton Road,WEB +ABC_1094,Eduardo Lye,22/11/1993,534 Blackbird Alley,SYSTEM +ABC_1095,Ardene Rodbourne,30/05/1998,30505 Rigney Junction,WEB +ABC_1096,Dov Heyfield,30/06/1991,40 Cottonwood Pass,MOBILE +ABC_1097,Ingaborg Heaps,8/1/1994,2 Dwight Trail,SYSTEM +ABC_1098,Neils Large,22/05/1992,0 Manufacturers Plaza,SYSTEM +ABC_1099,Carlee Gammie,1/7/1998,824 Clove Hill,WEB +ABC_1100,Jolie Starsmeare,16/08/1987,7521 Petterle Crossing,QA +ABC_1101,Manfred Laybourn,4/6/1997,603 Alpine Point,SYSTEM +ABC_1102,Flossie Worthington,1/8/1984,2 Becker Crossing,SYSTEM +ABC_1103,Feodor Igo,16/11/1989,23883 Messerschmidt Drive,MOBILE +ABC_1104,Claudine Mac Giolla Pheadair,21/05/1991,21389 Arrowood Hill,WEB +ABC_1105,Raynard Telfer,22/04/1981,928 Michigan Point,QA +ABC_1106,Karla Rugge,15/08/1999,13777 American Place,WEB +ABC_1107,Leroi Rugg,23/04/1999,4 Hoard Parkway,MOBILE +ABC_1108,Osgood O'Dowd,27/01/1983,1941 Victoria Plaza,WEB +ABC_1109,Christina Banane,8/8/1982,54645 Merchant Park,WEB +ABC_1110,Barnabe Attkins,22/03/1985,41 Loeprich Terrace,SYSTEM +ABC_1111,Norrie Dugdale,2/3/1991,684 Oak Street,MOBILE +ABC_1112,Nicola Mulhall,7/5/1990,3519 Forest Run Parkway,ADMIN +ABC_1113,Bree Billison,26/01/1982,20 Dapin Crossing,MOBILE +ABC_1114,Paulina McGeorge,24/09/1987,1 Mcguire Parkway,QA +ABC_1115,Baily Idney,25/03/1998,587 Lunder Street,WEB +ABC_1116,Paulo Vasyushkhin,9/3/1985,8106 Hermina Park,WEB +ABC_1117,Judd Kollach,4/9/1997,83 Kropf Hill,MOBILE +ABC_1118,Gussy Mott,14/09/1988,0944 Delladonna Plaza,MOBILE +ABC_1119,Inigo Albro,14/03/1994,2 Weeping Birch Park,WEB +ABC_1120,Gillan Broader,4/11/1985,36 Monica Avenue,QA +ABC_1121,Isis Oxborrow,29/01/1997,57 Northwestern Place,MOBILE +ABC_1122,Selma Tindle,26/11/1990,4871 Village Green Trail,MOBILE +ABC_1123,Mandel Cornner,1/1/1992,5914 Lukken Junction,SYSTEM +ABC_1124,Bordy Sammes,17/05/1984,31 Eagle Crest Parkway,QA +ABC_1125,Wally Tarn,14/01/1992,4918 Elmside Road,WEB +ABC_1126,Carine Roadknight,18/09/1984,01 Maywood Way,SYSTEM +ABC_1127,Myles Vermer,28/12/1994,3 Carioca Crossing,QA +ABC_1128,Corella Vickars,21/08/1991,68038 Sage Pass,ADMIN +ABC_1129,Katheryn Paquet,12/8/1991,2 Dottie Pass,WEB +ABC_1130,Ailyn Yerby,24/02/1997,9315 Walton Way,QA +ABC_1131,Gordan Moses,11/4/1981,9959 Nova Point,SYSTEM +ABC_1132,Blondie Stair,12/11/1985,9 Gale Trail,WEB +ABC_1133,Geri Andries,7/6/1981,916 Stephen Alley,WEB +ABC_1134,Eduino Florence,12/7/1984,1 Brentwood Place,WEB +ABC_1135,Bond Larvent,4/6/1985,701 Maple Wood Hill,MOBILE +ABC_1136,Correy Baugham,22/01/1988,2018 Loomis Crossing,WEB +ABC_1137,Patrica Dudmarsh,6/8/1987,242 Rieder Circle,MOBILE +ABC_1138,Brynne Duer,2/7/1995,472 Victoria Court,WEB +ABC_1139,Val Totterdell,3/10/1998,488 John Wall Lane,ADMIN +ABC_1140,Archibald Knevett,14/09/1991,79 Bowman Street,QA +ABC_1141,Donella Revie,7/1/1987,43217 Walton Road,MOBILE +ABC_1142,Karon Pierrepont,5/8/1989,32655 Marquette Point,SYSTEM +ABC_1143,Glynda Graysmark,26/05/1995,5599 Esker Road,WEB +ABC_1144,Debora Tarbett,16/08/1987,1494 Mallory Hill,WEB +ABC_1145,Allan Manilow,5/9/1997,7050 Maryland Parkway,WEB +ABC_1146,Torie Dring,12/11/1983,02 Riverside Crossing,WEB +ABC_1147,Kyle Stiggles,29/07/1999,16628 Fair Oaks Court,QA +ABC_1148,Pennie Tewes,28/05/1987,4 Carpenter Road,QA +ABC_1149,Devon Gundrey,19/06/1984,0801 Helena Parkway,WEB +ABC_1150,Violante Halvorsen,6/4/1985,3 Melody Parkway,SYSTEM +ABC_1151,Kaye Brace,4/9/1998,1 Killdeer Street,WEB +ABC_1152,Dell Caldroni,10/3/1995,843 Lakewood Park,QA +ABC_1153,Danice Haining,23/09/1983,542 Homewood Drive,WEB +ABC_1154,Kayley Devey,1/1/1990,17 Spenser Lane,ADMIN +ABC_1155,Agnola Ofer,6/6/1993,85228 Northland Place,SYSTEM +ABC_1156,Augustin Daintier,14/10/1989,3041 Spenser Road,WEB +ABC_1157,Gallagher Gimeno,13/05/1983,8 Glendale Trail,WEB +ABC_1158,Alair Gartsyde,30/11/1997,7 Paget Junction,SYSTEM +ABC_1159,Sofie Portinari,3/1/1989,01416 Clarendon Crossing,MOBILE +ABC_1160,Glennis Philipard,17/04/1981,0816 Dovetail Parkway,MOBILE +ABC_1161,Wendi MacNair,27/08/1994,474 Nova Center,ADMIN +ABC_1162,Christian Spence,26/09/1984,711 Meadow Ridge Terrace,WEB +ABC_1163,Gusty Riply,4/1/1987,292 Cambridge Crossing,WEB +ABC_1164,Vernon Starbucke,12/2/1995,88 Golf Trail,MOBILE +ABC_1165,Hendrik Mariet,8/1/1998,16 Banding Parkway,MOBILE +ABC_1166,Adan Bloan,14/04/1980,575 Shoshone Circle,QA +ABC_1167,Yankee Buncombe,15/07/1981,1 Union Park,MOBILE +ABC_1168,Beau Deny,6/7/1982,10 Wayridge Hill,WEB +ABC_1169,Conn Andrew,9/1/1987,294 Dakota Circle,ADMIN +ABC_1170,Lennard Merrgen,24/01/1981,227 Muir Park,QA +ABC_1171,Barty Le Pruvost,14/01/1991,005 Dapin Center,MOBILE +ABC_1172,Jeromy Khristoforov,6/4/1985,7334 Dottie Plaza,WEB +ABC_1173,Mile Robyns,2/2/1999,66 Amoth Plaza,WEB +ABC_1174,Christophe Archley,3/7/1981,37 Mendota Point,WEB +ABC_1175,Lilian Chaddock,10/9/1981,37 Myrtle Road,SYSTEM +ABC_1176,Egan Crux,8/2/1980,0011 Kinsman Park,MOBILE +ABC_1177,Gwyneth Norvell,13/12/1981,70899 Magdeline Way,SYSTEM +ABC_1178,Edlin Checkley,18/05/1982,158 Namekagon Terrace,QA +ABC_1179,Giulia Malsher,26/05/1980,82 Farragut Hill,QA +ABC_1180,Tandi Bacop,25/03/1998,960 Randy Alley,QA +ABC_1181,Giffer Loachhead,2/5/1996,036 North Court,MOBILE +ABC_1182,Abbye Mourgue,17/08/1999,3562 Badeau Trail,WEB +ABC_1183,Wade Gobeau,4/12/1986,01617 Brickson Park Court,ADMIN +ABC_1184,Florri Culverhouse,13/03/1983,936 Dottie Hill,MOBILE +ABC_1185,Mair Dowd,31/12/1984,69 Blaine Point,QA +ABC_1186,Wendeline Whitear,3/12/1980,4071 Waubesa Drive,WEB +ABC_1187,Diane Flay,29/01/1987,184 Thompson Point,QA +ABC_1188,Tod Lehr,22/08/1999,81 Brown Circle,MOBILE +ABC_1189,Jerrine Shadrack,21/08/1990,7437 Thompson Junction,WEB +ABC_1190,Corina Kensitt,10/3/1981,948 Eastwood Terrace,QA +ABC_1191,Alonzo Oman,8/10/1998,7238 Stoughton Way,ADMIN +ABC_1192,Ofella Duigan,31/05/1986,7 David Court,QA +ABC_1193,Dirk Glazer,23/05/1986,3 Dennis Circle,ADMIN +ABC_1194,Leroi Ruddell,10/5/1982,79 Dovetail Center,SYSTEM +ABC_1195,Tate Quelch,18/07/1999,0763 Onsgard Street,MOBILE +ABC_1196,Ralph Cleeves,22/09/1999,1 Vera Avenue,WEB +ABC_1197,Solomon Chippindale,26/11/1985,06 Union Street,SYSTEM +ABC_1198,Paulette Jerche,30/06/1980,27985 Eastlawn Pass,SYSTEM +ABC_1199,Moritz Blakden,21/02/1989,7287 Talisman Place,ADMIN +ABC_1200,Valma Trehearne,2/7/1994,08898 Swallow Crossing,MOBILE +ABC_1201,Candy Lalevee,17/08/1997,48681 Waxwing Park,QA +ABC_1202,Gilli Berndtssen,3/5/1982,210 Center Street,MOBILE +ABC_1203,Ricardo Simnell,8/10/1984,9 Banding Point,SYSTEM +ABC_1204,Engracia Minci,19/09/1986,7 Mitchell Avenue,SYSTEM +ABC_1205,Sari Loges,12/4/1996,2 Talmadge Crossing,QA +ABC_1206,Alvira Franzman,13/11/1991,3 Express Drive,MOBILE +ABC_1207,Margy Pendock,6/4/1982,072 Hanson Terrace,QA +ABC_1208,Betsey Choffin,17/11/1992,24 Lien Pass,QA +ABC_1209,Grover Ruller,13/08/1984,2 Spohn Hill,MOBILE +ABC_1210,Nanete Thatcher,26/01/1994,390 Garrison Center,QA +ABC_1211,Sylvan Mustoo,6/6/1986,04414 Hooker Alley,MOBILE +ABC_1212,Dniren Wilkie,14/12/1987,0 Arrowood Pass,WEB +ABC_1213,Duane Chieze,26/09/1985,1 Springs Road,QA +ABC_1214,Colet Damrell,28/06/1993,92 Huxley Drive,ADMIN +ABC_1215,Kary Matchell,1/3/1984,69 Longview Hill,ADMIN +ABC_1216,Eben Minghi,20/07/1982,3891 Eggendart Lane,ADMIN +ABC_1217,Bern Sijmons,12/1/1983,2059 Warrior Way,MOBILE +ABC_1218,Luis Mumbey,19/11/1980,9 Porter Alley,ADMIN +ABC_1219,Sonya Ary,2/9/1982,5259 Havey Alley,WEB +ABC_1220,Gilberto Bowerbank,26/08/1980,78162 Annamark Avenue,SYSTEM +ABC_1221,Nickie Eilers,2/4/1990,8 Leroy Terrace,QA +ABC_1222,Clarissa MacFaul,24/11/1999,6279 Butternut Drive,QA +ABC_1223,Hamil Alliband,27/06/1994,251 Lakewood Gardens Place,SYSTEM +ABC_1224,Zacharie Gennings,1/11/1989,6247 Brickson Park Hill,ADMIN +ABC_1225,Corabelle Baber,19/08/1989,27 Gulseth Crossing,ADMIN +ABC_1226,Sadie Hayto,27/04/1996,658 Steensland Alley,QA +ABC_1227,Kellen Hinkens,20/05/1980,50510 Northport Parkway,WEB +ABC_1228,Micheil Sawnwy,3/10/1992,8969 Sheridan Circle,WEB +ABC_1229,Lynnelle Stride,5/5/1987,4213 Saint Paul Circle,MOBILE +ABC_1230,Cris Roalfe,7/4/1985,6 Anderson Terrace,WEB +ABC_1231,Lisa Grahlman,18/06/1999,145 Cardinal Road,QA +ABC_1232,Uri Stirrip,19/05/1981,784 American Center,QA +ABC_1233,Florette Strathern,27/04/1988,408 Oneill Center,QA +ABC_1234,Erina Cochern,29/07/1998,88 Dwight Street,QA +ABC_1235,Edythe Corneljes,2/12/1998,1 Arapahoe Lane,SYSTEM +ABC_1236,Bari Iddons,4/6/1998,35 Coleman Avenue,MOBILE +ABC_1237,Adda Prettyman,21/06/1981,639 Eliot Junction,SYSTEM +ABC_1238,Rutter Yves,29/01/1987,23342 Goodland Street,MOBILE +ABC_1239,Helsa Houdhury,27/09/1984,6489 Corscot Terrace,WEB +ABC_1240,Lesley De Beneditti,8/3/1996,75542 Loeprich Pass,QA +ABC_1241,Arvy Jedrzejewsky,6/10/1980,5 Quincy Crossing,QA +ABC_1242,Briant Manach,2/3/1988,588 Sherman Junction,WEB +ABC_1243,Alard McEvay,28/03/1992,957 Towne Crossing,MOBILE +ABC_1244,Stefano Ikringill,5/2/1986,440 Riverside Point,MOBILE +ABC_1245,Pippa Beekmann,2/3/1990,6 Russell Hill,WEB +ABC_1246,Chelsey Haquard,30/03/1987,20299 Straubel Plaza,MOBILE +ABC_1247,Jeannine Catlin,25/03/1988,1546 Commercial Hill,QA +ABC_1248,Alvin Vassay,4/10/1995,66724 4th Avenue,ADMIN +ABC_1249,Adelle Janse,12/4/1991,4 Caliangt Pass,SYSTEM +ABC_1250,Allyn Glaisner,24/03/1998,53786 Golf Avenue,MOBILE +ABC_1251,Baxie Buckenhill,29/04/1980,831 Dottie Pass,SYSTEM +ABC_1252,Clair Hatliffe,20/04/1984,15669 Miller Street,SYSTEM +ABC_1253,Kelwin Bliben,22/01/1997,00703 Manufacturers Plaza,SYSTEM +ABC_1254,Pernell Davidowsky,25/09/1988,159 Main Point,WEB +ABC_1255,Liane Kerner,8/7/1988,333 Golden Leaf Crossing,SYSTEM +ABC_1256,Roze Berriball,17/05/1996,9021 Pine View Alley,MOBILE +ABC_1257,Janel Plumbe,4/10/1997,22 Schurz Pass,ADMIN +ABC_1258,Denna Chamberlen,26/12/1993,5 Longview Junction,MOBILE +ABC_1259,Curry Heselwood,29/07/1987,81023 Onsgard Terrace,QA +ABC_1260,Cos MacPhail,28/02/1980,16 Spaight Road,WEB +ABC_1261,Bank Giorgeschi,11/5/1998,41 Cascade Avenue,MOBILE +ABC_1262,Genia Bartolozzi,14/08/1999,68702 Rutledge Lane,QA +ABC_1263,Joelle Mollon,14/01/1990,80969 Packers Lane,SYSTEM +ABC_1264,Marina Monkton,13/04/1988,12 Lien Alley,MOBILE +ABC_1265,Orel Flegg,8/4/1996,3 Lien Center,QA +ABC_1266,Robinette Gobeaux,17/05/1998,67785 Melrose Alley,QA +ABC_1267,Emlyn Lindblom,22/07/1995,49176 Hagan Court,SYSTEM +ABC_1268,Doretta Cowin,12/12/1980,10 Green Ridge Junction,MOBILE +ABC_1269,Valeria Montgomery,13/10/1984,449 Towne Road,SYSTEM +ABC_1270,Dulcea Minget,28/03/1984,000 Springs Drive,SYSTEM +ABC_1271,Norry Stephens,20/08/1995,91 Carberry Circle,WEB +ABC_1272,Mathe Whanstall,9/5/1988,060 Longview Way,WEB +ABC_1273,Thain Howlings,12/1/1993,708 Comanche Parkway,WEB +ABC_1274,Tirrell Figliovanni,25/11/1993,67 Heath Trail,MOBILE +ABC_1275,Gonzalo Robbert,28/04/1989,4 Annamark Circle,SYSTEM +ABC_1276,Daron Mourton,18/05/1980,7 Carey Hill,WEB +ABC_1277,Madelon Bollans,19/03/1993,439 Hoepker Drive,ADMIN +ABC_1278,Robert Koopman,6/5/1996,096 Maple Wood Pass,WEB +ABC_1279,Al Bridson,23/05/1986,31 Merrick Circle,WEB +ABC_1280,Puff De Mattei,31/05/1984,59 Rigney Junction,WEB +ABC_1281,Sumner Pinar,4/7/1995,12 Bashford Parkway,WEB +ABC_1282,Corabelle Hardinge,7/7/1988,3145 Shoshone Junction,ADMIN +ABC_1283,Ebeneser Gillease,24/12/1984,161 Killdeer Lane,WEB +ABC_1284,Carrie Tildesley,20/10/1997,3997 Fairfield Terrace,SYSTEM +ABC_1285,Kelila Bastone,22/10/1991,037 Kennedy Point,ADMIN +ABC_1286,Bearnard Garatty,16/01/1997,2 Fremont Way,WEB +ABC_1287,Gayel Clue,13/05/1992,11324 Ridgeview Pass,SYSTEM +ABC_1288,Pamela Tassaker,5/5/1992,781 Towne Alley,QA +ABC_1289,Brittaney Scriver,20/12/1998,93239 Buena Vista Street,QA +ABC_1290,Brody Durston,1/8/1999,218 Pawling Road,WEB +ABC_1291,Tanner Passmore,2/7/1996,380 David Center,MOBILE +ABC_1292,Avrit Sparks,20/02/1996,895 Vahlen Avenue,SYSTEM +ABC_1293,Alisha Pollitt,23/11/1987,1983 Ridge Oak Alley,QA +ABC_1294,Ivette Aland,23/10/1983,17290 Dorton Alley,WEB +ABC_1295,Fania Coomer,12/9/1980,094 Briar Crest Avenue,SYSTEM +ABC_1296,Ignaz McCrudden,26/05/1997,7906 Spaight Parkway,ADMIN +ABC_1297,Damita Easthope,3/1/1985,88 Johnson Court,MOBILE +ABC_1298,Wanids Corbitt,2/3/1991,437 Pankratz Street,WEB +ABC_1299,Rona Houlston,1/8/1994,57922 Glacier Hill Crossing,MOBILE +ABC_1300,Kris Pickersail,8/3/1986,79796 Reindahl Terrace,WEB +ABC_1301,Jeanie Sellstrom,15/09/1999,65438 Starling Drive,QA +ABC_1302,Basilio Pacey,5/1/1986,958 Continental Court,QA +ABC_1303,Claiborn Ygoe,30/03/1983,58633 Dwight Road,MOBILE +ABC_1304,Ingaberg Allatt,12/7/1980,6745 Mcbride Terrace,WEB +ABC_1305,La verne Francisco,25/08/1983,66242 Myrtle Place,MOBILE +ABC_1306,Prissie Spelman,25/07/1994,56955 Farragut Parkway,QA +ABC_1307,Rosmunda Dalmon,5/12/1983,57 Sugar Parkway,SYSTEM +ABC_1308,Keefer Ubsdall,14/08/1994,78 Susan Park,WEB +ABC_1309,Anatole Dundredge,17/12/1998,5492 Buell Hill,QA +ABC_1310,Nana Hibbart,12/3/1988,9 Onsgard Pass,QA +ABC_1311,Robyn Fielders,13/10/1988,310 Manley Crossing,ADMIN +ABC_1312,Mal Chaters,29/03/1989,26 Little Fleur Point,WEB +ABC_1313,Trude Beckenham,7/11/1998,3393 Mosinee Street,MOBILE +ABC_1314,Ada Slayford,1/11/1991,56774 Fairview Park,MOBILE +ABC_1315,Charmine Vitte,14/10/1980,9563 5th Junction,MOBILE +ABC_1316,Christyna Athridge,20/09/1992,963 Rieder Point,SYSTEM +ABC_1317,Raychel Spoward,15/11/1983,73886 Grasskamp Plaza,ADMIN +ABC_1318,Stearn Yurevich,3/6/1980,348 Corry Way,SYSTEM +ABC_1319,Shirley MacCathay,1/2/1985,395 Union Crossing,WEB +ABC_1320,Francene Splain,1/11/1996,7633 Schlimgen Circle,ADMIN +ABC_1321,Alexandra Secretan,1/2/1990,758 Bayside Alley,WEB +ABC_1322,Dulce Lanchberry,20/09/1988,1 Hanson Avenue,ADMIN +ABC_1323,Dulcine Harrill,25/02/1999,2994 Towne Terrace,MOBILE +ABC_1324,Wini Gonneau,13/04/1991,1 New Castle Park,MOBILE +ABC_1325,Dorisa Krahl,24/11/1989,116 Farmco Park,WEB +ABC_1326,Luce Adnam,30/07/1985,28 American Plaza,WEB +ABC_1327,Alanah Grewcock,30/03/1990,3 Rusk Court,SYSTEM +ABC_1328,Willetta Scutter,3/4/1985,40065 Sheridan Center,SYSTEM +ABC_1329,Elvira Kondratovich,14/06/1996,1400 Schlimgen Court,SYSTEM +ABC_1330,Silvie Moreman,23/02/1999,0255 Gerald Drive,SYSTEM +ABC_1331,Esma Trighton,18/12/1988,77365 West Crossing,WEB +ABC_1332,Orel Bucknill,19/08/1980,0675 Novick Parkway,WEB +ABC_1333,Layla Kyne,18/07/1999,1 Nevada Hill,MOBILE +ABC_1334,Weston O'Duilleain,11/5/1982,44511 Dryden Plaza,SYSTEM +ABC_1335,Kirby Moorman,26/07/1994,4452 Prairieview Street,QA +ABC_1336,Nadia Jobling,29/06/1991,69 Glacier Hill Street,MOBILE +ABC_1337,Gaven Blabie,17/05/1984,60 Jackson Terrace,WEB +ABC_1338,Krystle Steffan,24/07/1980,88730 Transport Junction,QA +ABC_1339,Ina Faichney,26/07/1993,2 Laurel Hill,WEB +ABC_1340,Gael Vennart,26/09/1993,00455 Sunfield Street,SYSTEM +ABC_1341,Charleen Parzis,8/8/1988,5 Macpherson Pass,WEB +ABC_1342,Maryjo Ripsher,17/03/1980,002 Old Shore Plaza,QA +ABC_1343,Lisabeth Wilby,17/12/1980,88 Autumn Leaf Parkway,MOBILE +ABC_1344,Sigvard Durtnal,19/12/1981,4 Texas Point,QA +ABC_1345,Koenraad Zealander,1/10/1984,55 Stoughton Drive,MOBILE +ABC_1346,Sean Osban,12/5/1993,8323 Butterfield Center,QA +ABC_1347,Isac Coster,12/4/1989,0 Utah Road,WEB +ABC_1348,Lenci Assard,5/11/1996,1848 Duke Street,SYSTEM +ABC_1349,Dannie Occleshaw,5/2/1999,285 Cody Road,WEB +ABC_1350,Dayle Chmarny,13/08/1989,516 Heffernan Street,QA +ABC_1351,Lianna Rintoul,6/7/1995,720 Parkside Crossing,WEB +ABC_1352,Carlina Rowena,20/01/1981,9691 Graedel Crossing,SYSTEM +ABC_1353,Eryn McQuarter,6/3/1998,59 Comanche Street,MOBILE +ABC_1354,Van Maleney,5/9/1985,82475 Farwell Point,QA +ABC_1355,Danika Cookley,4/1/1986,8 Beilfuss Court,QA +ABC_1356,Ruggiero Ibbotson,17/01/1982,1 Bunting Park,QA +ABC_1357,Ronald Thom,16/06/1986,167 Lillian Pass,WEB +ABC_1358,Jayme Leggon,4/12/1995,6678 Loeprich Pass,WEB +ABC_1359,Veronica Grange,4/9/1980,338 Annamark Court,SYSTEM +ABC_1360,Oliviero Kington,11/10/1982,55 Farragut Street,MOBILE +ABC_1361,Jorrie Phillp,2/3/1988,753 Fallview Center,SYSTEM +ABC_1362,Melinda Trinbey,16/03/1994,535 Linden Avenue,MOBILE +ABC_1363,Lucas Thebe,16/01/1998,22 Muir Junction,MOBILE +ABC_1364,Case Beney,17/05/1993,46 Fremont Court,ADMIN +ABC_1365,Teri Olyff,16/05/1993,3 Texas Hill,WEB +ABC_1366,Konstantine Fergyson,13/07/1994,100 Talmadge Center,SYSTEM +ABC_1367,Randell Hurl,17/09/1993,981 Hintze Plaza,WEB +ABC_1368,Marietta Irving,27/04/1987,248 Burrows Crossing,WEB +ABC_1369,Berkie Chilton,10/2/1985,5 La Follette Hill,QA +ABC_1370,Rosco Deverille,10/6/1992,022 Donald Drive,WEB +ABC_1371,Brett Coker,18/09/1990,9 Susan Avenue,QA +ABC_1372,Ansel Hanfrey,9/11/1999,386 Hollow Ridge Terrace,WEB +ABC_1373,Wiley Ianelli,20/07/1996,472 Northwestern Park,MOBILE +ABC_1374,Nancie Oxterby,19/02/1993,38367 Londonderry Plaza,QA +ABC_1375,Danna Lamperd,5/7/1990,5540 Caliangt Pass,QA +ABC_1376,Ibrahim Alejo,29/12/1997,6 Clarendon Avenue,QA +ABC_1377,Cristionna Brian,17/08/1992,57255 Mcbride Crossing,QA +ABC_1378,Mile Datte,25/05/1988,506 Lakeland Park,MOBILE +ABC_1379,Adara Blundin,21/06/1993,7 Division Way,QA +ABC_1380,Hetty Pohlak,11/5/1983,861 1st Lane,WEB +ABC_1381,Binni Artharg,10/5/1986,361 Mesta Center,WEB +ABC_1382,Allie Dibbe,30/07/1987,75284 Beilfuss Way,WEB +ABC_1383,Aubert Owers,14/04/1994,5 Mosinee Street,QA +ABC_1384,Jordan Westman,1/12/1992,7935 Iowa Lane,QA +ABC_1385,Jane O'Shavlan,12/9/1995,6861 Hauk Terrace,MOBILE +ABC_1386,Krispin Gyde,20/05/1985,7143 Blaine Hill,MOBILE +ABC_1387,Marcellus Moehle,4/12/1982,29613 Sycamore Junction,MOBILE +ABC_1388,Gilly Droghan,9/8/1981,65 Badeau Junction,SYSTEM +ABC_1389,Cassi Aleksandrikin,6/9/1980,93 Main Plaza,QA +ABC_1390,Marquita Romagosa,23/06/1998,0 Kipling Plaza,QA +ABC_1391,Cordi Gebuhr,20/01/1990,96960 Bunting Alley,MOBILE +ABC_1392,Urban Leavens,19/06/1993,62 Bunker Hill Place,MOBILE +ABC_1393,Darsey Channon,18/07/1997,0 Bayside Crossing,ADMIN +ABC_1394,Bamby Boorman,2/8/1981,788 Duke Junction,SYSTEM +ABC_1395,Hugh Beccero,4/5/1999,6 Heath Street,SYSTEM +ABC_1396,Morgana Mervyn,16/04/1983,31747 Delaware Alley,ADMIN +ABC_1397,Brendis Roake,23/02/1996,712 Cherokee Circle,MOBILE +ABC_1398,Johnna Myrie,12/3/1993,5 Schmedeman Parkway,SYSTEM +ABC_1399,Sonia Larrat,1/9/1985,62041 Redwing Pass,MOBILE +ABC_1400,Rochell Ledekker,16/10/1995,85 Bartelt Junction,SYSTEM +ABC_1401,Belle Duplan,4/8/1983,86 Michigan Park,ADMIN +ABC_1402,Sax Pauly,22/09/1992,638 Jana Crossing,SYSTEM +ABC_1403,Sarette Spofforth,24/08/1980,19 Oak Valley Crossing,SYSTEM +ABC_1404,Riki Battman,21/03/1996,697 Killdeer Point,WEB +ABC_1405,Obediah Hillatt,13/11/1987,86 Gateway Crossing,QA +ABC_1406,Morten Hise,7/11/1994,08320 Killdeer Lane,WEB +ABC_1407,Loretta Whightman,15/05/1997,5 Artisan Circle,WEB +ABC_1408,Shelby Blackborne,14/04/1999,89167 Forest Run Hill,MOBILE +ABC_1409,Gilberto Loffill,5/8/1980,99925 Forest Run Parkway,MOBILE +ABC_1410,Vivia Steely,22/05/1981,83466 Northwestern Crossing,MOBILE +ABC_1411,Dorie Lettice,16/10/1996,8193 American Lane,WEB +ABC_1412,Ozzy Paffitt,28/04/1998,08 Doe Crossing Avenue,MOBILE +ABC_1413,Rozanna Volant,2/4/1984,28 Manley Street,QA +ABC_1414,Kassia Hartil,5/4/1980,63 Starling Hill,WEB +ABC_1415,Forster Hurring,16/09/1993,6115 Moose Junction,WEB +ABC_1416,Kelwin Fonteyne,21/07/1987,03 Mesta Park,QA +ABC_1417,Costanza Redington,6/9/1980,06926 Thierer Drive,MOBILE +ABC_1418,Nichole Baulch,30/06/1990,0 Bobwhite Trail,MOBILE +ABC_1419,Flemming Blower,31/01/1988,73 Ridge Oak Lane,WEB +ABC_1420,Kimmi Finnimore,19/11/1999,5554 Esker Junction,WEB +ABC_1421,Amandy Bethell,30/09/1992,90 Johnson Way,ADMIN +ABC_1422,Polly Lots,13/01/1987,78 Rusk Point,QA +ABC_1423,Viv Gerring,26/12/1981,2 Jenna Street,QA +ABC_1424,Linet Stump,27/03/1995,401 Sauthoff Park,ADMIN +ABC_1425,Alden Burstow,6/10/1987,606 Montana Trail,SYSTEM +ABC_1426,Sherie Groves,20/09/1990,8427 Fremont Lane,ADMIN +ABC_1427,Martin Wittey,16/12/1981,0 Northport Parkway,MOBILE +ABC_1428,Horatius Yakovl,15/08/1993,2 Barnett Street,MOBILE +ABC_1429,Breanne Lempenny,28/03/1982,57587 Vidon Pass,ADMIN +ABC_1430,Sabra Chrismas,10/1/1987,34 Anderson Way,QA +ABC_1431,Bjorn Creffeild,14/03/1994,7 Boyd Parkway,MOBILE +ABC_1432,Aeriel Reihm,16/07/1986,6583 Michigan Way,WEB +ABC_1433,Dino Sclanders,24/08/1980,9 Bartillon Pass,MOBILE +ABC_1434,Krissy Osselton,28/06/1997,2 Basil Way,MOBILE +ABC_1435,Cornelius Imbrey,12/5/1989,67378 Northwestern Drive,SYSTEM +ABC_1436,Jud Coxwell,10/5/1999,159 Brickson Park Junction,QA +ABC_1437,Art Bowden,22/09/1996,03468 Longview Circle,SYSTEM +ABC_1438,Wainwright Van Leijs,9/3/1984,67656 Roth Court,QA +ABC_1439,Yuri Rannald,21/03/1987,4 Lillian Lane,QA +ABC_1440,Berenice Perceval,24/12/1982,587 Little Fleur Court,WEB +ABC_1441,Stevena Huddle,6/11/1981,3769 Pankratz Trail,WEB +ABC_1442,Mendy Doyley,28/06/1999,2 Basil Hill,MOBILE +ABC_1443,Franklin Coupman,10/10/1988,48786 Granby Terrace,WEB +ABC_1444,Devondra Lisimore,30/07/1982,368 South Trail,WEB +ABC_1445,Cassius Applebee,11/2/1985,0012 Tennyson Street,WEB +ABC_1446,Floria Kassidy,27/03/1991,20153 Brentwood Court,MOBILE +ABC_1447,Carey Renon,2/6/1984,211 Butterfield Hill,QA +ABC_1448,Cthrine Jiroutka,8/2/1990,3252 Lotheville Circle,SYSTEM +ABC_1449,Theda Amor,29/05/1993,45 Nelson Junction,SYSTEM +ABC_1450,Ruddy Jackalin,17/05/1987,2280 Norway Maple Park,WEB +ABC_1451,Jacinta Chiverton,6/5/1990,1113 Dahle Point,WEB +ABC_1452,Fenelia Hulmes,30/06/1983,95 Columbus Park,ADMIN +ABC_1453,Chelsy Burless,3/10/1992,4061 Manufacturers Place,MOBILE +ABC_1454,Bailey Fitzmaurice,3/7/1990,580 Tomscot Place,ADMIN +ABC_1455,Lilas O' Donohue,16/03/1984,6 Summer Ridge Place,WEB +ABC_1456,Claudette Blaw,4/4/1997,817 Kings Avenue,WEB +ABC_1457,Elayne Rowlatt,18/05/1985,709 Moose Lane,WEB +ABC_1458,Marcello Swaffield,24/03/1988,88137 Sachs Alley,QA +ABC_1459,Mahala Brevitt,8/2/1998,3 American Hill,SYSTEM +ABC_1460,Dinah Blackaller,17/07/1995,1 Packers Parkway,ADMIN +ABC_1461,Channa Linsay,31/01/1997,1831 Fairfield Point,SYSTEM +ABC_1462,Louisette Gibbie,17/11/1987,976 Calypso Court,QA +ABC_1463,Xenia Fosdick,26/01/1997,66642 Sycamore Circle,ADMIN +ABC_1464,Lisabeth Butterley,4/3/1981,960 Hoepker Trail,SYSTEM +ABC_1465,Saunderson Fortin,9/10/1983,5989 Esch Street,MOBILE +ABC_1466,Corinne Stallebrass,18/05/1987,25228 Paget Place,WEB +ABC_1467,Haven Billing,15/06/1986,615 Melrose Street,ADMIN +ABC_1468,Courtney Favell,19/06/1980,738 Oak Valley Crossing,QA +ABC_1469,Kaia Cortes,7/1/1989,657 Oakridge Trail,MOBILE +ABC_1470,Perkin Oxtaby,1/1/1995,3 Nelson Junction,QA +ABC_1471,Dore Eldrid,1/12/1986,901 Buhler Road,MOBILE +ABC_1472,Twyla Prendeguest,14/01/1983,7 8th Junction,WEB +ABC_1473,Winthrop Cisco,11/6/1992,46586 Rockefeller Way,ADMIN +ABC_1474,Taylor Benoix,30/07/1992,21509 Pierstorff Terrace,MOBILE +ABC_1475,Berke Santo,10/11/1992,49 Birchwood Drive,MOBILE +ABC_1476,Fitz Sharville,20/01/1981,37 Burrows Park,MOBILE +ABC_1477,Gerda Olivella,17/04/1989,9845 Rigney Pass,WEB +ABC_1478,Nat Souley,23/10/1981,10 Kenwood Avenue,SYSTEM +ABC_1479,Mitchel Maddra,29/09/1987,788 Evergreen Crossing,MOBILE +ABC_1480,Henrik Saltsberger,19/10/1994,222 Dawn Court,MOBILE +ABC_1481,Patrizio Tuohy,2/10/1985,345 Claremont Point,WEB +ABC_1482,Sylvia Killock,9/10/1990,033 Coleman Alley,WEB +ABC_1483,Peggy Wannell,6/3/1998,276 Kensington Crossing,QA +ABC_1484,Isabella Berick,2/9/1980,32 Green Alley,WEB +ABC_1485,Melli Connolly,7/5/1998,99 Esch Park,WEB +ABC_1486,Margo Kinchin,23/01/1986,50141 Forest Circle,WEB +ABC_1487,Evangelin Giorio,15/08/1986,300 Steensland Road,WEB +ABC_1488,Saunder Bohling,1/8/1988,83033 Golf Court,QA +ABC_1489,Jakob Quinney,29/06/1996,2792 Blaine Pass,MOBILE +ABC_1490,Korry Youdell,14/10/1996,481 Lerdahl Center,MOBILE +ABC_1491,Rance Turmall,12/2/1991,47 Northland Junction,WEB +ABC_1492,Zelma Allabarton,19/03/1995,7166 Lukken Road,QA +ABC_1493,Liv Pennell,17/01/1986,9 Leroy Circle,WEB +ABC_1494,Kyle Cockin,17/04/1989,32 Rowland Terrace,QA +ABC_1495,Tate Bristoe,21/11/1998,17955 Barby Street,SYSTEM +ABC_1496,Sasha Peach,18/08/1997,627 Leroy Drive,WEB +ABC_1497,Greta Bromley,12/12/1998,93106 Anniversary Trail,QA +ABC_1498,Celeste Slevin,24/01/1984,92553 Brown Point,MOBILE +ABC_1499,Dall Layus,27/07/1991,597 Ryan Way,WEB +ABC_1500,Derrek Lackey,15/02/1984,49 Milwaukee Drive,WEB +ABC_1501,Nyssa Guichard,9/4/1980,3 Sycamore Park,QA +ABC_1502,Ebeneser Nelius,24/07/1980,8 Briar Crest Alley,WEB +ABC_1503,Edik Alywin,1/6/1993,22204 Miller Drive,WEB +ABC_1504,Florina Bride,11/12/1993,042 Sugar Crossing,SYSTEM +ABC_1505,Haskel Dallosso,14/12/1994,513 Marcy Circle,SYSTEM +ABC_1506,Sheffie Featherbie,23/03/1985,34907 Arapahoe Alley,MOBILE +ABC_1507,Micky Kelsell,19/04/1984,2 Ramsey Circle,WEB +ABC_1508,Dunn Eddis,26/04/1981,25993 Grim Alley,MOBILE +ABC_1509,Felisha Borghese,16/02/1999,36130 Elka Circle,WEB +ABC_1510,Rooney Bew,8/9/1993,13495 Sachs Trail,WEB +ABC_1511,Ardelle Brilleman,7/1/1988,6269 Rigney Avenue,WEB +ABC_1512,Arlee Goalby,19/07/1997,0 Cardinal Point,WEB +ABC_1513,Marco Wollen,1/2/1995,3568 Jay Junction,QA +ABC_1514,Percival Cahey,14/04/1993,121 Pepper Wood Lane,WEB +ABC_1515,Dulcie Hourihane,25/06/1980,92 Glacier Hill Terrace,WEB +ABC_1516,Erika Mariotte,1/5/1986,44 Judy Road,QA +ABC_1517,Arda Risbridger,27/06/1999,0 Fair Oaks Plaza,MOBILE +ABC_1518,Anatol Fargher,12/1/1988,4350 Eagan Parkway,SYSTEM +ABC_1519,Andreana Hackey,2/3/1998,4850 Northview Drive,WEB +ABC_1520,Prudence Leander,2/9/1999,8344 Nelson Junction,WEB +ABC_1521,Ramsey Sanpere,12/8/1989,5 Paget Drive,MOBILE +ABC_1522,Celestina Dunford,10/12/1992,52 Garrison Drive,MOBILE +ABC_1523,Giovanna Siddall,28/09/1984,64 Stang Center,SYSTEM +ABC_1524,Darelle Beagan,24/02/1994,7203 Jay Parkway,SYSTEM +ABC_1525,Dania Pirrone,19/10/1998,2506 Pawling Circle,MOBILE +ABC_1526,Katine Crackett,25/07/1991,2936 Debs Parkway,MOBILE +ABC_1527,Adrian Buddock,31/10/1997,936 Anhalt Pass,MOBILE +ABC_1528,Loria Clampin,29/01/1985,8339 Superior Terrace,WEB +ABC_1529,Cathrine Eyree,10/4/1992,75 Ryan Alley,MOBILE +ABC_1530,Colleen Ricardot,24/02/1982,4 Shoshone Court,WEB +ABC_1531,Zollie Attreed,1/12/1980,76242 7th Lane,WEB +ABC_1532,Perren Sextie,9/6/1993,24234 La Follette Drive,QA +ABC_1533,Francois Edmund,27/03/1983,019 Charing Cross Drive,QA +ABC_1534,Wallis Cellier,11/12/1993,36575 Eliot Road,MOBILE +ABC_1535,Odella Hostan,22/04/1993,0050 Anderson Crossing,QA +ABC_1536,Quinta Whebell,1/2/1990,2 Vidon Plaza,WEB +ABC_1537,Normand Barthelme,9/12/1995,74 American Pass,SYSTEM +ABC_1538,Alfie Kensington,20/07/1986,10945 Washington Plaza,SYSTEM +ABC_1539,Salomi Ghidetti,6/11/1987,5063 Northridge Lane,ADMIN +ABC_1540,Sondra Mahaddie,4/5/1982,2701 Evergreen Parkway,QA +ABC_1541,Huntington Tanfield,8/7/1982,91 Hintze Circle,WEB +ABC_1542,Son Lutty,12/3/1995,59 Bowman Junction,WEB +ABC_1543,Wendel Ulyatt,2/9/1999,35 Mayfield Place,WEB +ABC_1544,Christoph Presnell,26/07/1989,07 Tony Way,ADMIN +ABC_1545,Ruthanne Stive,18/03/1991,71287 Maple Wood Alley,MOBILE +ABC_1546,Kial Smethurst,8/3/1995,2 Myrtle Parkway,WEB +ABC_1547,Lamar Huthart,28/04/1984,5 Little Fleur Alley,ADMIN +ABC_1548,Stanislaus Vondrak,6/6/1994,9399 Pierstorff Junction,ADMIN +ABC_1549,Carce Mizzen,10/2/1985,48969 Meadow Valley Point,MOBILE +ABC_1550,Cirilo Merrgen,28/08/1984,8 Sutteridge Junction,MOBILE +ABC_1551,Martita Dowdell,9/11/1993,95 Fieldstone Alley,WEB +ABC_1552,Derry Blannin,13/06/1994,8 Meadow Vale Lane,ADMIN +ABC_1553,Vilma Poundsford,30/08/1990,3693 Golf Place,SYSTEM +ABC_1554,Caryn Jayes,4/12/1982,3 Messerschmidt Alley,QA +ABC_1555,Caesar Killiner,12/5/1989,09371 Sachs Center,QA +ABC_1556,Alisun Temple,12/10/1991,12063 Melody Plaza,QA +ABC_1557,Alys Perrigo,29/03/1981,3930 Riverside Park,SYSTEM +ABC_1558,Cyrillus Dunseath,31/01/1983,874 Forster Trail,MOBILE +ABC_1559,Halli Carder,29/01/1982,88648 Arrowood Place,SYSTEM +ABC_1560,Drew Shemmin,9/9/1985,91583 Garrison Pass,ADMIN +ABC_1561,Rees Ingon,27/08/1990,505 Dexter Point,MOBILE +ABC_1562,Cacilia Doggrell,26/11/1989,67540 Monica Street,WEB +ABC_1563,Brenda Rodda,19/09/1984,447 Granby Street,MOBILE +ABC_1564,Quinn Solomonides,1/9/1992,4 Oak Place,SYSTEM +ABC_1565,Fawn Krishtopaittis,5/1/1992,139 Esker Way,WEB +ABC_1566,Vitoria Braffington,4/5/1988,65660 Hauk Lane,QA +ABC_1567,Robby Bee,19/11/1990,9 Ronald Regan Place,WEB +ABC_1568,Nikolai Serotsky,17/08/1985,80490 Lyons Place,WEB +ABC_1569,Sonya Hurch,22/09/1992,4 Packers Alley,WEB +ABC_1570,Gabbie Thyer,13/04/1989,449 Northview Crossing,WEB +ABC_1571,Dasha Topaz,1/2/1995,5 Anthes Trail,SYSTEM +ABC_1572,Roma Jacques,9/4/1990,6661 Sycamore Lane,WEB +ABC_1573,Rickert Lightbowne,14/04/1981,78020 Mendota Park,MOBILE +ABC_1574,Weidar Einchcombe,26/04/1988,3 American Ash Way,QA +ABC_1575,Thorpe Chewter,16/12/1995,959 Bunting Pass,QA +ABC_1576,Hillie Haycock,21/10/1982,256 Monterey Street,MOBILE +ABC_1577,Dena Dubarry,3/12/1982,7572 Hoepker Alley,ADMIN +ABC_1578,Evaleen Storck,3/1/1986,00 Luster Street,WEB +ABC_1579,Nikolaos Damato,8/3/1987,1649 Little Fleur Place,SYSTEM +ABC_1580,Antin Emby,10/9/1993,02085 Birchwood Road,QA +ABC_1581,Jobie Khomin,19/12/1995,8 Amoth Drive,WEB +ABC_1582,Jori Tofts,8/9/1999,68335 Village Green Pass,WEB +ABC_1583,Lee Atmore,21/05/1990,838 Norway Maple Avenue,ADMIN +ABC_1584,Ernst Mackleden,20/10/1993,9 Northport Road,MOBILE +ABC_1585,Harman Cave,14/02/1980,218 Lotheville Lane,MOBILE +ABC_1586,Sheela Kerwen,19/05/1990,4 Charing Cross Center,WEB +ABC_1587,Marrissa Crummay,26/02/1988,4124 Chinook Place,WEB +ABC_1588,Rose Bomb,4/1/1990,80255 Union Place,WEB +ABC_1589,Myra Zoren,21/08/1995,265 Miller Junction,MOBILE +ABC_1590,Tracie Bidewell,15/10/1985,59 Oriole Pass,SYSTEM +ABC_1591,Kym Forster,6/9/1988,995 Ryan Point,MOBILE +ABC_1592,Shae Andreev,21/06/1995,371 Valley Edge Court,ADMIN +ABC_1593,Franky Passey,21/04/1989,39938 Hudson Terrace,MOBILE +ABC_1594,Allyce Oldall,14/09/1992,79345 Meadow Vale Road,ADMIN +ABC_1595,Stephie Fletcher,8/4/1982,52835 Anthes Court,WEB +ABC_1596,Agnella Salzberger,22/10/1994,17808 Goodland Circle,MOBILE +ABC_1597,Nelie Browning,12/2/1995,212 6th Center,QA +ABC_1598,Angy Martschke,9/4/1987,04881 Dawn Street,MOBILE +ABC_1599,Swen Tuison,30/09/1986,3340 Troy Hill,QA +ABC_1600,Kelsey Spollen,5/8/1994,96 Truax Parkway,QA +ABC_1601,Zahara Quipp,14/06/1980,94 Old Shore Pass,WEB +ABC_1602,Norah Grimsditch,20/02/1989,03 Myrtle Center,WEB +ABC_1603,Malanie Wankel,5/1/1982,9 Hagan Hill,MOBILE +ABC_1604,Albert Dady,30/05/1991,2 Lakeland Alley,MOBILE +ABC_1605,Welch Lindenbluth,6/1/1989,176 Corry Place,WEB +ABC_1606,Rozanne Giblin,15/02/1992,632 Fallview Street,WEB +ABC_1607,Mariette Dybell,2/11/1992,2 Alpine Crossing,WEB +ABC_1608,Jayme Cerie,2/9/1981,6 Old Gate Crossing,WEB +ABC_1609,Staford Kilfoyle,16/03/1982,50 Killdeer Park,WEB +ABC_1610,Bernetta Muscat,5/4/1995,12915 Comanche Alley,WEB +ABC_1611,Wyndham Milliken,16/07/1988,943 Ridge Oak Place,SYSTEM +ABC_1612,Pierson Mannock,24/11/1983,94664 Jackson Place,WEB +ABC_1613,Barbra Benoy,25/11/1987,1054 Lighthouse Bay Park,SYSTEM +ABC_1614,Prescott Benedyktowicz,13/10/1983,8600 Swallow Crossing,WEB +ABC_1615,Amber Chance,20/02/1987,7921 Moose Lane,ADMIN +ABC_1616,Meridith Jessep,1/11/1982,990 Carberry Parkway,MOBILE +ABC_1617,Karine Tonn,13/03/1998,3 Prairie Rose Terrace,ADMIN +ABC_1618,Lari Bastide,1/1/1996,6 Toban Hill,MOBILE +ABC_1619,Shaw Fassbindler,22/07/1997,7756 Elmside Circle,QA +ABC_1620,Niccolo Ganders,19/05/1988,68864 Miller Place,ADMIN +ABC_1621,Portie Eidler,11/3/1981,8 Darwin Avenue,MOBILE +ABC_1622,Agnese Bruniges,19/03/1987,42 Artisan Point,ADMIN +ABC_1623,Dasya Vlasyev,22/10/1991,761 Jana Drive,MOBILE +ABC_1624,Lacey Bruckmann,18/08/1992,94215 Victoria Place,QA +ABC_1625,Alta Cisco,18/06/1997,57363 Anniversary Trail,QA +ABC_1626,Zsazsa Lavrick,11/4/1996,7591 Packers Park,MOBILE +ABC_1627,Mill Woodson,9/3/1986,414 Heffernan Road,WEB +ABC_1628,Amii Figg,9/9/1984,17 Morrow Avenue,ADMIN +ABC_1629,Hall Lamplugh,11/8/1992,1303 Buhler Terrace,MOBILE +ABC_1630,Spenser Venour,4/2/1982,8 Lawn Trail,QA +ABC_1631,Crissy Leidl,12/9/1984,4 Center Center,WEB +ABC_1632,Dniren Exell,14/11/1998,372 Mosinee Avenue,MOBILE +ABC_1633,Briano Sample,28/04/1981,84 Village Green Junction,MOBILE +ABC_1634,Rutter Sweet,4/7/1990,129 Spaight Road,SYSTEM +ABC_1635,Ilysa Wix,27/06/1990,9 Knutson Hill,ADMIN +ABC_1636,Angeline Mummery,23/09/1984,56190 Dapin Junction,MOBILE +ABC_1637,Jessalin Snoxall,14/03/1988,16 Loomis Trail,SYSTEM +ABC_1638,Billi Leet,16/11/1982,30 Eagle Crest Road,MOBILE +ABC_1639,Anselma Nerne,14/02/1989,562 Farmco Avenue,MOBILE +ABC_1640,Regine Joan,3/12/1984,314 Corry Crossing,ADMIN +ABC_1641,Ramon Vasiliev,27/11/1983,5 Algoma Drive,WEB +ABC_1642,Daloris Delbergue,5/7/1980,8 Mendota Junction,QA +ABC_1643,Merna Janew,9/3/1994,9 Coleman Way,QA +ABC_1644,Brendin Guidoni,6/5/1986,66118 Stang Circle,QA +ABC_1645,Abelard Ramsdale,22/03/1996,70 Fieldstone Hill,MOBILE +ABC_1646,Boone Walesby,15/07/1982,0 Huxley Crossing,QA +ABC_1647,Remington Doughartie,6/9/1983,806 Tennessee Circle,QA +ABC_1648,Giovanni Houltham,1/4/1999,4479 Di Loreto Center,MOBILE +ABC_1649,Bambi Kleinerman,28/06/1987,35234 Mandrake Trail,MOBILE +ABC_1650,Alyson Wilber,30/05/1999,7 Valley Edge Circle,QA +ABC_1651,Jehanna Hattrick,15/04/1995,6 Susan Circle,SYSTEM +ABC_1652,Giulia Pabelik,9/9/1982,1 Maple Wood Place,SYSTEM +ABC_1653,Gustavo Barrington,13/12/1999,773 Fair Oaks Point,ADMIN +ABC_1654,Orel Leggin,16/07/1998,0 Bobwhite Plaza,WEB +ABC_1655,Carline Kimble,25/09/1984,50 Colorado Center,MOBILE +ABC_1656,Jakie Dummer,11/6/1980,19841 Thompson Pass,SYSTEM +ABC_1657,Almeta Simonou,30/04/1993,04 Michigan Way,ADMIN +ABC_1658,Wallie Gorioli,6/9/1998,4972 Truax Way,SYSTEM +ABC_1659,Sander Van Weedenburg,31/07/1987,6 Green Ridge Avenue,QA +ABC_1660,Alayne Dakin,2/5/1993,109 Pearson Point,WEB +ABC_1661,Alick Cuardall,20/10/1986,95423 Milwaukee Drive,SYSTEM +ABC_1662,Hastings Kunz,7/5/1987,60048 Karstens Crossing,MOBILE +ABC_1663,Gerrie Woolhouse,10/1/1997,9741 Northridge Plaza,MOBILE +ABC_1664,Ag Radley,13/09/1985,44 Melody Lane,SYSTEM +ABC_1665,Rusty Maliphant,1/7/1987,2 Hoffman Alley,QA +ABC_1666,Michaeline Rigbye,22/11/1981,353 Moland Plaza,ADMIN +ABC_1667,Angie Merrgen,23/11/1984,2993 Lien Trail,WEB +ABC_1668,Kylen Muslim,16/08/1991,82 Warrior Drive,SYSTEM +ABC_1669,Florence Colnet,22/12/1989,38 Hintze Court,MOBILE +ABC_1670,Mohandas Hair,6/1/1984,5026 Evergreen Center,ADMIN +ABC_1671,Alasdair Shepstone,22/05/1980,34 Bowman Point,SYSTEM +ABC_1672,Roze Kiwitz,15/06/1985,5 Schurz Avenue,MOBILE +ABC_1673,Faythe Hindmoor,16/06/1990,42560 Birchwood Drive,WEB +ABC_1674,Jami Tabord,7/10/1996,4668 Maywood Trail,QA +ABC_1675,Ellen Mohun,25/02/1983,421 Blackbird Center,QA +ABC_1676,El Brennan,26/05/1986,8 Shoshone Plaza,WEB +ABC_1677,Cathrine Farnish,11/1/1982,58422 West Parkway,MOBILE +ABC_1678,Elane Bleything,1/5/1995,6299 Grim Crossing,WEB +ABC_1679,Bartram Kitt,10/7/1986,8 Hagan Pass,QA +ABC_1680,Lek Rathmell,14/05/1995,3 Dovetail Road,ADMIN +ABC_1681,Rozanna Plesing,23/10/1988,1 Dorton Way,QA +ABC_1682,Milena Bravington,18/01/1980,58946 Rutledge Hill,QA +ABC_1683,Alic Earie,19/11/1984,84 Marquette Junction,QA +ABC_1684,Bronson Cromarty,23/05/1997,9 Namekagon Pass,WEB +ABC_1685,Bria Southerden,20/05/1982,9 Reinke Road,ADMIN +ABC_1686,Ogdon Ferronel,8/2/1983,2593 Eastwood Court,SYSTEM +ABC_1687,Aloysius Coviello,3/1/1989,37479 Meadow Vale Circle,QA +ABC_1688,Somerset Trunchion,16/11/1995,7494 Dovetail Pass,MOBILE +ABC_1689,Abramo Easton,31/08/1995,321 Sloan Lane,MOBILE +ABC_1690,Dyane Coyle,20/10/1994,18693 East Point,WEB +ABC_1691,Seward O'Mullally,18/01/1985,7295 Spenser Circle,QA +ABC_1692,Christy Bontine,14/05/1982,33900 Summer Ridge Park,QA +ABC_1693,Amos Maffey,5/11/1994,23694 Reinke Way,WEB +ABC_1694,Gard Barefoot,13/02/1990,1 Eliot Junction,MOBILE +ABC_1695,Lynelle Nyssen,28/05/1998,70 Mitchell Way,WEB +ABC_1696,Mariann O' Molan,24/04/1995,73800 Laurel Circle,QA +ABC_1697,Karlan Harbach,15/06/1993,00860 Northland Plaza,WEB +ABC_1698,Rey Knaggs,13/10/1997,96 Harbort Point,WEB +ABC_1699,Bibbye Benmore,16/01/1981,7600 Green Point,MOBILE +ABC_1700,Granger Pirdue,26/12/1995,957 Bartelt Drive,MOBILE +ABC_1701,Legra Celloni,2/2/1991,1 Memorial Plaza,MOBILE +ABC_1702,Kori Lempertz,13/12/1995,902 Hooker Trail,QA +ABC_1703,Rosie Gerdts,13/11/1987,1 Nobel Terrace,WEB +ABC_1704,Koenraad Gartshore,21/06/1988,11780 Bobwhite Pass,WEB +ABC_1705,Amos Wann,12/6/1981,32430 Toban Parkway,SYSTEM +ABC_1706,Staci Orbell,9/1/1988,93 Barnett Junction,SYSTEM +ABC_1707,Lenard McCullagh,23/12/1995,28307 Jenifer Plaza,MOBILE +ABC_1708,Kate Brennans,29/09/1981,1 Buhler Hill,SYSTEM +ABC_1709,Kelci Westney,1/5/1994,89 Brickson Park Alley,MOBILE +ABC_1710,Valenka Nunn,27/12/1992,9230 Fuller Center,MOBILE +ABC_1711,Isa Cowdray,25/06/1997,561 Manitowish Trail,SYSTEM +ABC_1712,Cathe Bendix,8/8/1993,9 Jackson Lane,ADMIN +ABC_1713,Rollins Pyser,4/12/1997,025 Shasta Crossing,MOBILE +ABC_1714,Saraann Matussov,17/04/1989,3516 Arapahoe Pass,WEB +ABC_1715,Adrea Amy,23/04/1993,75 Victoria Parkway,WEB +ABC_1716,Gilli Swettenham,28/10/1996,2 Luster Street,WEB +ABC_1717,Michael Apted,29/03/1980,16430 Schmedeman Parkway,ADMIN +ABC_1718,Malinda Khristyukhin,16/04/1984,0142 Hudson Park,SYSTEM +ABC_1719,Jen Custy,20/10/1982,1134 Moose Park,ADMIN +ABC_1720,Sabine Boyes,17/08/1998,66 Lukken Avenue,QA +ABC_1721,Nester Gronow,10/8/1986,206 Karstens Court,MOBILE +ABC_1722,Dianne Bridgeman,3/3/1990,6123 Lunder Road,QA +ABC_1723,Catarina Ianniello,19/10/1998,19 Rowland Trail,WEB +ABC_1724,Hedvig Raspin,19/01/1993,15 Ryan Court,MOBILE +ABC_1725,Caesar Tute,30/09/1980,17 Heffernan Court,ADMIN +ABC_1726,Wren Zecchii,23/09/1992,10 Londonderry Crossing,SYSTEM +ABC_1727,Gilemette Langtry,12/1/1985,2 Oneill Place,WEB +ABC_1728,Barny Iwanczyk,5/4/1986,55 Cordelia Drive,MOBILE +ABC_1729,Joletta Boliver,26/05/1982,14 Boyd Trail,QA +ABC_1730,Misty Skelton,15/07/1994,3 Kingsford Park,WEB +ABC_1731,Berget Broxton,28/07/1984,7 Oak Hill,SYSTEM +ABC_1732,Emory Stelli,24/05/1995,597 Dorton Drive,MOBILE +ABC_1733,Trev Cheng,2/6/1989,109 Express Parkway,MOBILE +ABC_1734,Harli Quest,18/07/1998,4631 Doe Crossing Avenue,MOBILE +ABC_1735,Tressa Rabbage,11/5/1993,21800 Anthes Crossing,QA +ABC_1736,Milty Henworth,25/10/1996,84698 Ridgeview Circle,MOBILE +ABC_1737,Dwain McElory,4/5/1990,5942 Hauk Junction,WEB +ABC_1738,Mignon Clayworth,10/4/1993,5 Sugar Trail,QA +ABC_1739,Amandi Schindler,30/08/1983,85 Nobel Street,MOBILE +ABC_1740,Lincoln Playhill,10/4/1980,33 Waubesa Avenue,SYSTEM +ABC_1741,Kermy Hagger,11/5/1999,88839 Mallory Center,WEB +ABC_1742,Lorelle Yakubovics,15/10/1998,70 Continental Alley,MOBILE +ABC_1743,Elisa Florio,8/10/1988,522 Valley Edge Parkway,WEB +ABC_1744,Charil Breckell,21/11/1983,2 Artisan Hill,ADMIN +ABC_1745,Daven Banbrigge,3/1/1992,58481 Kings Terrace,WEB +ABC_1746,Cicily Larcombe,20/06/1991,06911 Straubel Plaza,WEB +ABC_1747,Isaac Cortnay,4/2/1985,7864 Oneill Pass,WEB +ABC_1748,Abigail Lornsen,25/04/1993,1 Summerview Center,SYSTEM +ABC_1749,Keane Chaise,4/11/1993,2346 Cody Terrace,ADMIN +ABC_1750,Gustaf Fermor,23/02/1988,2 Shoshone Street,MOBILE +ABC_1751,Ara Roe,23/01/1992,4 Sunbrook Place,WEB +ABC_1752,Charita Hellens,8/5/1992,11205 Florence Parkway,ADMIN +ABC_1753,Eleanore Dubock,5/6/1983,07 Miller Avenue,QA +ABC_1754,Revkah Bateup,4/3/1995,28 Pierstorff Junction,WEB +ABC_1755,Clywd Gobbett,14/09/1996,42 Huxley Point,MOBILE +ABC_1756,Cicely Grinin,12/8/1983,2760 Pierstorff Drive,SYSTEM +ABC_1757,Vita Ebbetts,23/01/1985,07 Packers Drive,MOBILE +ABC_1758,Robbie Forri,22/02/1983,07191 Parkside Crossing,MOBILE +ABC_1759,Lucilia Friett,18/02/1989,5 Continental Junction,SYSTEM +ABC_1760,Bert Dunckley,6/8/1995,30 Charing Cross Road,WEB +ABC_1761,Emylee Devennie,5/8/1991,51725 Evergreen Trail,QA +ABC_1762,Kaylyn Tuson,16/09/1982,774 Schmedeman Court,QA +ABC_1763,Vinita Cromack,26/11/1980,1963 Elmside Plaza,QA +ABC_1764,Deane Twiname,17/05/1985,4782 Texas Plaza,ADMIN +ABC_1765,Cyb Lobell,14/10/1986,7 Jay Crossing,QA +ABC_1766,Mildred Guyet,24/10/1996,07 Ohio Avenue,SYSTEM +ABC_1767,Hendrick McElree,13/09/1981,67770 Lighthouse Bay Court,WEB +ABC_1768,Veronike Mayers,22/03/1980,7 Havey Center,ADMIN +ABC_1769,Malvin Sultana,27/08/1985,8524 North Road,SYSTEM +ABC_1770,Bernette Merredy,8/7/1999,341 Luster Street,MOBILE +ABC_1771,Jedd Couve,6/9/1986,6645 Johnson Parkway,MOBILE +ABC_1772,Jessi Oxtarby,2/7/1992,3782 Oakridge Crossing,MOBILE +ABC_1773,Rosita Doumer,2/2/1991,066 Northland Street,WEB +ABC_1774,Arty Olivetta,1/5/1998,3524 Grover Trail,SYSTEM +ABC_1775,Shanna Aldiss,31/08/1983,42 Crest Line Parkway,MOBILE +ABC_1776,Sebastian Beldan,3/7/1995,0 Manufacturers Lane,SYSTEM +ABC_1777,Udell Friatt,9/12/1981,09 Banding Parkway,QA +ABC_1778,Cecile Lewsley,12/3/1991,44169 Westridge Alley,ADMIN +ABC_1779,Jacquenetta Abelson,18/12/1984,16972 Kropf Circle,MOBILE +ABC_1780,Matelda Madgin,6/11/1980,914 4th Hill,SYSTEM +ABC_1781,Skippy Howick,2/10/1994,2 Goodland Drive,SYSTEM +ABC_1782,Welsh Towe,11/11/1984,681 Clyde Gallagher Pass,MOBILE +ABC_1783,Lane Fayne,27/12/1991,0 Dunning Place,MOBILE +ABC_1784,Berk Batsford,16/01/1982,9 Myrtle Avenue,WEB +ABC_1785,Even Ronnay,28/10/1993,140 Hermina Hill,MOBILE +ABC_1786,Garrek Castles,19/04/1994,2169 Esch Circle,WEB +ABC_1787,Vince Marchi,21/04/1985,62637 American Lane,SYSTEM +ABC_1788,Breanne Penniall,28/12/1980,320 Armistice Hill,ADMIN +ABC_1789,Gwenneth Mahon,22/10/1998,0 Sachs Road,WEB +ABC_1790,Roi Haveline,6/6/1988,8 Kinsman Way,SYSTEM +ABC_1791,Jsandye Dutton,7/9/1994,7 Oneill Place,MOBILE +ABC_1792,Koressa Rance,29/03/1984,14 Veith Place,SYSTEM +ABC_1793,Tallulah Blindmann,9/8/1990,59 Blaine Drive,WEB +ABC_1794,Engelbert O'Kane,19/01/1995,03395 Burrows Park,MOBILE +ABC_1795,Siouxie Burge,8/11/1993,265 Sachtjen Plaza,WEB +ABC_1796,Ladonna Rue,29/10/1992,1399 Talisman Hill,QA +ABC_1797,Quinton Sword,15/10/1997,63996 Oak Center,QA +ABC_1798,Roley Castagna,8/11/1995,22452 Ridgeway Crossing,MOBILE +ABC_1799,Ursuline Moors,2/10/1995,905 Rowland Alley,MOBILE +ABC_1800,Witty Rosser,16/12/1995,19 Nevada Drive,WEB +ABC_1801,Julius Bolino,13/04/1995,7179 Westport Road,MOBILE +ABC_1802,Rudie Mounfield,5/6/1999,0 Delladonna Trail,MOBILE +ABC_1803,Jesse Quilliam,16/03/1994,28355 Debs Circle,QA +ABC_1804,Koenraad Weston,14/05/1999,74880 Debs Circle,QA +ABC_1805,Martin Castana,25/10/1995,6244 Longview Center,WEB +ABC_1806,Kathryn Baldree,27/12/1989,050 Forest Dale Crossing,QA +ABC_1807,Vernice Ollet,23/03/1982,74167 Comanche Point,QA +ABC_1808,Gillan Gong,13/08/1984,0 Lunder Alley,SYSTEM +ABC_1809,Codie Woodwind,13/02/1997,43 Little Fleur Court,SYSTEM +ABC_1810,Abbey Smouten,8/9/1986,2 Laurel Trail,QA +ABC_1811,Alyce Deegin,15/10/1988,46937 Westerfield Park,ADMIN +ABC_1812,Kiley Berg,16/04/1982,626 Gale Way,SYSTEM +ABC_1813,Alexia Timlin,17/02/1981,762 Thierer Junction,MOBILE +ABC_1814,Katie Goudard,6/8/1995,9 Holmberg Trail,WEB +ABC_1815,Elijah Howe,22/07/1985,2 Derek Center,WEB +ABC_1816,Cynde Dewerson,17/05/1986,8 8th Street,ADMIN +ABC_1817,Duncan Culleford,2/8/1996,0 Laurel Court,WEB +ABC_1818,Clarke Cumpsty,15/05/1985,31899 Arrowood Plaza,QA +ABC_1819,Nicholas Scola,28/09/1981,5 Blaine Crossing,MOBILE +ABC_1820,Annaliese Le Cornu,9/11/1986,0075 2nd Parkway,WEB +ABC_1821,Gilberte Halsted,25/09/1999,97 Dayton Plaza,SYSTEM +ABC_1822,Goldie Preshous,2/10/1983,45 Fair Oaks Parkway,MOBILE +ABC_1823,Bili Lainton,26/01/1998,10163 Thackeray Hill,QA +ABC_1824,Dinnie Ginman,18/09/1983,295 Nancy Court,SYSTEM +ABC_1825,Elly Fasset,19/02/1986,3 Mayer Way,MOBILE +ABC_1826,Cecilla Wallbutton,21/06/1991,6343 Helena Terrace,QA +ABC_1827,Blaine Lidgley,15/12/1996,5 Garrison Hill,MOBILE +ABC_1828,Jada Hasling,20/04/1982,1 Barby Pass,MOBILE +ABC_1829,Calli Coaster,19/02/1989,47 Elka Terrace,ADMIN +ABC_1830,Marrissa Darko,2/4/1987,4543 Mcguire Park,MOBILE +ABC_1831,Franny Jizhaki,8/9/1984,88 Westport Point,ADMIN +ABC_1832,Odele Duchenne,18/06/1996,2057 Sutherland Park,QA +ABC_1833,Arte Felstead,29/02/1996,27306 Delaware Way,MOBILE +ABC_1834,Sophey Mathieson,14/02/1989,212 Stone Corner Terrace,MOBILE +ABC_1835,Ferdinanda Tarbet,12/6/1998,2 Hermina Avenue,WEB +ABC_1836,Elsbeth Sarfat,16/08/1989,00180 Elmside Place,SYSTEM +ABC_1837,Jaquelin Masding,30/03/1987,3 Atwood Parkway,ADMIN +ABC_1838,Idette Standering,9/11/1997,7 Hovde Park,WEB +ABC_1839,Brittani Byatt,16/02/1984,85 Goodland Road,MOBILE +ABC_1840,Tracy Bramhill,15/03/1985,36451 Orin Place,WEB +ABC_1841,Sidney Bulcroft,1/6/1993,218 8th Parkway,WEB +ABC_1842,Sawyer Paolo,9/2/1982,98185 Loeprich Park,QA +ABC_1843,Friedrich Norcross,11/2/1984,0 2nd Street,WEB +ABC_1844,Vivyan Hebbes,4/9/1984,775 Mendota Plaza,SYSTEM +ABC_1845,Barbra Grewer,4/9/1995,501 Welch Circle,QA +ABC_1846,Maurise Aguirre,16/12/1990,60 Crescent Oaks Trail,WEB +ABC_1847,Leroi Sueter,1/1/1986,94 Saint Paul Center,SYSTEM +ABC_1848,Ansell Prium,10/12/1995,25580 Hauk Trail,MOBILE +ABC_1849,Vikki Sutherns,25/04/1989,8 La Follette Pass,QA +ABC_1850,Layney Gatlin,4/8/1980,22 Oneill Hill,ADMIN +ABC_1851,Gregoire Bangham,9/3/1988,479 Reinke Lane,ADMIN +ABC_1852,Shepperd Petrelli,19/03/1986,1035 Darwin Place,SYSTEM +ABC_1853,Paulette Jako,16/07/1992,9 Eliot Terrace,SYSTEM +ABC_1854,Clotilda Arnke,2/8/1986,9 Cottonwood Street,WEB +ABC_1855,Jermayne Sheilds,15/11/1987,5577 Fordem Junction,QA +ABC_1856,Hewett Lynthal,29/12/1983,37078 Nancy Lane,WEB +ABC_1857,Sam Ropkins,13/01/1998,697 Beilfuss Road,SYSTEM +ABC_1858,Aristotle Popping,27/04/1980,647 Manufacturers Terrace,QA +ABC_1859,Anabal Wong,25/08/1995,97 Portage Parkway,MOBILE +ABC_1860,Alicia Attoe,31/05/1985,723 Petterle Street,MOBILE +ABC_1861,Berta Matovic,31/05/1996,9 Vermont Crossing,WEB +ABC_1862,Ingamar Callar,3/2/1989,806 Holmberg Circle,MOBILE +ABC_1863,Hastings Venus,2/6/1986,0 Pankratz Plaza,ADMIN +ABC_1864,Edmund Colliford,5/1/1985,506 Valley Edge Way,SYSTEM +ABC_1865,Thain Sendley,7/3/1984,536 Pond Street,SYSTEM +ABC_1866,Alonzo Cleife,10/12/1995,67051 Troy Parkway,MOBILE +ABC_1867,Jenine Cartin,31/08/1996,695 Fisk Point,SYSTEM +ABC_1868,Merna Gobat,28/07/1992,17 Hauk Center,WEB +ABC_1869,Yetty Kattenhorn,18/10/1992,33272 Oneill Road,ADMIN +ABC_1870,Joyce Maurice,15/11/1991,6 Johnson Junction,SYSTEM +ABC_1871,Phelia O'Kennavain,5/12/1987,9252 Waxwing Avenue,MOBILE +ABC_1872,Waldo Sawney,13/06/1982,0698 Hanson Place,WEB +ABC_1873,Rollo Dodshun,2/2/1981,293 Corry Point,ADMIN +ABC_1874,Gladi Meharry,16/06/1999,23 Schiller Parkway,SYSTEM +ABC_1875,Kitty Blum,3/3/1996,0764 Sage Parkway,MOBILE +ABC_1876,Timmy Ryman,6/8/1995,97944 Utah Street,WEB +ABC_1877,Auberon Vicarey,6/12/1982,4 Arkansas Avenue,WEB +ABC_1878,Siana Medina,2/4/1996,088 Laurel Court,MOBILE +ABC_1879,Dorie Ohlsen,1/12/1997,4316 Quincy Drive,WEB +ABC_1880,Yasmin Cuttler,4/7/1990,1 Grayhawk Drive,WEB +ABC_1881,Hollis Kleisle,5/10/1996,5 Forster Point,SYSTEM +ABC_1882,Ilyse Lanston,14/08/1990,8 Forest Run Crossing,MOBILE +ABC_1883,Nissy Tembey,20/10/1983,6 Luster Place,QA +ABC_1884,Gwenette Dundon,23/02/1997,6 Raven Way,MOBILE +ABC_1885,Carlye Stickels,22/11/1991,10 Dovetail Crossing,QA +ABC_1886,Clerc Chumley,9/2/1989,9479 Morning Drive,MOBILE +ABC_1887,Mathilda Mattisssen,17/08/1988,30 Katie Terrace,SYSTEM +ABC_1888,Inga Kelsall,26/07/1992,4486 Summer Ridge Point,WEB +ABC_1889,Orin Creech,8/1/1997,0643 Bashford Hill,SYSTEM +ABC_1890,Anjanette Pethrick,27/10/1987,702 Cherokee Terrace,QA +ABC_1891,Sindee Lammin,25/06/1989,19092 Moulton Park,WEB +ABC_1892,Grange MacIllrick,20/07/1983,4949 Rutledge Parkway,QA +ABC_1893,Tommie Bragginton,1/11/1990,208 Cordelia Point,MOBILE +ABC_1894,Barrie Dell Casa,20/11/1987,5 Duke Point,WEB +ABC_1895,Alexi Cheney,23/01/1982,102 Glendale Trail,QA +ABC_1896,Lisha Fennick,15/07/1993,8649 Surrey Junction,SYSTEM +ABC_1897,Jewell Gallego,30/05/1988,4952 Onsgard Court,SYSTEM +ABC_1898,Marylee Richardson,7/11/1999,9 Cascade Street,WEB +ABC_1899,Roxy Kennaird,30/06/1981,59 Heath Way,WEB +ABC_1900,Matelda Dewdney,4/4/1987,15171 Sutherland Hill,ADMIN +ABC_1901,Robin Thomesson,17/03/1995,13517 Bayside Junction,WEB +ABC_1902,Dion Berston,5/10/1984,3594 Scoville Court,ADMIN +ABC_1903,Albertina Griston,24/10/1981,6 Washington Crossing,WEB +ABC_1904,Beulah Nugent,12/1/1999,242 Mcguire Road,QA +ABC_1905,Thorvald Frackiewicz,18/09/1980,4299 Utah Circle,QA +ABC_1906,Mac Petrusch,28/06/1988,52783 Mockingbird Park,WEB +ABC_1907,Agneta Kollasch,26/03/1992,158 Hagan Terrace,WEB +ABC_1908,Gallard Dow,6/8/1988,0295 Arkansas Parkway,ADMIN +ABC_1909,Nelson Bratchell,18/12/1998,1 Dakota Avenue,SYSTEM +ABC_1910,Darb Brunstan,4/3/1992,6620 Glacier Hill Road,MOBILE +ABC_1911,Clarita Pollendine,23/07/1987,408 Division Lane,ADMIN +ABC_1912,Gasper MacLardie,7/5/1998,6 Raven Way,QA +ABC_1913,Owen Domnick,22/12/1997,05 Carberry Place,QA +ABC_1914,Rheba Torfin,11/1/1987,9595 Vermont Hill,MOBILE +ABC_1915,Jordain Devonish,13/09/1996,0612 Center Plaza,QA +ABC_1916,Delphinia Tuftin,22/09/1985,89 Holmberg Court,WEB +ABC_1917,Gilburt Greenall,19/07/1989,15 Gateway Point,WEB +ABC_1918,Holli Matkin,15/07/1995,5 Jenna Plaza,WEB +ABC_1919,Eva Medcalfe,25/11/1980,44010 Magdeline Pass,QA +ABC_1920,Jaimie Thomerson,16/06/1993,3 Mallory Center,QA +ABC_1921,Delly Doorey,12/7/1994,32 Prairieview Circle,MOBILE +ABC_1922,Arleta Risbridge,17/08/1993,1 Burning Wood Circle,WEB +ABC_1923,Tommi Mews,19/07/1997,1 Dahle Place,QA +ABC_1924,Kerby Vicar,20/10/1997,55 Meadow Vale Alley,WEB +ABC_1925,Calley Waleran,29/04/1982,44 Sloan Plaza,QA +ABC_1926,Elsbeth Ware,26/06/1987,51 Logan Trail,QA +ABC_1927,Willa Ilchuk,17/09/1995,79462 Dovetail Circle,WEB +ABC_1928,Winnie Turneux,15/09/1980,13830 Vermont Crossing,SYSTEM +ABC_1929,Lawry Hellings,12/8/1988,5778 Carey Way,ADMIN +ABC_1930,Brendin Dagleas,5/12/1984,493 Northfield Lane,WEB +ABC_1931,Nikita Purle,28/08/1986,36 Ryan Terrace,MOBILE +ABC_1932,Virge Rilton,24/04/1990,433 Waywood Parkway,SYSTEM +ABC_1933,Amabelle Heberden,16/09/1988,22327 Eliot Road,SYSTEM +ABC_1934,Donica Duddin,5/6/1997,213 Corben Alley,MOBILE +ABC_1935,Anna-maria Rodgier,4/3/1991,699 Valley Edge Crossing,QA +ABC_1936,Thoma Petrolli,2/4/1994,35850 Moose Terrace,ADMIN +ABC_1937,Gareth Broadfoot,28/05/1983,8 Glendale Street,WEB +ABC_1938,Midge Burgill,9/10/1991,26 Nobel Pass,SYSTEM +ABC_1939,Orville Dowrey,16/04/1987,433 Independence Junction,SYSTEM +ABC_1940,Inge Peverell,4/12/1990,35301 Morningstar Hill,SYSTEM +ABC_1941,Ginnie Hammand,3/11/1989,1 Westridge Way,WEB +ABC_1942,Caprice Dell Casa,6/8/1995,8 Upham Park,MOBILE +ABC_1943,Esteban Stapells,2/12/1982,45491 Corben Trail,WEB +ABC_1944,Marylinda Hartzog,23/10/1991,0 Delladonna Trail,WEB +ABC_1945,Xymenes Exley,22/10/1984,53 Knutson Circle,QA +ABC_1946,Rosemary Notton,11/4/1988,2 Summer Ridge Avenue,WEB +ABC_1947,Myrilla Elderfield,7/3/1991,462 Manitowish Center,WEB +ABC_1948,Raphaela Dowsey,10/5/1989,4 Jay Park,WEB +ABC_1949,Gerardo Hawkridge,17/07/1997,0641 Parkside Crossing,ADMIN +ABC_1950,Fernande Troth,13/11/1998,27321 Killdeer Lane,WEB +ABC_1951,Dorise Brammall,26/07/1993,9899 Northridge Point,SYSTEM +ABC_1952,Peri Wastie,17/01/1983,03940 Graedel Place,SYSTEM +ABC_1953,Lammond Tocknell,24/07/1991,147 Dayton Road,ADMIN +ABC_1954,Willamina Tissiman,23/08/1990,12145 7th Drive,MOBILE +ABC_1955,Wallas Towell,5/3/1989,4123 Browning Court,WEB +ABC_1956,Cozmo Dutnall,3/11/1984,7722 Bluestem Crossing,WEB +ABC_1957,Judi Blakeway,19/01/1993,292 Merrick Parkway,ADMIN +ABC_1958,Lisette Duthie,24/05/1996,8 Summer Ridge Point,QA +ABC_1959,Ariela Holcroft,5/1/1990,4191 Elka Street,SYSTEM +ABC_1960,Milli Faudrie,22/12/1987,943 Katie Park,QA +ABC_1961,Waneta Stoves,2/2/1980,738 Dawn Center,MOBILE +ABC_1962,Obidiah Stanbro,4/1/1993,561 Truax Hill,MOBILE +ABC_1963,Jedediah Jansema,22/03/1999,6 Farragut Avenue,WEB +ABC_1964,Margeaux Ducker,19/11/1990,7 Main Point,SYSTEM +ABC_1965,Rosalinde Marchand,5/3/1984,51338 Meadow Ridge Way,WEB +ABC_1966,Ollie Haddock,23/06/1990,6100 Cherokee Court,MOBILE +ABC_1967,Adelina Dayer,29/11/1997,6 Browning Parkway,MOBILE +ABC_1968,Berta Downham,11/3/1998,673 Oriole Street,ADMIN +ABC_1969,Lynna Andover,29/04/1986,66989 International Lane,WEB +ABC_1970,Saxe Frusher,30/11/1990,0821 Mccormick Place,WEB +ABC_1971,Mar Steuhlmeyer,19/03/1992,8 Stephen Park,QA +ABC_1972,Sydney Reasun,27/06/1985,271 Forest Dale Drive,WEB +ABC_1973,Roberta Olle,14/06/1990,4 Kropf Circle,WEB +ABC_1974,Clemmy Gatheridge,6/2/1994,3624 Golden Leaf Park,SYSTEM +ABC_1975,Breanne Sinnocke,2/8/1991,6636 Parkside Court,SYSTEM +ABC_1976,Twyla Lamprecht,21/06/1997,39 Hermina Pass,SYSTEM +ABC_1977,Clarabelle Adhams,26/10/1991,1 Ramsey Terrace,WEB +ABC_1978,Dennison Strickler,26/10/1999,9112 Lyons Drive,MOBILE +ABC_1979,Tommy Midghall,17/10/1998,59848 Clarendon Pass,WEB +ABC_1980,Emmit Flag,7/4/1981,241 Towne Alley,QA +ABC_1981,Phedra Bumpass,10/10/1995,46414 New Castle Plaza,WEB +ABC_1982,Ardine Georgins,18/07/1995,4 Emmet Junction,ADMIN +ABC_1983,Eilis Kirvin,9/12/1981,47 Utah Plaza,WEB +ABC_1984,Eal Field,25/09/1981,67921 Surrey Junction,SYSTEM +ABC_1985,Courtnay Lewington,8/2/1992,1250 Barnett Place,QA +ABC_1986,Toiboid Barby,26/05/1998,5236 Porter Court,MOBILE +ABC_1987,Emilia Brumble,20/07/1999,56 Sommers Trail,QA +ABC_1988,Danila Polglase,27/02/1988,00919 Division Circle,MOBILE +ABC_1989,Brade Dmisek,8/9/1993,45 Westport Park,QA +ABC_1990,Micheil Tracy,16/03/1999,4896 Derek Circle,QA +ABC_1991,Rickie Betjeman,6/4/1992,92 Merchant Drive,MOBILE +ABC_1992,Brittan Hairsnape,15/01/1984,0845 3rd Avenue,WEB +ABC_1993,Ragnar Scotfurth,26/05/1992,478 Little Fleur Crossing,QA +ABC_1994,Alistair Veillard,18/09/1996,59717 Hooker Road,SYSTEM +ABC_1995,Delinda Fitzsymon,3/3/1987,552 Johnson Lane,SYSTEM +ABC_1996,Fionna Ticic,27/11/1982,52530 Hoffman Junction,QA +ABC_1997,Padget MacAnulty,26/06/1998,00 Porter Crossing,ADMIN +ABC_1998,Brigg Lucas,10/4/1998,6 Jenna Circle,QA +ABC_1999,Bobbee Tottie,18/02/1989,4 Bowman Way,WEB +ABC_2000,Gino Pantling,24/03/1982,39627 Vidon Point,WEB +ABC2020_1,Mart Weaving,18/08/1991,60077 Memorial Junction,WEB +ABC2020_2,Jarvis Kime,13/11/1999,8 Everett Pass,QA +ABC2020_3,Wayland Stent,5/6/1990,0166 Columbus Avenue,ADMIN +ABC2020_4,Bruce Lofting,8/2/1986,8 1st Terrace,WEB +ABC2020_5,Marta Dales,28/09/1984,846 Schiller Junction,QA +ABC2020_6,Dana Brandham,16/03/1987,5112 Buhler Park,QA +ABC2020_7,Fax Simonitto,29/03/1998,662 Pankratz Drive,WEB +ABC2020_8,Aile Rossborough,9/3/1992,6 Clyde Gallagher Drive,QA +ABC2020_9,Ros Pol,30/06/1983,953 Manufacturers Plaza,QA +ABC2020_10,Arden Beden,22/05/1993,50 Express Hill,SYSTEM +ABC2020_11,Kinna Christopherson,17/05/1981,72 Springs Center,WEB +ABC2020_12,Dorey Fawlo,30/08/1992,517 Summit Place,WEB +ABC2020_13,Clevey Mendel,11/7/1990,4 Banding Drive,MOBILE +ABC2020_14,Shellysheldon Prescot,23/04/1997,52 3rd Lane,QA +ABC2020_15,Byron Kleiser,26/02/1990,5 South Street,MOBILE +ABC2020_16,Clemmy Cauldwell,20/12/1999,9 Mallory Avenue,MOBILE +ABC2020_17,Jan Wellings,23/07/1994,4621 Gina Road,QA +ABC2020_18,Heidi Blankau,10/3/1997,8 Rowland Junction,MOBILE +ABC2020_19,Rozina Hacking,13/07/1987,0544 Dakota Pass,WEB +ABC2020_20,Janka Worham,11/3/1982,18 Village Court,ADMIN +ABC2020_21,Carolynn Conn,26/08/1989,50 Surrey Alley,QA +ABC2020_22,Asia Byrch,7/6/1983,72332 Fordem Center,SYSTEM +ABC2020_23,Bryanty Headon,23/12/1996,68108 Eggendart Hill,MOBILE +ABC2020_24,Kerianne Cull,11/10/1999,0 Delladonna Circle,ADMIN +ABC2020_25,Tillie Pawelski,29/09/1980,529 Mitchell Terrace,WEB +ABC2020_26,Zorah Laimable,2/4/1999,20987 New Castle Pass,MOBILE +ABC2020_27,Adena MacEnelly,4/1/1987,4 Paget Junction,ADMIN +ABC2020_28,Trista Mayne,25/07/1992,6889 Arizona Terrace,MOBILE +ABC2020_29,Vladamir Culleton,6/1/1997,9 Trailsway Terrace,ADMIN +ABC2020_30,Elane Crombie,15/03/1992,6141 Tennessee Street,ADMIN +ABC2020_31,Paddie Jahnisch,5/6/1987,31443 Morrow Way,WEB +ABC2020_32,Carlie Lipmann,23/07/1993,204 Tomscot Court,SYSTEM +ABC2020_33,Glynda Steventon,1/1/1991,70 Kedzie Crossing,MOBILE +ABC2020_34,Jeannine Ridings,22/01/1989,98 Bayside Point,SYSTEM +ABC2020_35,Elset Lishman,17/09/1985,25 Sugar Drive,WEB +ABC2020_36,Emery Canario,21/12/1993,1866 Mayer Court,MOBILE +ABC2020_37,Dwain Garber,1/4/1982,1 Anhalt Plaza,QA +ABC2020_38,Biddy Macy,20/08/1998,92 Bonner Drive,WEB +ABC2020_39,Lin Curling,26/02/1983,94 Sauthoff Circle,MOBILE +ABC2020_40,Ashby Beaushaw,5/5/1989,39196 Brickson Park Hill,MOBILE +ABC2020_41,Rozina Saddleton,5/9/1990,9799 Sunnyside Place,QA +ABC2020_42,Katharine Seson,4/2/1996,84 7th Trail,QA +ABC2020_43,Delora Matityahu,5/1/1996,7205 Sherman Point,MOBILE +ABC2020_44,Fonzie Ortzen,13/08/1998,2157 Birchwood Plaza,WEB +ABC2020_45,Jecho Gritsunov,31/08/1980,327 Bay Avenue,SYSTEM +ABC2020_46,Christoph Slegg,12/2/1988,18 Eggendart Road,WEB +ABC2020_47,Sid Camilletti,13/03/1985,2497 Fallview Place,ADMIN +ABC2020_48,Donny Gisbye,11/10/1984,5157 La Follette Crossing,ADMIN +ABC2020_49,Lowrance Cockitt,5/8/1981,88514 Vera Circle,MOBILE +ABC2020_50,Harland Flucker,9/3/1999,6 Hooker Point,WEB +ABC2020_51,Blanca Behnke,13/11/1992,646 Corry Avenue,QA +ABC2020_52,Marian Cowderay,14/12/1990,7 Westridge Terrace,QA +ABC2020_53,Terrance Canfield,5/3/1984,24 Surrey Circle,WEB +ABC2020_54,Bette-ann Benko,20/05/1987,706 Dovetail Court,QA +ABC2020_55,Kippy Porteous,19/03/1984,99 Quincy Parkway,ADMIN +ABC2020_56,Angel Genery,26/04/1994,6 Fuller Street,WEB +ABC2020_57,Waite Notley,9/9/1981,17 Pine View Junction,SYSTEM +ABC2020_58,Catlaina Clowney,21/05/1996,1289 Wayridge Crossing,WEB +ABC2020_59,Kassie Wake,11/9/1993,234 Messerschmidt Lane,QA +ABC2020_60,Winfred Faragan,26/03/1984,4505 Starling Trail,WEB +ABC2020_61,Judd Tonkinson,5/8/1993,9 Di Loreto Crossing,MOBILE +ABC2020_62,Dallis Mcwhinney,18/01/1987,707 Laurel Park,WEB +ABC2020_63,Berny Jaumet,11/9/1985,42154 Waubesa Plaza,WEB +ABC2020_64,Timofei Avrahamoff,7/12/1984,55309 Talmadge Place,QA +ABC2020_65,Mordecai Jefford,29/11/1996,47412 Mockingbird Road,WEB +ABC2020_66,Angelika Mum,16/02/1982,9590 Bowman Drive,WEB +ABC2020_67,Vivianne Peel,20/03/1981,857 Eastlawn Park,SYSTEM +ABC2020_68,Jobye Yantsev,5/2/1991,78 Mallard Park,QA +ABC2020_69,Hannie McCoole,28/11/1994,0787 Artisan Trail,MOBILE +ABC2020_70,Evelyn Brimfield,9/7/1995,84 Glacier Hill Drive,QA +ABC2020_71,Ellie Touzey,18/10/1985,4043 Thackeray Trail,WEB +ABC2020_72,Maggy Phizaclea,24/01/1991,2415 Claremont Park,MOBILE +ABC2020_73,Frederik Sitch,4/1/1989,7 Meadow Ridge Drive,QA +ABC2020_74,Zara Ramey,7/1/1997,9 Blue Bill Park Hill,WEB +ABC2020_75,Alfonso Bussetti,12/5/1981,610 Springs Alley,QA +ABC2020_76,Verene Suddell,8/5/1999,812 Sunbrook Center,WEB +ABC2020_77,Yule Eldritt,11/10/1997,432 Michigan Road,MOBILE +ABC2020_78,Tana Lockner,27/04/1993,633 Scofield Center,QA +ABC2020_79,Adeline Mushet,3/8/1982,83107 Oriole Pass,ADMIN +ABC2020_80,Ranice Kiendl,12/2/1981,113 Lakeland Hill,QA +ABC2020_81,Jenna Chasmor,30/07/1999,1 Gerald Plaza,ADMIN +ABC2020_82,Boniface Brownhall,15/02/1994,35252 Hagan Park,MOBILE +ABC2020_83,Matthiew Kaspar,30/12/1983,28468 Fairview Road,QA +ABC2020_84,Corena Heartfield,5/11/1998,64051 Dryden Trail,WEB +ABC2020_85,Charles Paskell,11/9/1980,374 Golden Leaf Park,SYSTEM +ABC2020_86,Christoper Manjin,18/10/1996,816 Myrtle Place,WEB +ABC2020_87,Dorette Stainfield,11/7/1995,54 7th Alley,MOBILE +ABC2020_88,Harlin Scranny,16/05/1984,0 Lyons Alley,QA +ABC2020_89,Dell Saphir,3/1/1998,9 Leroy Park,WEB +ABC2020_90,Antonin Couzens,9/7/1992,6068 Randy Pass,QA +ABC2020_91,Christin Radden,19/05/1985,2315 Killdeer Court,SYSTEM +ABC2020_92,Willow Brandreth,13/12/1990,22600 Laurel Drive,QA +ABC2020_93,Elijah Abramson,27/02/1997,0 Grasskamp Pass,QA +ABC2020_94,Pincus Bartle,18/02/1991,46623 Raven Road,QA +ABC2020_95,Irina Sarfati,25/06/1992,5 Novick Plaza,QA +ABC2020_96,Walsh Hadleigh,9/11/1983,3 Forest Run Trail,SYSTEM +ABC2020_97,Willamina Lyles,2/2/1982,460 Sage Avenue,QA +ABC2020_98,Cordie Millard,13/10/1994,077 Schurz Street,QA +ABC2020_99,Lanni Galvin,10/2/1989,41 Beilfuss Circle,SYSTEM +ABC2020_100,Connie Cleere,2/10/1990,2368 Helena Road,WEB +ABC2020_101,Kassia Gisburn,22/06/1985,78471 Brown Parkway,QA +ABC2020_102,Clo Kenen,15/09/1990,3 Crownhardt Plaza,QA +ABC2020_103,Elfreda Daniele,21/11/1983,60784 Morning Pass,SYSTEM +ABC2020_104,Riki Carrabott,31/08/1981,37 Kipling Way,WEB +ABC2020_105,Gerda Snasdell,25/12/1992,551 Jenifer Alley,ADMIN +ABC2020_106,Mariann Wheldon,24/08/1982,736 Magdeline Trail,SYSTEM +ABC2020_107,Brigg Orteau,30/07/1991,2 Lillian Court,SYSTEM +ABC2020_108,Joella Hutchcraft,5/3/1991,540 Shoshone Trail,MOBILE +ABC2020_109,Luisa Tolfrey,26/07/1995,6 Thompson Lane,WEB +ABC2020_110,Nan Foulds,11/4/1991,3015 Cherokee Place,MOBILE +ABC2020_111,Beitris Roggerone,1/7/1983,03080 Monica Court,WEB +ABC2020_112,Martelle Astridge,7/2/1999,810 Russell Plaza,SYSTEM +ABC2020_113,Dreddy Sambrook,4/11/1986,79 Acker Hill,QA +ABC2020_114,Agatha Gyenes,29/10/1993,4194 Warner Trail,MOBILE +ABC2020_115,Clayborn McLice,9/10/1982,2702 Miller Street,ADMIN +ABC2020_116,Kynthia Gallally,3/8/1986,5 Pennsylvania Parkway,SYSTEM +ABC2020_117,Lilli Stockow,2/4/1982,21 Ridge Oak Way,QA +ABC2020_118,Deerdre Groll,5/12/1994,899 Meadow Vale Circle,SYSTEM +ABC2020_119,Lilllie Lezemere,14/10/1992,096 Clove Way,WEB +ABC2020_120,Hanan Maior,16/02/1998,2 Fairfield Street,WEB +ABC2020_121,Fonz Scrimgeour,24/11/1987,8 Anthes Center,MOBILE +ABC2020_122,Euphemia Parsell,19/07/1996,5 Sundown Road,WEB +ABC2020_123,Teodorico Dukesbury,13/03/1983,9 Helena Lane,WEB +ABC2020_124,Auria Gradon,1/10/1991,9 Kinsman Park,SYSTEM +ABC2020_125,Sheelah Androsik,27/04/1993,5914 Hintze Alley,SYSTEM +ABC2020_126,Jonah Tinsey,22/08/1987,29 Brown Park,QA +ABC2020_127,Hercules Tunnicliffe,28/03/1995,6 Service Hill,WEB +ABC2020_128,Loralie Shall,28/08/1997,09789 Sloan Drive,MOBILE +ABC2020_129,Levey Pady,21/11/1988,476 Westridge Avenue,MOBILE +ABC2020_130,Tim Simacek,3/2/1983,57507 Debra Court,ADMIN +ABC2020_131,Kelli Gowling,21/10/1982,067 Lillian Pass,ADMIN +ABC2020_132,Dacey Powlett,12/3/1994,19 Valley Edge Parkway,SYSTEM +ABC2020_133,Nealson Lammert,3/2/1980,25 Caliangt Drive,QA +ABC2020_134,Andy Fourman,20/07/1981,1 Forest Plaza,MOBILE +ABC2020_135,Clevey Moine,11/5/1993,027 Bunting Court,WEB +ABC2020_136,Dalila Sillitoe,30/11/1994,272 Shasta Circle,WEB +ABC2020_137,Eudora Powling,14/02/1995,8937 Graceland Hill,QA +ABC2020_138,Kaylil Coney,3/9/1996,599 Continental Park,QA +ABC2020_139,Iago Justham,9/5/1996,26 Oneill Place,SYSTEM +ABC2020_140,Salomo Neissen,25/02/1993,0 Eggendart Lane,WEB +ABC2020_141,Troy Justham,31/01/1989,883 Twin Pines Junction,QA +ABC2020_142,Mischa Crann,6/1/1987,5660 Artisan Point,MOBILE +ABC2020_143,Chelsie Cluet,17/02/1993,6933 Doe Crossing Hill,QA +ABC2020_144,Meta Cordaroy,7/10/1988,7 Luster Way,QA +ABC2020_145,Maxim Boone,7/11/1990,6420 Morrow Trail,ADMIN +ABC2020_146,Kerby Barnwall,25/03/1982,17311 Quincy Center,SYSTEM +ABC2020_147,Jaimie Cassley,8/1/1993,0 Starling Hill,WEB +ABC2020_148,Jarad Dreinan,5/4/1986,827 Buhler Alley,QA +ABC2020_149,Fanni Renad,10/11/1981,3 Derek Park,WEB +ABC2020_150,Rose Tidcomb,16/07/1994,4 Kensington Trail,WEB +ABC2020_151,Aharon Battrum,25/12/1980,25 Vermont Point,QA +ABC2020_152,Barrett Speed,14/10/1991,9 Rusk Hill,SYSTEM +ABC2020_153,Bryanty Brisse,3/12/1994,36 Farragut Street,WEB +ABC2020_154,Regan Rocca,28/11/1984,071 Crest Line Avenue,QA +ABC2020_155,Patton Jackways,21/08/1983,62223 Kedzie Parkway,WEB +ABC2020_156,Madelaine Yaus,6/2/1991,20876 Fairview Place,MOBILE +ABC2020_157,Eleanora Elstob,3/9/1996,0 Bowman Terrace,WEB +ABC2020_158,Ange Storton,5/9/1996,6632 Victoria Hill,WEB +ABC2020_159,Leonora Eastment,24/04/1991,59437 Birchwood Drive,QA +ABC2020_160,Orelee Caesman,2/8/1998,99360 Manufacturers Circle,MOBILE +ABC2020_161,Gregorius Tudge,11/10/1999,7 Maple Road,QA +ABC2020_162,Cate Doohey,5/10/1980,892 Burning Wood Terrace,WEB +ABC2020_163,Gusella Yeoland,20/03/1985,762 Lakeland Crossing,WEB +ABC2020_164,Tamra Feather,17/08/1984,0 Merrick Pass,MOBILE +ABC2020_165,Dasie Laffan,29/04/1991,918 Pearson Road,ADMIN +ABC2020_166,Cybil Sprowle,15/02/1994,2 Bluejay Circle,WEB +ABC2020_167,Ramonda Fielder,13/07/1989,12621 Northfield Court,SYSTEM +ABC2020_168,Olenolin Mardall,18/05/1990,95717 North Court,WEB +ABC2020_169,Neron Scupham,30/04/1990,4 Coolidge Drive,MOBILE +ABC2020_170,Ania Fanton,6/2/1992,2 Schlimgen Trail,WEB +ABC2020_171,Lorrie Coupland,10/5/1992,0 Little Fleur Place,SYSTEM +ABC2020_172,Cassey Skace,27/11/1994,52 Gulseth Drive,WEB +ABC2020_173,Carlin McGowan,30/10/1988,58610 Bultman Alley,SYSTEM +ABC2020_174,Woody Vasic,26/10/1999,919 Steensland Way,SYSTEM +ABC2020_175,York Deehan,22/11/1987,60344 Aberg Hill,QA +ABC2020_176,Rosy Alyokhin,28/02/1985,977 Waxwing Drive,SYSTEM +ABC2020_177,Denys Blandamore,20/01/1982,0732 Roth Drive,SYSTEM +ABC2020_178,Nani Bickerdyke,4/12/1989,49 Tennyson Hill,WEB +ABC2020_179,Yasmin Keysall,21/03/1991,96454 Towne Alley,QA +ABC2020_180,Franciska De Laci,11/1/1996,2 Clemons Circle,MOBILE +ABC2020_181,Anderson Philps,28/06/1990,94658 Leroy Avenue,WEB +ABC2020_182,Brennan Blunden,27/03/1995,25 Sheridan Hill,WEB +ABC2020_183,Caspar Drogan,10/7/1984,32962 Rigney Terrace,WEB +ABC2020_184,Donnajean Ropcke,17/02/1995,327 Orin Way,MOBILE +ABC2020_185,Marcille Blyden,12/5/1988,00 Eliot Street,ADMIN +ABC2020_186,Danya Lamden,13/08/1990,09 Melby Road,SYSTEM +ABC2020_187,Juliet Renault,5/12/1986,4492 Dorton Center,WEB +ABC2020_188,Craggie Thaller,25/07/1988,13 Gateway Parkway,MOBILE +ABC2020_189,Ursa Jurkowski,23/11/1987,78 Gulseth Plaza,QA +ABC2020_190,Phineas Scintsbury,7/11/1992,22 Mockingbird Circle,QA +ABC2020_191,Ravid Castelluzzi,27/01/1984,2327 Leroy Center,QA +ABC2020_192,Normie Jaegar,28/06/1996,31354 1st Alley,QA +ABC2020_193,Ozzy Huddart,27/01/1984,1 Mosinee Street,SYSTEM +ABC2020_194,Rosita Danielkiewicz,9/1/1982,08860 Trailsway Center,WEB +ABC2020_195,Nikoletta Filde,3/5/1988,6 Erie Point,MOBILE +ABC2020_196,Roda Panons,21/03/1980,58 Swallow Trail,QA +ABC2020_197,Joyce Woodwin,15/06/1981,5 Loomis Drive,QA +ABC2020_198,Craig MacMenamy,5/12/1988,68 Rowland Center,SYSTEM +ABC2020_199,Shellie Buckland,12/12/1980,80 Hanover Way,MOBILE +ABC2020_200,Katherine Porrett,7/2/1991,33 Hermina Way,ADMIN +ABC2020_201,Yuma Barukh,29/10/1988,0 Blaine Avenue,SYSTEM +ABC2020_202,Buddie Simonard,14/12/1990,610 Anzinger Crossing,WEB +ABC2020_203,Lanette Cossey,2/1/1996,7327 Warrior Crossing,ADMIN +ABC2020_204,Eddie Eagleton,27/05/1999,3413 Brickson Park Terrace,WEB +ABC2020_205,Noble O'Sheeryne,29/03/1991,7945 Eastwood Hill,WEB +ABC2020_206,Duff Gronow,12/4/1991,09 Anthes Drive,SYSTEM +ABC2020_207,Sheba Alvarado,21/05/1980,3 Mifflin Pass,ADMIN +ABC2020_208,Marve Paffitt,18/02/1999,47255 Marcy Road,SYSTEM +ABC2020_209,Mollie Rounce,23/06/1996,93303 Arrowood Parkway,MOBILE +ABC2020_210,Creighton O'Griffin,7/4/1991,6 Westerfield Terrace,MOBILE +ABC2020_211,Woodie Gullyes,8/3/1987,8 Homewood Circle,SYSTEM +ABC2020_212,Modesta Danes,29/12/1989,08 Tennessee Terrace,QA +ABC2020_213,Prescott Di Maria,13/02/1990,722 Fordem Avenue,SYSTEM +ABC2020_214,Benyamin Kelwick,9/1/1992,08 Carioca Crossing,WEB +ABC2020_215,Delmor Demange,15/03/1985,56 Arkansas Crossing,WEB +ABC2020_216,Stern Crumbleholme,19/02/1982,0016 7th Center,WEB +ABC2020_217,Crissy Mozzini,28/05/1983,550 Fordem Street,SYSTEM +ABC2020_218,Gianna Dugood,5/11/1985,59 Westerfield Center,MOBILE +ABC2020_219,Russell Snuggs,23/08/1990,8 Aberg Alley,WEB +ABC2020_220,Barry Duchatel,18/07/1980,70283 Linden Drive,ADMIN +ABC2020_221,Geoffry Maryon,11/10/1980,94601 Alpine Parkway,SYSTEM +ABC2020_222,Barrie Scatchar,29/10/1980,886 Schlimgen Street,ADMIN +ABC2020_223,Roselle Drinkel,18/08/1984,97010 Caliangt Place,WEB +ABC2020_224,Eldin Bugler,22/10/1985,08970 Ramsey Center,MOBILE +ABC2020_225,Caldwell D'Arrigo,15/06/1982,2 Memorial Place,SYSTEM +ABC2020_226,Alfie Doctor,24/04/1982,85763 Sunnyside Hill,SYSTEM +ABC2020_227,Sandra Quarton,3/11/1996,4 Ruskin Lane,WEB +ABC2020_228,Theobald Branton,16/06/1982,7 Nevada Alley,ADMIN +ABC2020_229,Heda Skerritt,10/9/1986,2827 American Ash Park,SYSTEM +ABC2020_230,Lucila Braithwaite,18/10/1994,9 Mesta Road,WEB +ABC2020_231,Zorana Willeson,6/12/1999,58 Grasskamp Way,MOBILE +ABC2020_232,Gaylor Aland,11/9/1980,3 Homewood Place,WEB +ABC2020_233,Merry McQuorkell,2/5/1992,564 Lunder Hill,MOBILE +ABC2020_234,Daveen Izzett,4/11/1997,7 Myrtle Hill,MOBILE +ABC2020_235,Alvinia Vigne,9/9/1998,12 6th Pass,QA +ABC2020_236,Dorie Beecham,1/11/1999,6173 Di Loreto Circle,WEB +ABC2020_237,Mickie Folder,17/10/1989,477 David Crossing,QA +ABC2020_238,Merilyn Marien,3/9/1993,2 Lillian Terrace,MOBILE +ABC2020_239,Olivia Christon,15/09/1981,7444 Shelley Court,ADMIN +ABC2020_240,Dory Cisneros,11/12/1996,1188 Moulton Crossing,WEB +ABC2020_241,Fulvia MacMeanma,19/02/1998,10 Fieldstone Park,SYSTEM +ABC2020_242,Lanie Lithcow,8/2/1987,3243 Westridge Drive,ADMIN +ABC2020_243,Gabbie Poulsom,8/1/1981,802 Fremont Trail,WEB +ABC2020_244,Araldo Fisk,12/10/1990,469 Raven Park,WEB +ABC2020_245,Tildie Beacham,5/4/1997,59 Superior Parkway,ADMIN +ABC2020_246,Merilee Moyse,23/03/1990,1 Bluestem Plaza,QA +ABC2020_247,Aindrea Evison,14/07/1998,2223 Kensington Court,SYSTEM +ABC2020_248,Shaine Rosekilly,15/09/1996,2515 Oxford Alley,QA +ABC2020_249,Kissie Morrish,24/05/1986,45 Wayridge Park,QA +ABC2020_250,Lucias Portman,17/01/1989,69 Nova Road,QA +ABC2020_251,Emylee Dennidge,29/12/1995,37998 Aberg Crossing,WEB +ABC2020_252,Andria McCaighey,4/3/1995,2 Mesta Terrace,MOBILE +ABC2020_253,Tommi McKearnen,25/07/1987,9294 Kennedy Center,WEB +ABC2020_254,Bryn Steinham,5/11/1992,5819 Sutherland Plaza,MOBILE +ABC2020_255,Basile MacAless,21/11/1983,43 Miller Pass,WEB +ABC2020_256,Gerhard Hamsher,16/05/1982,169 Kings Junction,WEB +ABC2020_257,Maison Kittless,2/11/1987,613 Mayfield Terrace,QA +ABC2020_258,Kylynn Jados,6/4/1999,6673 Center Terrace,ADMIN +ABC2020_259,Barbette McCloud,7/5/1997,806 Grover Junction,MOBILE +ABC2020_260,Nanine Garza,19/11/1990,18 Basil Way,ADMIN +ABC2020_261,Parrnell Slessar,14/08/1999,20 Transport Lane,ADMIN +ABC2020_262,Willabella Willmetts,16/12/1980,2 Bultman Hill,SYSTEM +ABC2020_263,Hugh Peinke,3/12/1993,7 7th Road,QA +ABC2020_264,Athena Ellershaw,13/12/1987,27 Hermina Way,QA +ABC2020_265,Zabrina Sharper,29/07/1986,485 Kropf Crossing,MOBILE +ABC2020_266,Easter Gusney,6/4/1984,51320 Vermont Court,QA +ABC2020_267,Ermina Hayball,7/3/1985,23947 Bartillon Point,ADMIN +ABC2020_268,Madelle McTague,16/04/1988,310 American Terrace,SYSTEM +ABC2020_269,Adel De Mitris,19/03/1996,2 Springs Hill,SYSTEM +ABC2020_270,Vic Klarzynski,28/08/1999,4 Meadow Vale Point,MOBILE +ABC2020_271,Talbot Wilkins,29/03/1991,7 Redwing Road,SYSTEM +ABC2020_272,Rodger Gaspero,3/12/1997,80 Park Meadow Court,MOBILE +ABC2020_273,Vaclav Smallsman,7/8/1999,419 Merrick Avenue,QA +ABC2020_274,Phillipp Clarabut,16/03/1990,20 Delaware Circle,SYSTEM +ABC2020_275,Myrna Celler,5/8/1989,1 Sherman Avenue,QA +ABC2020_276,Kristy Morecomb,23/12/1987,86421 Parkside Crossing,WEB +ABC2020_277,Claudie Heyns,11/6/1999,03591 Golf View Terrace,WEB +ABC2020_278,Esdras O'Heffernan,24/11/1997,501 Scofield Terrace,MOBILE +ABC2020_279,Cointon Itzcovich,28/11/1985,4 Mosinee Crossing,WEB +ABC2020_280,Brandy Yankov,31/07/1994,91 School Lane,SYSTEM +ABC2020_281,Jamey Christopherson,7/3/1992,80492 Glendale Road,QA +ABC2020_282,Austin Goldman,18/10/1991,1076 Sommers Avenue,QA +ABC2020_283,Nicolai Tumpane,19/06/1995,539 Corry Road,QA +ABC2020_284,Edgar Gaitone,27/09/1990,69060 Grim Road,MOBILE +ABC2020_285,Glenn Yair,15/05/1984,528 Northport Way,SYSTEM +ABC2020_286,Cherrita Burgot,1/9/1998,86725 Springview Drive,WEB +ABC2020_287,Garwood Thomlinson,7/10/1994,114 Mosinee Hill,WEB +ABC2020_288,Kizzie Linguard,26/12/1996,4 Sherman Pass,QA +ABC2020_289,Ferne Cornils,9/6/1990,75 Manufacturers Junction,ADMIN +ABC2020_290,Addi Galloway,11/8/1983,83487 Stone Corner Road,WEB +ABC2020_291,Amye Sissland,28/12/1994,60280 Melvin Lane,WEB +ABC2020_292,Gerianna Chanter,21/07/1998,9317 Farmco Point,MOBILE +ABC2020_293,Addia Casburn,25/07/1986,759 Del Sol Trail,WEB +ABC2020_294,Dorthea Tubbles,20/10/1997,910 Schiller Street,QA +ABC2020_295,Cesya Doget,9/5/1994,548 Namekagon Point,WEB +ABC2020_296,Flss Glenny,12/5/1981,436 Sutteridge Park,WEB +ABC2020_297,Feodora Boorn,21/01/1998,3479 Forest Drive,SYSTEM +ABC2020_298,Eyde Shillan,18/11/1990,8 Lawn Center,WEB +ABC2020_299,Olimpia Gilcrist,3/11/1995,150 Blackbird Center,MOBILE +ABC2020_300,Kaleena Canby,1/8/1983,608 Sunnyside Place,MOBILE +ABC2020_301,Ardelis Feria,29/03/1994,301 Dapin Drive,WEB +ABC2020_302,Olly Derycot,21/02/1997,3340 Morning Junction,WEB +ABC2020_303,May McGinnis,21/06/1982,0291 Village Green Park,QA +ABC2020_304,Erroll Momford,12/4/1986,09498 Stone Corner Avenue,MOBILE +ABC2020_305,Herman Murfin,6/2/1983,51269 Gerald Crossing,SYSTEM +ABC2020_306,Elayne Gooding,19/07/1997,874 Iowa Crossing,WEB +ABC2020_307,Daffy Brogi,25/09/1986,71 Union Drive,MOBILE +ABC2020_308,Susi Burt,18/11/1982,4819 Armistice Point,SYSTEM +ABC2020_309,Alwyn Scolts,3/10/1996,81386 Clarendon Point,ADMIN +ABC2020_310,Antone Compson,27/03/1982,13 Center Terrace,QA +ABC2020_311,Jory Grundey,11/9/1998,27 Brickson Park Park,SYSTEM +ABC2020_312,Emlen Bras,22/01/1999,26596 Dorton Point,ADMIN +ABC2020_313,Levi Mitie,9/3/1986,50 Thierer Center,WEB +ABC2020_314,Blake Coldwell,19/12/1990,7793 Bayside Avenue,WEB +ABC2020_315,Heall Thying,13/04/1995,79 Red Cloud Center,WEB +ABC2020_316,Leon Bolgar,22/02/1984,9 Nevada Hill,SYSTEM +ABC2020_317,Si Howsden,3/4/1989,5 Golf View Terrace,SYSTEM +ABC2020_318,Minni Redsell,1/8/1983,8382 Roxbury Circle,SYSTEM +ABC2020_319,Hazel Charke,27/03/1997,0 Shoshone Trail,QA +ABC2020_320,Gertrudis Ludron,12/7/1998,78893 Hovde Center,WEB +ABC2020_321,Boot Risley,30/05/1994,8764 Knutson Avenue,WEB +ABC2020_322,Grace Keaveney,11/3/1989,3 Caliangt Center,WEB +ABC2020_323,Enriqueta Garrold,13/11/1984,090 Sachs Court,SYSTEM +ABC2020_324,Terrie Pittle,27/12/1986,99991 Kropf Terrace,WEB +ABC2020_325,Algernon Phlippsen,17/10/1990,86923 Norway Maple Drive,WEB +ABC2020_326,Lucilia Stott,4/4/1990,3 Sage Crossing,WEB +ABC2020_327,Raina Sewill,16/09/1987,108 Larry Lane,WEB +ABC2020_328,Caesar Cadell,11/2/1984,1 Park Meadow Park,WEB +ABC2020_329,Rhodia Mullender,30/01/1985,4398 Evergreen Park,ADMIN +ABC2020_330,Zsa zsa Hennemann,4/7/1985,5 Longview Road,WEB +ABC2020_331,Griz Droghan,1/6/1993,220 Granby Way,WEB +ABC2020_332,Vinni Darnell,17/09/1995,0622 Lunder Trail,QA +ABC2020_333,Ailina Rimell,19/09/1985,99 Hazelcrest Plaza,SYSTEM +ABC2020_334,Merry Rosenqvist,26/10/1990,2 Sutherland Avenue,MOBILE +ABC2020_335,Carma Crackel,4/7/1989,6424 Buell Trail,MOBILE +ABC2020_336,Tulley Eard,4/2/1980,77255 Corben Pass,MOBILE +ABC2020_337,Diarmid Hasted,12/6/1984,30735 Comanche Center,WEB +ABC2020_338,Dionysus Grimbaldeston,24/09/1984,795 Chinook Street,SYSTEM +ABC2020_339,Chastity Itzhayek,23/07/1996,12806 Prentice Trail,WEB +ABC2020_340,Dougy Fragino,3/11/1997,2592 Myrtle Road,WEB +ABC2020_341,Jesselyn Lewer,6/6/1985,42910 Moulton Junction,WEB +ABC2020_342,Evelyn Stendell,12/9/1984,59623 Claremont Park,ADMIN +ABC2020_343,Lucky Barnshaw,1/12/1989,8276 John Wall Center,SYSTEM +ABC2020_344,Nicky Punt,28/06/1988,03 Eastlawn Circle,SYSTEM +ABC2020_345,Dougy Jankovsky,24/02/1989,1 Southridge Junction,SYSTEM +ABC2020_346,Quintina Gibbett,22/03/1992,840 Forest Plaza,WEB +ABC2020_347,Maia Boecke,14/09/1990,538 6th Terrace,WEB +ABC2020_348,Ofella Wanek,20/07/1990,329 Hazelcrest Drive,QA +ABC2020_349,Neel McLachlan,27/01/1992,31668 Bartelt Center,WEB +ABC2020_350,Sari Markwick,28/01/1997,4 Dovetail Avenue,WEB +ABC2020_351,Charmion Annear,11/1/1991,875 Huxley Place,MOBILE +ABC2020_352,Lura McCarly,18/03/1991,6 Talisman Road,WEB +ABC2020_353,Andris Tadlow,26/10/1995,850 Meadow Valley Trail,MOBILE +ABC2020_354,Welby Harragin,24/10/1984,74627 Michigan Lane,WEB +ABC2020_355,Courtney Godilington,4/4/1984,52 Fuller Point,QA +ABC2020_356,Goober Gogay,23/10/1990,43 Dixon Court,WEB +ABC2020_357,Lee Surgey,2/6/1980,0 Green Court,QA +ABC2020_358,Danell O'Cleary,20/08/1990,70696 Arrowood Hill,WEB +ABC2020_359,Chilton Penquet,12/3/1991,652 Homewood Point,WEB +ABC2020_360,Lisa Stiffkins,31/05/1996,33 Nevada Pass,QA +ABC2020_361,Ivan de Broke,11/9/1990,44551 John Wall Parkway,MOBILE +ABC2020_362,Berti Castagneri,28/05/1992,5529 International Drive,WEB +ABC2020_363,Theda Eriksson,26/12/1982,558 Farwell Court,QA +ABC2020_364,Vlad Iddison,15/05/1988,657 Stephen Crossing,SYSTEM +ABC2020_365,Wain Ralfe,13/04/1994,03 Donald Circle,QA +ABC2020_366,Alejoa Thyng,25/11/1984,93 Dapin Crossing,WEB +ABC2020_367,Petronia Blay,18/06/1981,690 Meadow Valley Alley,WEB +ABC2020_368,Ronnie Baudic,1/8/1986,05 Hanson Road,QA +ABC2020_369,Leena Sill,18/02/1996,98500 Elgar Center,MOBILE +ABC2020_370,Myrah Burg,15/03/1990,45 Myrtle Circle,ADMIN +ABC2020_371,Ulric Fewster,12/1/1982,498 Lakeland Junction,MOBILE +ABC2020_372,Berky Bredee,31/01/1981,73009 Colorado Hill,QA +ABC2020_373,Bowie Baldam,5/12/1985,30 Michigan Junction,WEB +ABC2020_374,Cassondra Heiner,29/12/1995,705 Village Road,ADMIN +ABC2020_375,Lazare Gillbee,27/12/1982,698 Marcy Street,WEB +ABC2020_376,Sharla Havenhand,30/10/1993,4 Lighthouse Bay Road,MOBILE +ABC2020_377,Silvie Tweddell,19/01/1998,8 Derek Terrace,WEB +ABC2020_378,Tawsha De Freyne,14/05/1988,42 Vermont Trail,WEB +ABC2020_379,Karil Tuffey,16/02/1996,13 Rowland Trail,MOBILE +ABC2020_380,Myra O'Sheerin,14/12/1987,679 Drewry Crossing,QA +ABC2020_381,Francine Keneford,1/1/1999,206 Cherokee Terrace,WEB +ABC2020_382,Garold Woolston,25/03/1983,3738 Eastlawn Road,QA +ABC2020_383,Bendicty Rosterne,24/03/1992,4 4th Point,WEB +ABC2020_384,Broddie Phillis,28/05/1992,11 Linden Hill,SYSTEM +ABC2020_385,Maryl Blaise,5/10/1994,57138 Swallow Lane,SYSTEM +ABC2020_386,Clerkclaude Rutley,8/2/1995,979 Mallory Plaza,MOBILE +ABC2020_387,Harley Gross,1/5/1995,29 Amoth Drive,ADMIN +ABC2020_388,Eve Martin,2/6/1989,710 Bartelt Parkway,WEB +ABC2020_389,Rufe Corradengo,1/6/1983,41 Corscot Pass,MOBILE +ABC2020_390,Will Ruberry,3/3/1984,736 Blaine Road,SYSTEM +ABC2020_391,Nadean Guirardin,21/04/1999,490 Dorton Point,QA +ABC2020_392,Marcelia Capineer,18/06/1982,9 Randy Road,WEB +ABC2020_393,Carol-jean Pavlovsky,14/11/1992,915 Emmet Court,WEB +ABC2020_394,Gloria Crean,28/03/1983,52 Norway Maple Drive,WEB +ABC2020_395,Rocky Cawood,25/12/1987,74501 Hollow Ridge Pass,SYSTEM +ABC2020_396,Kipp Seemmonds,2/9/1997,15 Autumn Leaf Junction,SYSTEM +ABC2020_397,Abbie Phettis,22/09/1983,74259 Meadow Ridge Lane,QA +ABC2020_398,Vale Hedde,29/08/1983,103 Jackson Pass,MOBILE +ABC2020_399,Iggy Goosnell,6/7/1998,0 Walton Hill,ADMIN +ABC2020_400,Carlie Broadhead,18/07/1990,7145 Leroy Circle,WEB +ABC2020_401,Kort Arnold,19/12/1987,88 Knutson Avenue,QA +ABC2020_402,Legra Smythe,3/1/1981,6 Glacier Hill Court,WEB +ABC2020_403,Kristine Hayworth,29/01/1989,488 Cambridge Place,WEB +ABC2020_404,Emmalynne Mouncey,22/09/1987,042 Lukken Parkway,SYSTEM +ABC2020_405,Gard Yablsley,3/6/1986,2 Sachs Drive,QA +ABC2020_406,Ricky Spire,17/11/1996,53635 Bobwhite Point,MOBILE +ABC2020_407,Melva Dolle,4/10/1984,20 Crest Line Parkway,QA +ABC2020_408,Stanford Croston,9/8/1987,15 Heffernan Terrace,WEB +ABC2020_409,Dacey Kenningham,13/02/1995,4 Namekagon Parkway,WEB +ABC2020_410,Jacquenetta Horwell,24/10/1980,5660 Sutherland Plaza,ADMIN +ABC2020_411,Belinda Regnard,17/12/1998,55 East Park,ADMIN +ABC2020_412,Mina Crofts,4/8/1996,7 Elgar Center,SYSTEM +ABC2020_413,Gwenore Enrietto,25/02/1994,6138 Parkside Terrace,MOBILE +ABC2020_414,Simmonds Nunns,4/12/1994,254 Hermina Junction,ADMIN +ABC2020_415,Rhianon Ramel,16/03/1980,63953 Moulton Park,SYSTEM +ABC2020_416,Milty Catlette,9/3/1992,24 Luster Alley,SYSTEM +ABC2020_417,Timmy Prandoni,5/8/1985,4764 Vahlen Trail,ADMIN +ABC2020_418,Rafe Elverstone,20/09/1980,064 Autumn Leaf Parkway,WEB +ABC2020_419,Andros Quiddihy,30/04/1988,03456 Aberg Plaza,WEB +ABC2020_420,Gae Insall,20/10/1997,97 Browning Alley,WEB +ABC2020_421,Devondra Clapp,24/06/1998,715 Springs Street,MOBILE +ABC2020_422,Osmund Sadlier,13/02/1997,327 Washington Hill,QA +ABC2020_423,Norean Withey,31/12/1995,5 Eagan Hill,QA +ABC2020_424,Shirlee Mawby,8/10/1982,9461 Twin Pines Point,WEB +ABC2020_425,Griffin MacCard,6/3/1998,15029 Badeau Center,ADMIN +ABC2020_426,Bamby Fielden,11/9/1995,45616 Melody Court,QA +ABC2020_427,Nada Barnes,8/5/1994,99982 4th Center,ADMIN +ABC2020_428,Hailee Scrooby,29/08/1981,625 Grayhawk Street,ADMIN +ABC2020_429,Meade Hailey,18/05/1982,27 Butterfield Parkway,MOBILE +ABC2020_430,Margareta Edmonds,16/07/1995,2 Golden Leaf Center,WEB +ABC2020_431,Wayland Madine,13/07/1999,8193 Anderson Drive,WEB +ABC2020_432,Laurette Sargint,24/01/1982,73 Melvin Crossing,WEB +ABC2020_433,Wakefield Van T'Hoog,2/11/1993,68 Anzinger Pass,MOBILE +ABC2020_434,Dilan Compford,22/08/1980,80 Packers Junction,WEB +ABC2020_435,Shannen Maceur,6/10/1998,010 Roth Terrace,SYSTEM +ABC2020_436,Roxy Scoggin,5/7/1996,1 Clove Lane,SYSTEM +ABC2020_437,Marie-ann Sheard,20/07/1985,617 Clyde Gallagher Park,ADMIN +ABC2020_438,Maximilian Gibbon,23/05/1981,2710 Vermont Court,SYSTEM +ABC2020_439,Meriel Roskelly,25/12/1993,7 2nd Junction,WEB +ABC2020_440,Hal Rickman,30/06/1993,96816 Rusk Avenue,QA +ABC2020_441,Michal Adlem,1/10/1990,6869 2nd Court,WEB +ABC2020_442,Francyne Yetton,26/05/1983,225 Morrow Lane,SYSTEM +ABC2020_443,Marianna Comfort,22/07/1997,292 Crownhardt Pass,QA +ABC2020_444,Priscilla Dewar,30/05/1985,86 Eagan Place,WEB +ABC2020_445,Hadlee Khristoforov,20/03/1982,46 Jay Street,SYSTEM +ABC2020_446,Rosalinda MacAlpin,7/2/1982,2009 Walton Parkway,WEB +ABC2020_447,Quintilla Posten,1/11/1981,5509 Morningstar Junction,QA +ABC2020_448,Sibeal Bertelmot,15/12/1992,11 Pierstorff Avenue,MOBILE +ABC2020_449,Junina Hartin,23/01/1985,6 Esch Place,MOBILE +ABC2020_450,Brandi Peakman,17/06/1994,0915 Bellgrove Junction,QA +ABC2020_451,Taddeo Pampling,19/02/1992,62530 Shopko Point,QA +ABC2020_452,Hendrika Give,10/6/1991,33245 Graceland Way,QA +ABC2020_453,Lila Lidbetter,3/9/1986,24 Welch Place,QA +ABC2020_454,Oralee Bemwell,3/4/1995,0994 Moulton Trail,QA +ABC2020_455,Janella Davidde,16/03/1984,0053 West Drive,ADMIN +ABC2020_456,Faulkner Kynett,2/1/1982,6169 Norway Maple Drive,QA +ABC2020_457,Revkah Killelay,24/03/1994,7 Loftsgordon Way,MOBILE +ABC2020_458,Karen Teodorski,23/03/1995,74 Spaight Park,ADMIN +ABC2020_459,Fayina Wakely,14/10/1999,832 Hagan Hill,WEB +ABC2020_460,Analise Hurlston,29/07/1985,3 Jenna Pass,SYSTEM +ABC2020_461,Nikolai Copin,21/05/1984,0443 Old Gate Point,WEB +ABC2020_462,Farlee Greader,31/03/1981,9987 Killdeer Trail,QA +ABC2020_463,Elisabeth Dreini,30/08/1984,042 Rieder Trail,SYSTEM +ABC2020_464,Elsworth Jeroch,29/11/1993,8839 Del Mar Alley,MOBILE +ABC2020_465,Rab Rizziello,5/7/1987,576 Merchant Alley,MOBILE +ABC2020_466,Cello Fewkes,13/02/1999,2028 Fisk Junction,SYSTEM +ABC2020_467,Janis Try,2/10/1997,83 Thierer Trail,WEB +ABC2020_468,Leann Phoebe,10/7/1985,7023 Thierer Point,QA +ABC2020_469,Spencer Measom,4/7/1991,94 Veith Alley,MOBILE +ABC2020_470,Thomasine Manser,21/12/1983,172 Springs Center,MOBILE +ABC2020_471,Ula Sansbury,3/1/1994,1 Havey Hill,ADMIN +ABC2020_472,Zea Malham,7/8/1985,9 Blackbird Road,WEB +ABC2020_473,Harwilll Gilsthorpe,17/05/1980,787 Rigney Road,WEB +ABC2020_474,Rees Krink,3/3/1995,18448 Debs Park,QA +ABC2020_475,Blancha MacArdle,29/06/1993,52 New Castle Place,WEB +ABC2020_476,Daniele MacGow,19/05/1981,56 Kipling Crossing,SYSTEM +ABC2020_477,Xavier Pleasance,11/8/1991,33 Drewry Crossing,ADMIN +ABC2020_478,Moreen Reignard,12/1/1980,7 Badeau Alley,SYSTEM +ABC2020_479,Noland Danev,3/9/1983,64 Prairieview Alley,WEB +ABC2020_480,Kalinda Dani,7/9/1995,4 Southridge Pass,WEB +ABC2020_481,Lowrance Bruton,31/05/1993,386 Katie Plaza,SYSTEM +ABC2020_482,Eada Lovejoy,11/10/1986,479 Mitchell Drive,WEB +ABC2020_483,Skyler Gaitley,11/7/1985,5047 Debs Way,WEB +ABC2020_484,Yul McGougan,19/02/1993,13644 Petterle Street,SYSTEM +ABC2020_485,Evangelin Valerius,7/12/1989,99691 Luster Lane,ADMIN +ABC2020_486,Viva Sylvester,28/05/1987,57743 Anderson Hill,ADMIN +ABC2020_487,Lilllie McIlhone,23/09/1988,67 Muir Plaza,SYSTEM +ABC2020_488,Earvin Ruddell,28/03/1980,328 Green Circle,SYSTEM +ABC2020_489,Alida Clilverd,23/03/1995,695 Declaration Center,WEB +ABC2020_490,Adria Poluzzi,20/08/1985,62 Buhler Drive,WEB +ABC2020_491,Jozef Huggett,10/10/1995,8378 Hoepker Plaza,MOBILE +ABC2020_492,Bayard Salthouse,12/11/1994,6 Larry Hill,WEB +ABC2020_493,Patrice Aldhouse,15/01/1987,485 Packers Park,ADMIN +ABC2020_494,Fayre Hutfield,6/10/1996,9418 Melody Road,WEB +ABC2020_495,Adelheid Ranklin,18/04/1994,45270 Farmco Circle,WEB +ABC2020_496,Matthiew Aneley,17/11/1995,93 Westport Terrace,QA +ABC2020_497,Averell Duff,14/07/1995,78478 Moose Drive,WEB +ABC2020_498,Gillian Peabody,17/06/1991,8535 Warrior Court,MOBILE +ABC2020_499,Lauraine Aberkirder,20/07/1987,30949 Jenifer Road,WEB +ABC2020_500,Boot Rose,26/11/1991,40 Algoma Hill,WEB +ABC2020_501,Jeannie Gauntlett,21/09/1993,61724 Longview Plaza,MOBILE +ABC2020_502,Augustus Apfelmann,20/07/1981,2694 Hoffman Circle,WEB +ABC2020_503,Rees Chaplain,23/07/1986,728 Brentwood Terrace,QA +ABC2020_504,Easter Madoc-Jones,9/4/1984,09 Hansons Pass,ADMIN +ABC2020_505,Aldrich Waltho,12/3/1990,83824 4th Terrace,QA +ABC2020_506,Koenraad Wilgar,5/2/1991,6920 Oxford Plaza,SYSTEM +ABC2020_507,Goober Van't Hoff,17/11/1987,43 Sachs Avenue,SYSTEM +ABC2020_508,Danit Clifford,5/9/1996,889 Schiller Circle,SYSTEM +ABC2020_509,Bryana de Juares,15/05/1993,15400 Loeprich Plaza,WEB +ABC2020_510,Cherianne MacGaughie,11/6/1989,28 Kim Circle,SYSTEM +ABC2020_511,Joyce Franchioni,19/03/1988,6 Linden Drive,SYSTEM +ABC2020_512,Bay Snailham,5/11/1985,63 High Crossing Pass,MOBILE +ABC2020_513,Ermanno Grzegorzewicz,15/03/1988,5 Esch Lane,QA +ABC2020_514,Berke Vasyukhnov,7/2/1988,60 Monterey Trail,WEB +ABC2020_515,Billi Spehr,7/7/1992,8379 Shelley Circle,WEB +ABC2020_516,Sophie Pitrasso,25/01/1981,28 Blaine Pass,SYSTEM +ABC2020_517,Archaimbaud Matussevich,12/2/1991,86 Daystar Parkway,QA +ABC2020_518,Lila Moysey,19/02/1982,1 Dahle Parkway,ADMIN +ABC2020_519,Josie Renachowski,17/03/1996,328 Norway Maple Trail,WEB +ABC2020_520,Ashli Lamport,30/05/1982,90 Westport Place,WEB +ABC2020_521,Lauralee Pistol,11/4/1990,8061 Sherman Crossing,QA +ABC2020_522,Athena Farquharson,12/8/1995,30689 Mallard Terrace,QA +ABC2020_523,Berkie Fitzsymon,9/10/1984,84 Charing Cross Drive,MOBILE +ABC2020_524,Bellina McCathay,15/10/1988,9 Veith Plaza,SYSTEM +ABC2020_525,Elane Jorcke,21/01/1988,8159 7th Trail,ADMIN +ABC2020_526,Kiah Heinle,22/12/1988,1316 Brickson Park Junction,SYSTEM +ABC2020_527,Alfreda Thorrington,15/05/1998,3626 Algoma Trail,QA +ABC2020_528,Cecelia Vickery,10/9/1999,4113 Novick Plaza,MOBILE +ABC2020_529,Beatrisa Trodden,16/09/1994,9 Butterfield Street,ADMIN +ABC2020_530,Cordie Kemish,24/03/1994,0052 4th Plaza,WEB +ABC2020_531,Galvin Swyre,10/9/1998,9 Carey Point,SYSTEM +ABC2020_532,Jeannette Gyer,25/12/1982,053 Pierstorff Center,WEB +ABC2020_533,Rosy Bircher,4/4/1981,7 Meadow Valley Pass,SYSTEM +ABC2020_534,Dotty Hoyles,11/9/1989,3 Mitchell Trail,ADMIN +ABC2020_535,Helli Tassaker,17/09/1988,46 Redwing Center,QA +ABC2020_536,Giselle Hargreaves,19/05/1981,8 Lakewood Street,WEB +ABC2020_537,Rodolfo Seniour,16/01/1990,3 Jenifer Park,QA +ABC2020_538,Alexandros Pherps,27/04/1980,09813 Comanche Way,QA +ABC2020_539,Nessi Endon,6/9/1982,09319 Pleasure Lane,ADMIN +ABC2020_540,Peri Lohrensen,28/03/1981,4 Kipling Park,WEB +ABC2020_541,Selma Hamner,13/08/1986,5896 Carpenter Plaza,MOBILE +ABC2020_542,Arri Swindley,10/9/1998,010 Eastwood Point,MOBILE +ABC2020_543,Lynn Cumbers,4/5/1982,9501 Chinook Drive,MOBILE +ABC2020_544,Cherey Goldsmith,16/08/1997,8 Jackson Alley,WEB +ABC2020_545,Stacey Kilmary,26/05/1998,35638 Roxbury Place,SYSTEM +ABC2020_546,Errick Bearns,9/1/1989,52234 Daystar Center,SYSTEM +ABC2020_547,Gusta Bello,23/04/1984,70277 Melby Center,MOBILE +ABC2020_548,Florida Dennistoun,22/06/1986,5 Elmside Terrace,WEB +ABC2020_549,Donetta Shoebottom,21/08/1981,86337 Logan Lane,MOBILE +ABC2020_550,Anderson Shave,8/7/1989,860 Duke Point,WEB +ABC2020_551,Rhoda Audas,16/04/1993,87490 Everett Court,QA +ABC2020_552,Gillian Watkin,24/06/1986,2110 Dwight Alley,MOBILE +ABC2020_553,Frasier Hinnerk,19/01/1985,762 Pearson Place,QA +ABC2020_554,Lind Riedel,3/7/1992,47899 Mcbride Road,WEB +ABC2020_555,Jacobo Carlan,10/8/1999,04 Northport Lane,QA +ABC2020_556,Jourdain Cullinan,30/04/1991,8 Northview Center,WEB +ABC2020_557,Niccolo McLanaghan,23/08/1999,19916 Sundown Center,MOBILE +ABC2020_558,Tiffani Gherardini,4/12/1985,2530 Mandrake Road,WEB +ABC2020_559,Orel Eyam,29/07/1988,840 Roxbury Crossing,WEB +ABC2020_560,Mervin Pyer,6/11/1999,4370 Scoville Junction,QA +ABC2020_561,Zak Bargh,3/11/1997,56 Buell Crossing,QA +ABC2020_562,Min Monkleigh,2/2/1988,3 Summerview Hill,MOBILE +ABC2020_563,Bentlee Killingbeck,18/01/1992,3042 Bluestem Avenue,MOBILE +ABC2020_564,Galven Cote,22/04/1999,918 Cascade Place,MOBILE +ABC2020_565,Flora Whifen,15/08/1997,00286 Mitchell Street,QA +ABC2020_566,Norah Koppeck,7/2/1982,89917 Susan Hill,MOBILE +ABC2020_567,Hill Snipe,14/01/1987,86 Anderson Crossing,SYSTEM +ABC2020_568,Emmott Mabbutt,9/5/1986,6758 Colorado Crossing,WEB +ABC2020_569,Betty Marjanovic,26/08/1991,970 Surrey Circle,MOBILE +ABC2020_570,Hortensia Frankcomb,19/09/1997,0 Center Place,WEB +ABC2020_571,Milo Ruselin,10/7/1983,0434 Dottie Drive,WEB +ABC2020_572,Bernette Hambright,25/12/1999,7 Barby Lane,SYSTEM +ABC2020_573,Danette Barwick,30/03/1981,648 Ruskin Place,QA +ABC2020_574,Drusi Bartkiewicz,27/08/1995,7079 Bellgrove Drive,WEB +ABC2020_575,Gal Knightsbridge,22/12/1990,718 Caliangt Drive,SYSTEM +ABC2020_576,Sigfried Livett,17/08/1980,2 Upham Hill,MOBILE +ABC2020_577,Zaria Guntrip,28/01/1991,1 Novick Drive,WEB +ABC2020_578,Bailie Ambrogio,4/11/1989,354 Logan Street,ADMIN +ABC2020_579,Pamelina Hadden,16/06/1986,4 Melvin Way,MOBILE +ABC2020_580,Josefa Crielly,2/3/1992,1 Onsgard Pass,WEB +ABC2020_581,Jason Truse,26/03/1983,61976 Raven Court,WEB +ABC2020_582,Gilburt Swash,15/05/1993,142 Clarendon Crossing,WEB +ABC2020_583,Weidar Dumingos,11/12/1987,49 Lindbergh Circle,ADMIN +ABC2020_584,Damian Degoix,13/07/1988,0934 Menomonie Lane,WEB +ABC2020_585,Cassy Thomassin,6/5/1984,3556 Eggendart Terrace,ADMIN +ABC2020_586,Fabian Pitsall,23/02/1983,58149 Hoard Plaza,QA +ABC2020_587,Remington Karran,19/11/1984,092 Helena Junction,SYSTEM +ABC2020_588,Olly Faircloth,15/07/1990,0204 Dexter Parkway,MOBILE +ABC2020_589,Kimble Tottle,23/04/1989,954 Bellgrove Drive,SYSTEM +ABC2020_590,Dara Tebbe,12/8/1993,703 Oxford Hill,SYSTEM +ABC2020_591,Thurston Fosdick,17/10/1984,89629 Truax Drive,MOBILE +ABC2020_592,Ethan Corneil,9/5/1987,6101 Chive Center,WEB +ABC2020_593,Raymund McPeeters,16/12/1983,120 Butterfield Court,WEB +ABC2020_594,Harri Lowmass,24/08/1994,76867 Dunning Trail,WEB +ABC2020_595,Stephi MacCahey,16/06/1993,9230 Butterfield Pass,WEB +ABC2020_596,Clywd Marsden,28/10/1980,4765 Goodland Point,QA +ABC2020_597,Sergei Birwhistle,17/03/1984,24114 Talmadge Parkway,WEB +ABC2020_598,Manon Madden,8/1/1984,681 Butterfield Point,SYSTEM +ABC2020_599,Beatrice Banck,6/7/1991,7 Green Ridge Street,WEB +ABC2020_600,Brose Shreve,1/9/1996,51475 Quincy Drive,SYSTEM +ABC2020_601,Kimbell Sertin,17/11/1994,27 Sycamore Place,QA +ABC2020_602,Alric MacPhee,9/11/1984,639 Russell Junction,WEB +ABC2020_603,Vina Callaghan,13/09/1985,25 Cody Pass,SYSTEM +ABC2020_604,Sharai Prin,17/04/1989,28 Sachtjen Crossing,SYSTEM +ABC2020_605,Tulley Boyle,20/07/1997,00967 Erie Crossing,SYSTEM +ABC2020_606,Noach Pywell,10/11/1994,5728 Hintze Pass,QA +ABC2020_607,Rodolph Scutter,16/05/1993,464 Del Mar Road,QA +ABC2020_608,Pammy Solland,25/09/1986,860 Esch Junction,WEB +ABC2020_609,Ethel McMeyler,19/01/1992,9 Pawling Drive,QA +ABC2020_610,Akim Huddlestone,18/04/1985,67 Bartelt Terrace,WEB +ABC2020_611,Joelynn Skirving,13/06/1988,72502 Granby Drive,WEB +ABC2020_612,Yvor Marling,3/4/1993,78 Hagan Way,QA +ABC2020_613,Payton Whitton,29/08/1987,52 Lakewood Gardens Place,WEB +ABC2020_614,Enoch Crennan,16/07/1984,9 Cordelia Alley,SYSTEM +ABC2020_615,Anabel Kierans,12/9/1997,0 Walton Avenue,SYSTEM +ABC2020_616,Goldi Steljes,1/8/1981,5321 Morning Hill,MOBILE +ABC2020_617,Shadow Gehrts,15/11/1998,90 Laurel Junction,QA +ABC2020_618,Rutherford Zanolli,19/11/1997,5 Jenifer Plaza,WEB +ABC2020_619,Clarinda Fitzhenry,28/11/1980,023 Mccormick Junction,SYSTEM +ABC2020_620,Melita Pennacci,15/05/1990,514 Montana Point,SYSTEM +ABC2020_621,Berrie Garms,10/9/1991,74720 Daystar Alley,QA +ABC2020_622,Berton Birtwhistle,8/8/1991,464 Corscot Drive,ADMIN +ABC2020_623,Keven Carsberg,11/12/1980,0 Jenna Street,ADMIN +ABC2020_624,Gerrie Veschambes,31/05/1980,4 Summit Road,MOBILE +ABC2020_625,Dan L'Episcopi,18/11/1983,7 Helena Court,SYSTEM +ABC2020_626,Penny Benton,10/11/1994,19 West Avenue,MOBILE +ABC2020_627,Vassili de Chastelain,28/02/1990,4992 Loomis Drive,SYSTEM +ABC2020_628,Erika Haylands,29/12/1999,374 Havey Point,QA +ABC2020_629,Angeline Tottman,2/9/1985,35644 Macpherson Road,MOBILE +ABC2020_630,Corissa McMurraya,3/10/1982,8 Dexter Drive,ADMIN +ABC2020_631,Honey Darbyshire,26/01/1980,579 Loomis Lane,ADMIN +ABC2020_632,Joly Gask,9/6/1982,474 Waxwing Court,QA +ABC2020_633,Sybilla Bisterfeld,19/09/1995,2 Meadow Ridge Avenue,WEB +ABC2020_634,Francisco Redsall,24/05/1986,94665 Toban Center,WEB +ABC2020_635,Tanitansy Huison,10/6/1996,069 Ilene Plaza,WEB +ABC2020_636,Danyelle Oliver-Paull,1/6/1990,5368 Ridgeview Center,WEB +ABC2020_637,Lesley Badsey,6/7/1984,58949 3rd Street,WEB +ABC2020_638,Marlee Banasevich,9/1/1981,865 Cardinal Junction,SYSTEM +ABC2020_639,Robby Heaford,9/3/1990,80 Barby Road,ADMIN +ABC2020_640,Calhoun Mazzia,18/07/1993,0 Weeping Birch Plaza,WEB +ABC2020_641,Aaron Crookshanks,21/11/1993,8 Esch Lane,MOBILE +ABC2020_642,Aura Gillopp,19/07/1990,1589 Huxley Center,WEB +ABC2020_643,Gene Gwyer,13/08/1982,2 Acker Park,WEB +ABC2020_644,Avril Unger,11/5/1985,2 Cascade Road,SYSTEM +ABC2020_645,Lulita Symonds,4/2/1989,6600 7th Lane,MOBILE +ABC2020_646,Griffie Bowdon,12/8/1981,83 Dennis Park,SYSTEM +ABC2020_647,Sibeal Balthasar,13/06/1990,7 Maryland Trail,SYSTEM +ABC2020_648,Jamie Pauley,25/11/1997,7 Lakeland Alley,MOBILE +ABC2020_649,Carmon Marrian,13/08/1990,2 Vahlen Court,WEB +ABC2020_650,Jamison Van,20/03/1992,88729 Cardinal Avenue,MOBILE +ABC2020_651,Mirelle Verner,7/8/1995,64277 Mifflin Hill,SYSTEM +ABC2020_652,Gerri Tanslie,16/12/1984,833 Marcy Place,WEB +ABC2020_653,Tobie Alcoran,1/6/1991,47 Bluestem Pass,WEB +ABC2020_654,Jerrie Borgars,28/12/1983,46658 Westridge Street,QA +ABC2020_655,Esther Geratasch,19/12/1980,28458 Hooker Road,SYSTEM +ABC2020_656,Brocky Wardall,12/4/1981,881 Vernon Park,SYSTEM +ABC2020_657,Carie Inglis,7/4/1980,9994 Ilene Parkway,SYSTEM +ABC2020_658,Petra Filipowicz,12/11/1991,16699 Sachtjen Way,MOBILE +ABC2020_659,Barth Rossbrooke,31/12/1981,08 Shelley Drive,ADMIN +ABC2020_660,Jane Dymond,14/12/1993,437 Harbort Parkway,MOBILE +ABC2020_661,Shaun Hyder,25/03/1982,1 Burrows Junction,MOBILE +ABC2020_662,Reamonn Mash,16/03/1985,07 Eastwood Circle,QA +ABC2020_663,Carla Szymanowski,6/9/1997,3567 Milwaukee Court,SYSTEM +ABC2020_664,Jason Baise,8/8/1984,321 Bunker Hill Court,QA +ABC2020_665,Burke Carville,24/08/1996,294 1st Court,QA +ABC2020_666,Catriona Frohock,16/12/1997,9876 Bartelt Lane,MOBILE +ABC2020_667,Teodorico Gerred,1/5/1980,06 Bay Crossing,QA +ABC2020_668,Wolf Stringman,24/01/1997,2076 Division Avenue,WEB +ABC2020_669,Penrod Ilewicz,19/05/1981,54309 Warbler Avenue,MOBILE +ABC2020_670,Idette Breede,25/03/1995,58 Laurel Junction,WEB +ABC2020_671,Tam Cosgriff,21/07/1992,962 Waywood Drive,MOBILE +ABC2020_672,Emmery De Bellis,16/07/1981,70534 South Alley,WEB +ABC2020_673,Rudie Sheavills,22/04/1983,73 Leroy Circle,SYSTEM +ABC2020_674,Augusta Ahlin,18/12/1988,48767 Algoma Parkway,WEB +ABC2020_675,Ronny Yurkov,24/07/1986,099 Dakota Alley,QA +ABC2020_676,Kyle Wildin,13/12/1996,4 Sachs Court,MOBILE +ABC2020_677,Estelle Beacom,23/09/1980,9 Upham Center,SYSTEM +ABC2020_678,Madalyn Cunnington,21/05/1997,2 Toban Center,MOBILE +ABC2020_679,Magnum Mincini,21/10/1993,610 Melrose Place,QA +ABC2020_680,Mace Chaffe,15/02/1985,920 Rieder Terrace,QA +ABC2020_681,Wendy Le Count,28/07/1993,43854 Hudson Road,WEB +ABC2020_682,Winnie Rookledge,26/04/1995,82 Lakewood Gardens Court,MOBILE +ABC2020_683,Shane Galton,30/09/1986,595 Lighthouse Bay Pass,SYSTEM +ABC2020_684,Nickolas Breakspear,4/4/1997,334 Sachs Center,QA +ABC2020_685,Zitella Faloon,9/11/1993,551 Claremont Hill,WEB +ABC2020_686,Shoshana Roalfe,14/07/1989,695 Mayfield Circle,MOBILE +ABC2020_687,Chadwick Kach,6/5/1980,286 Garrison Avenue,WEB +ABC2020_688,Kirstin Cohn,16/08/1992,9 Menomonie Way,QA +ABC2020_689,Robbie Fontenot,11/1/1990,3 Cardinal Place,ADMIN +ABC2020_690,Merwin Draisey,27/03/1998,0538 Mallory Center,MOBILE +ABC2020_691,Benn Oaten,20/06/1993,42 Hooker Avenue,MOBILE +ABC2020_692,Jinny Gumb,12/6/1999,82560 Mallory Crossing,QA +ABC2020_693,Christye Forson,5/12/1989,650 Elgar Street,WEB +ABC2020_694,Kathleen Stokes,25/10/1992,87 Esch Trail,MOBILE +ABC2020_695,Haze Scolts,10/11/1985,96463 Comanche Place,SYSTEM +ABC2020_696,Sheffy Piffe,4/4/1984,8415 Northland Drive,WEB +ABC2020_697,Hale Tremblot,18/01/1983,20 Sugar Junction,SYSTEM +ABC2020_698,Silvester Wickerson,5/3/1992,3464 Lindbergh Crossing,SYSTEM +ABC2020_699,Dara Try,23/01/1987,302 Nova Road,WEB +ABC2020_700,Goran Smurthwaite,26/04/1982,937 Killdeer Street,QA +ABC2020_701,Randi Parks,5/7/1988,89903 Loftsgordon Court,QA +ABC2020_702,Donna Fernando,31/01/1983,10 Village Green Park,WEB +ABC2020_703,Danna Peeke,30/05/1986,3 Utah Road,MOBILE +ABC2020_704,Austine Asty,11/8/1990,9394 Iowa Way,WEB +ABC2020_705,Edgardo Yurukhin,26/06/1985,843 Southridge Junction,SYSTEM +ABC2020_706,Reidar Dominique,9/11/1992,6 Graceland Road,SYSTEM +ABC2020_707,Constance Brusin,2/3/1988,74 Debra Parkway,SYSTEM +ABC2020_708,Jamill Starrs,25/10/1982,10 Oakridge Court,MOBILE +ABC2020_709,Laurianne Sparhawk,18/07/1984,616 Hoffman Street,WEB +ABC2020_710,Katleen Diess,3/3/1989,902 Vahlen Crossing,QA +ABC2020_711,Haze Norvel,3/11/1980,74 Browning Crossing,SYSTEM +ABC2020_712,Astrid Bentje,2/8/1998,4 Buena Vista Hill,QA +ABC2020_713,Sabina Meadows,3/10/1984,05439 Bonner Plaza,SYSTEM +ABC2020_714,Kacey Axelbee,1/1/1986,7 Ruskin Road,WEB +ABC2020_715,Jed Odda,1/6/1988,76105 Eggendart Road,SYSTEM +ABC2020_716,Lenora Kleinmann,1/8/1999,59342 Sugar Lane,SYSTEM +ABC2020_717,Les Riglar,4/11/1989,6637 Stang Avenue,SYSTEM +ABC2020_718,Fred Blinerman,7/6/1989,1 Dryden Crossing,SYSTEM +ABC2020_719,Krisha Tremblett,7/9/1982,79670 Eagle Crest Way,WEB +ABC2020_720,Hymie Rigney,8/12/1996,562 Pine View Center,QA +ABC2020_721,Violante Samart,2/3/1989,84 Farwell Pass,WEB +ABC2020_722,Evelyn Bucktharp,6/3/1997,8139 Gateway Road,WEB +ABC2020_723,Zorina Soall,25/05/1985,39 Sunbrook Point,SYSTEM +ABC2020_724,Sunny Thorpe,8/12/1988,031 Valley Edge Way,WEB +ABC2020_725,Lanny Jodlkowski,13/02/1987,270 Knutson Street,QA +ABC2020_726,Franny Tichner,3/9/1988,82 Cambridge Drive,ADMIN +ABC2020_727,Vinnie Corcoran,19/04/1990,6 Delladonna Road,QA +ABC2020_728,Sondra Redwin,16/06/1989,3 Fulton Alley,WEB +ABC2020_729,Camey Saurat,14/04/1998,4452 Marcy Avenue,ADMIN +ABC2020_730,Vida Whithorn,26/10/1981,29 Walton Parkway,WEB +ABC2020_731,Patrizio Jost,1/8/1988,748 Annamark Park,WEB +ABC2020_732,Kissee Beekman,16/07/1986,080 Jackson Road,QA +ABC2020_733,Addi Dobbing,20/05/1993,48 Jana Crossing,ADMIN +ABC2020_734,Ewen Feechan,6/4/1988,7 Loftsgordon Street,SYSTEM +ABC2020_735,Dominique Irons,17/01/1991,735 Granby Terrace,WEB +ABC2020_736,Neron Laidlow,18/04/1989,17 Tennessee Way,MOBILE +ABC2020_737,Marilin Wattisham,11/9/1985,6305 Oakridge Alley,MOBILE +ABC2020_738,Andrew Baraclough,30/12/1981,2 Del Mar Terrace,WEB +ABC2020_739,Blakeley Championnet,18/02/1995,14 Almo Drive,WEB +ABC2020_740,Jessie Rhodus,24/12/1982,083 Paget Parkway,SYSTEM +ABC2020_741,Wake Endecott,18/03/1992,5546 Dorton Circle,SYSTEM +ABC2020_742,Georgia Speedin,18/09/1992,95 Dennis Terrace,QA +ABC2020_743,Suki Marcinkowski,19/04/1987,410 Talisman Road,WEB +ABC2020_744,Ginnie Carefull,28/11/1987,742 Harper Lane,MOBILE +ABC2020_745,Betteanne Burtwell,17/06/1996,57 Sundown Place,QA +ABC2020_746,Findley Fearn,31/07/1980,45 Fulton Hill,SYSTEM +ABC2020_747,Wendy Figgins,9/7/1986,885 Southridge Trail,SYSTEM +ABC2020_748,Sibyl Friedman,17/04/1980,0 Sullivan Place,MOBILE +ABC2020_749,Renelle Aston,11/8/1992,9019 Texas Hill,ADMIN +ABC2020_750,Collette Casier,18/12/1992,46447 Homewood Crossing,WEB +ABC2020_751,Leonore Murney,7/1/1980,37772 Dixon Crossing,WEB +ABC2020_752,Tedman Hyndson,3/9/1983,5 Tennessee Road,WEB +ABC2020_753,Clyve Pea,22/09/1983,77331 Messerschmidt Alley,MOBILE +ABC2020_754,Kaitlynn Anstice,4/8/1984,8772 Columbus Plaza,WEB +ABC2020_755,Nanni Folbigg,12/9/1984,4566 Jenna Crossing,WEB +ABC2020_756,Dasya Sillwood,26/08/1984,43935 Rieder Hill,WEB +ABC2020_757,Wallace Bartosinski,31/07/1993,4022 Tomscot Terrace,SYSTEM +ABC2020_758,Jennilee Hamlen,24/12/1997,86865 Hooker Place,WEB +ABC2020_759,Dunn Bigglestone,23/10/1984,9815 Morningstar Terrace,ADMIN +ABC2020_760,Rudie Burress,5/9/1980,69167 Ohio Hill,WEB +ABC2020_761,Nert Valerio,2/5/1998,9958 Swallow Junction,WEB +ABC2020_762,Gordan Clery,18/08/1995,0630 Pawling Pass,MOBILE +ABC2020_763,Ermanno Sidgwick,4/3/1983,942 Packers Park,QA +ABC2020_764,Lotte Hultberg,19/03/1983,60 4th Court,ADMIN +ABC2020_765,Muriel McGraw,29/12/1996,71 Grover Pass,WEB +ABC2020_766,Alphard Kynoch,28/09/1987,0628 Thackeray Place,WEB +ABC2020_767,Diahann Conechie,3/9/1987,0642 Bluejay Trail,SYSTEM +ABC2020_768,Pattie Kail,21/12/1984,85 Vermont Crossing,QA +ABC2020_769,Chariot Clancey,11/7/1982,8 Prentice Pass,SYSTEM +ABC2020_770,Legra Rediers,7/6/1991,6628 Hanover Center,MOBILE +ABC2020_771,Cammi Gatheral,7/5/1984,3342 Lake View Lane,QA +ABC2020_772,Eva Scudamore,10/9/1998,70405 Kedzie Alley,WEB +ABC2020_773,Gallagher Kernaghan,27/01/1983,19612 Marquette Way,QA +ABC2020_774,Gianni Storrie,10/2/1995,7 Briar Crest Junction,QA +ABC2020_775,Kelly Iacovini,22/03/1997,4238 Graedel Road,MOBILE +ABC2020_776,Kerwin Baume,31/07/1998,6582 Delaware Way,MOBILE +ABC2020_777,Desdemona Ionn,22/10/1986,3817 Jay Pass,MOBILE +ABC2020_778,Tommie Veregan,24/12/1991,55444 Quincy Terrace,WEB +ABC2020_779,Abbie Minihan,23/01/1984,46 Johnson Crossing,WEB +ABC2020_780,Pippa Heyworth,28/10/1980,69 Thackeray Parkway,SYSTEM +ABC2020_781,Lorin Castiblanco,20/08/1984,72647 Sullivan Court,SYSTEM +ABC2020_782,Winfield Fulloway,13/02/1993,9 Claremont Alley,WEB +ABC2020_783,Brittan Knowlman,31/07/1981,4976 Muir Drive,QA +ABC2020_784,Roana Dessant,9/12/1990,77632 Thompson Lane,QA +ABC2020_785,Alvan Farnhill,25/11/1984,9767 Sunnyside Alley,QA +ABC2020_786,Tallie Alessandone,30/01/1983,55 Thackeray Road,MOBILE +ABC2020_787,Reinhard Bushel,26/01/1985,46768 Meadow Vale Place,SYSTEM +ABC2020_788,Anne-corinne Hillin,19/05/1989,03906 Superior Pass,QA +ABC2020_789,Jaine Aslet,20/06/1991,6459 Delladonna Terrace,SYSTEM +ABC2020_790,Marin Leng,20/03/1985,324 Clove Avenue,MOBILE +ABC2020_791,Sydney Newhouse,12/7/1989,99256 Memorial Trail,MOBILE +ABC2020_792,Carolus Frapwell,4/12/1980,26 Troy Terrace,SYSTEM +ABC2020_793,Lucine Linacre,4/4/1994,8196 Lukken Pass,SYSTEM +ABC2020_794,Bette Workes,11/2/1992,34 Ridgeway Hill,SYSTEM +ABC2020_795,Trever Dash,8/9/1983,6 Elgar Crossing,MOBILE +ABC2020_796,Danella Pozzo,12/7/1992,26 Pankratz Street,MOBILE +ABC2020_797,Hamid Enstone,11/11/1986,81097 Meadow Vale Court,QA +ABC2020_798,Maggie Bellhouse,20/11/1986,814 Saint Paul Alley,MOBILE +ABC2020_799,Linda Trythall,25/09/1986,84 Burning Wood Circle,MOBILE +ABC2020_800,Aleda Ions,31/01/1994,54196 Farwell Alley,WEB +ABC2020_801,Delly Finby,10/11/1991,36 Summer Ridge Junction,WEB +ABC2020_802,Donnajean Tilt,28/09/1986,99 Birchwood Drive,SYSTEM +ABC2020_803,Siffre Crathern,5/2/1991,17810 Fuller Circle,WEB +ABC2020_804,Wylie Machent,21/10/1997,099 Hoepker Street,SYSTEM +ABC2020_805,Jillane Klemps,12/1/1981,69 Old Gate Alley,SYSTEM +ABC2020_806,Dominica Pipes,10/5/1988,608 Sommers Circle,WEB +ABC2020_807,Mellisent Abadam,23/01/1998,0 Tennessee Place,WEB +ABC2020_808,Stephan Joynson,27/02/1987,65 Wayridge Drive,QA +ABC2020_809,Tannie McLean,14/03/1992,85543 Carpenter Alley,WEB +ABC2020_810,Maje Santi,6/7/1990,1 Ryan Street,ADMIN +ABC2020_811,Jillie Dodworth,25/07/1985,342 Thompson Junction,ADMIN +ABC2020_812,Cyndia McCullough,14/05/1988,09331 Hauk Park,WEB +ABC2020_813,Avigdor Broadwood,15/07/1992,895 Ronald Regan Point,ADMIN +ABC2020_814,Durward Fuke,22/11/1983,94 Loftsgordon Center,SYSTEM +ABC2020_815,Theobald Hurll,2/3/1999,9787 Hudson Pass,QA +ABC2020_816,Wilfrid Alfonsini,29/12/1985,147 Hazelcrest Parkway,WEB +ABC2020_817,Demeter Yegorovnin,30/01/1983,19439 Menomonie Point,QA +ABC2020_818,Wendye Lynes,31/05/1989,00252 Karstens Terrace,WEB +ABC2020_819,Casar Wye,3/12/1994,1474 Stone Corner Court,QA +ABC2020_820,Marietta Roderham,8/1/1982,23 Fulton Lane,MOBILE +ABC2020_821,Cullan Chestney,18/06/1994,5 Fulton Center,WEB +ABC2020_822,Dominique Pither,8/8/1992,1515 Clemons Way,WEB +ABC2020_823,Bettye Bootland,5/1/1996,899 Forest Run Park,MOBILE +ABC2020_824,Giulio Ernke,26/04/1993,51 Summit Trail,WEB +ABC2020_825,Horton Gallety,24/10/1999,3141 Green Park,MOBILE +ABC2020_826,Felecia Peagram,15/01/1980,78447 Corry Avenue,QA +ABC2020_827,Arnold Eldredge,1/12/1982,79 Hoepker Park,WEB +ABC2020_828,Ty Raulston,27/10/1991,87 Lawn Park,MOBILE +ABC2020_829,Marissa Binham,11/1/1999,7040 Pierstorff Park,MOBILE +ABC2020_830,Dukie Larive,13/05/1994,19521 Main Hill,MOBILE +ABC2020_831,Montgomery Suermeiers,18/08/1988,534 Independence Parkway,ADMIN +ABC2020_832,Devondra Sambell,19/06/1982,163 Onsgard Avenue,QA +ABC2020_833,Morganica Shingler,22/08/1997,145 Barnett Alley,WEB +ABC2020_834,Cristen Boldt,20/07/1994,73 Morrow Terrace,ADMIN +ABC2020_835,Galina McCurrie,16/02/1983,0 Old Shore Way,SYSTEM +ABC2020_836,Ebba Sellwood,25/03/1985,60455 Hoepker Hill,MOBILE +ABC2020_837,Colin Whewill,12/4/1991,01 Dennis Pass,WEB +ABC2020_838,Mollie Vanyashkin,1/4/1980,8506 Stone Corner Hill,SYSTEM +ABC2020_839,Leicester Barbour,16/04/1988,5 Hayes Alley,MOBILE +ABC2020_840,Jessey Iglesias,13/06/1996,03 Holy Cross Park,ADMIN +ABC2020_841,Brinn Wolstenholme,16/12/1981,854 Kinsman Pass,WEB +ABC2020_842,Tamarah Leaves,19/08/1987,916 Erie Avenue,SYSTEM +ABC2020_843,Virgil Pagett,4/2/1991,228 Mosinee Street,MOBILE +ABC2020_844,Gunter Creech,22/06/1992,800 4th Pass,WEB +ABC2020_845,Raul Hessay,5/2/1995,242 Farragut Way,SYSTEM +ABC2020_846,Nilson De Filippi,11/8/1988,349 Arkansas Point,WEB +ABC2020_847,Dorene Polden,29/03/1988,222 Clarendon Trail,WEB +ABC2020_848,Cherish Le Strange,14/09/1986,4 Pepper Wood Road,SYSTEM +ABC2020_849,Aloisia Boas,10/8/1987,49 Lien Terrace,ADMIN +ABC2020_850,Lana Lebel,19/01/1991,440 Waywood Lane,WEB +ABC2020_851,Ewart Woodcock,14/10/1982,6 Bay Drive,WEB +ABC2020_852,Wash Hogbourne,11/4/1996,06366 Linden Court,SYSTEM +ABC2020_853,Eveleen Winser,31/12/1986,628 Burrows Court,SYSTEM +ABC2020_854,Abran Nolli,22/09/1989,0 Colorado Junction,MOBILE +ABC2020_855,Tessie McTeer,24/04/1997,64 Meadow Valley Place,WEB +ABC2020_856,Tab McKmurrie,28/05/1999,1 Crowley Trail,ADMIN +ABC2020_857,Burton Goundrill,13/05/1999,70759 Warner Parkway,WEB +ABC2020_858,Reube Huckstepp,28/12/1981,5 Coolidge Circle,WEB +ABC2020_859,Arron McGeagh,13/05/1986,1377 Main Street,WEB +ABC2020_860,Tootsie Kynforth,24/12/1993,06 Vera Court,QA +ABC2020_861,Chrisse Hitschke,30/10/1981,472 Delaware Alley,SYSTEM +ABC2020_862,Alla Leasor,11/9/1990,20055 Maple Wood Circle,MOBILE +ABC2020_863,Sallyann Weatherall,10/8/1997,35656 Sullivan Terrace,QA +ABC2020_864,Jacques Davydkov,14/09/1982,0165 Westport Park,MOBILE +ABC2020_865,Malissa Osgordby,2/10/1982,13 Anthes Point,MOBILE +ABC2020_866,Ruth Mannix,20/07/1988,7535 Towne Court,SYSTEM +ABC2020_867,Deirdre Kubik,16/06/1998,7 Jenna Lane,WEB +ABC2020_868,Malina Whitley,29/05/1983,3 Mallard Alley,ADMIN +ABC2020_869,Vince Clewer,31/10/1996,868 East Terrace,WEB +ABC2020_870,Culver Morforth,13/06/1981,21 Hoard Way,QA +ABC2020_871,Kerrin Garling,1/10/1991,2240 Becker Crossing,ADMIN +ABC2020_872,Lenna Blaine,20/03/1995,3032 Prairieview Center,WEB +ABC2020_873,Reggis Orta,3/8/1980,499 Laurel Lane,ADMIN +ABC2020_874,Clement Hasloch,29/03/1980,01508 Brickson Park Pass,QA +ABC2020_875,Darrell Goede,9/2/1982,20 Glacier Hill Drive,QA +ABC2020_876,Dotty Simmill,10/3/1997,86904 Algoma Hill,SYSTEM +ABC2020_877,Thorvald Poynzer,10/12/1993,5 Schiller Street,MOBILE +ABC2020_878,Niles Bunney,19/12/1980,6511 Gerald Point,QA +ABC2020_879,Kalila Sedgman,12/8/1987,81094 Sugar Junction,QA +ABC2020_880,Zorana Weedon,23/10/1993,1 Southridge Circle,MOBILE +ABC2020_881,Gaynor Spellecy,21/09/1998,4220 Lakeland Lane,WEB +ABC2020_882,Ekaterina Verrechia,20/05/1984,65338 Westport Trail,QA +ABC2020_883,Odele Rekes,13/01/1984,572 Fuller Court,WEB +ABC2020_884,Sella Boughen,26/09/1984,2 Brickson Park Alley,QA +ABC2020_885,Chancey Ferentz,20/09/1992,546 Service Street,WEB +ABC2020_886,Orsa Wressell,13/01/1988,31726 Dennis Drive,WEB +ABC2020_887,Dane Menloe,23/12/1997,2401 Scoville Pass,ADMIN +ABC2020_888,Boniface Winham,15/09/1982,30 Chive Court,WEB +ABC2020_889,Gherardo Allport,29/11/1989,3595 Jenifer Lane,MOBILE +ABC2020_890,Cherilyn Pember,26/06/1997,993 Gulseth Lane,WEB +ABC2020_891,Giovanna Kiley,6/6/1993,76 Glacier Hill Crossing,QA +ABC2020_892,Gustie Cecil,15/04/1984,2 Prentice Alley,WEB +ABC2020_893,Bondon McArd,13/09/1984,704 Talmadge Avenue,QA +ABC2020_894,Angelico Taylot,22/01/1997,5 Acker Center,ADMIN +ABC2020_895,Frannie Deering,30/12/1987,81166 Grasskamp Center,MOBILE +ABC2020_896,Haskel Van der Spohr,30/03/1982,487 Del Mar Junction,MOBILE +ABC2020_897,Maxi Storah,4/9/1991,6031 Kedzie Pass,SYSTEM +ABC2020_898,Leeanne McPeice,14/12/1984,6980 Golf Street,WEB +ABC2020_899,Lanita Rubra,22/11/1991,4192 Grasskamp Parkway,WEB +ABC2020_900,Elias Gorthy,17/03/1982,75 Arrowood Lane,ADMIN +ABC2020_901,Hayward Shrubb,21/06/1981,8 Northland Park,QA +ABC2020_902,Muhammad Basterfield,27/07/1996,67195 Summer Ridge Circle,QA +ABC2020_903,Feodor Heinig,4/8/1983,60291 Norway Maple Point,QA +ABC2020_904,Karine Wilkison,13/09/1987,43 Jenna Drive,SYSTEM +ABC2020_905,Neddie Ledford,31/08/1987,3201 Bay Pass,QA +ABC2020_906,Bryant Joney,1/2/1986,10 Erie Center,WEB +ABC2020_907,Kipper Sager,11/5/1984,8 Oakridge Trail,WEB +ABC2020_908,Quint Cornew,26/09/1993,0815 Jenifer Pass,MOBILE +ABC2020_909,Myrtice Ivanisov,27/06/1999,1060 Drewry Court,SYSTEM +ABC2020_910,Ulrick Gilyatt,7/12/1985,50 Mifflin Center,WEB +ABC2020_911,Claudian Hobgen,26/02/1997,2 Ridge Oak Plaza,SYSTEM +ABC2020_912,Ramsay Abbey,25/04/1996,2 Montana Hill,WEB +ABC2020_913,Sadella Matyugin,15/09/1980,96 Oakridge Alley,ADMIN +ABC2020_914,Editha Parton,29/04/1982,2589 Eagle Crest Hill,SYSTEM +ABC2020_915,Piotr Dietsche,7/8/1993,553 Huxley Point,SYSTEM +ABC2020_916,Cherlyn Sam,29/09/1980,88301 Algoma Street,WEB +ABC2020_917,Ambur Collingwood,14/07/1990,65 Sachtjen Crossing,SYSTEM +ABC2020_918,Geri Maxfield,21/05/1981,10534 Crowley Junction,MOBILE +ABC2020_919,Hendrika Beamish,25/02/1993,6670 Canary Road,WEB +ABC2020_920,Kathi Dandie,14/10/1985,43406 Vidon Place,MOBILE +ABC2020_921,Emmi Cockings,2/10/1996,229 Mariners Cove Alley,QA +ABC2020_922,Brandise Cullum,21/11/1999,50767 Northfield Alley,MOBILE +ABC2020_923,Iggy Mc Caughen,7/12/1981,8 Redwing Terrace,MOBILE +ABC2020_924,Demetre Poser,14/02/1988,64 Dixon Park,WEB +ABC2020_925,Vivian Durrad,15/04/1984,96609 Killdeer Park,QA +ABC2020_926,Melosa Canacott,21/01/1991,045 Judy Junction,WEB +ABC2020_927,Madelin Chellenham,11/9/1993,9215 Clove Way,QA +ABC2020_928,Rona Edgcumbe,16/12/1995,15051 Schurz Circle,SYSTEM +ABC2020_929,Ingrid Pitceathly,24/01/1998,19693 Reindahl Hill,QA +ABC2020_930,Ninon Alabone,10/11/1993,4788 Butternut Park,SYSTEM +ABC2020_931,Gladi Khristyukhin,25/06/1986,8 Florence Place,QA +ABC2020_932,Karlotte Zuann,10/10/1985,62220 Calypso Center,WEB +ABC2020_933,Yehudit Milmith,29/05/1999,954 Golf Course Center,QA +ABC2020_934,Trula Feathersby,6/6/1986,77029 Kim Plaza,SYSTEM +ABC2020_935,Hallsy Bogeys,18/03/1991,1803 Service Circle,QA +ABC2020_936,Heindrick Klausewitz,27/10/1991,8053 Vahlen Lane,SYSTEM +ABC2020_937,Ursuline Lorain,24/10/1984,2 Judy Circle,ADMIN +ABC2020_938,Perla Knowling,28/06/1987,210 Moose Crossing,QA +ABC2020_939,Jermain Liggens,4/12/1993,864 Spohn Pass,WEB +ABC2020_940,Becka Pietrzyk,9/4/1981,3896 Corben Crossing,WEB +ABC2020_941,Dara Goodspeed,19/09/1987,1630 Kim Place,SYSTEM +ABC2020_942,Eustacia Linforth,15/05/1987,6 Muir Way,ADMIN +ABC2020_943,Sanford Casey,20/12/1980,82839 Transport Crossing,WEB +ABC2020_944,Franky Carabet,14/11/1998,0352 Monica Court,SYSTEM +ABC2020_945,Flynn Lambart,27/03/1994,00232 Anthes Plaza,SYSTEM +ABC2020_946,Mattheus Tooth,12/3/1983,9784 Cardinal Pass,SYSTEM +ABC2020_947,Rosamond Linbohm,3/12/1993,55 Thompson Lane,QA +ABC2020_948,Hulda Habens,5/11/1999,39 Menomonie Alley,MOBILE +ABC2020_949,Corine Cawsby,24/02/1989,8926 Granby Court,SYSTEM +ABC2020_950,Talia Kemmons,5/7/1995,86103 Village Green Lane,WEB +ABC2020_951,Adey Measey,3/7/1987,65985 Autumn Leaf Street,WEB +ABC2020_952,Booth Prium,22/10/1987,47 Quincy Parkway,SYSTEM +ABC2020_953,Way Goldhill,18/04/1993,43525 Novick Road,MOBILE +ABC2020_954,Uta Brando,1/8/1981,912 Bobwhite Place,SYSTEM +ABC2020_955,Floyd Holwell,22/10/1999,9 Bluestem Drive,QA +ABC2020_956,Andriette Acory,25/08/1985,50945 Pearson Street,MOBILE +ABC2020_957,Grace Edds,22/10/1990,2636 Sachtjen Parkway,MOBILE +ABC2020_958,Jewelle Barley,5/6/1992,9 Debs Drive,WEB +ABC2020_959,Clarey Wellum,5/11/1982,322 School Terrace,SYSTEM +ABC2020_960,Tadio Tarney,27/01/1987,6 Pine View Point,QA +ABC2020_961,Josiah Haggith,17/12/1991,947 Spaight Junction,WEB +ABC2020_962,Barrett Stanes,1/12/1989,1245 Schlimgen Hill,WEB +ABC2020_963,Guntar Ruoss,4/4/1980,72392 Browning Plaza,QA +ABC2020_964,Hazlett Elnough,18/10/1987,2575 Basil Court,WEB +ABC2020_965,Baldwin Coker,20/12/1985,53 Schiller Hill,QA +ABC2020_966,Dolley Spearman,10/10/1989,7193 Shasta Point,WEB +ABC2020_967,Dianemarie Klaiser,4/9/1997,9479 Linden Park,SYSTEM +ABC2020_968,Darrin Jacomb,10/5/1994,7581 Hoffman Terrace,WEB +ABC2020_969,Janella Ramstead,13/03/1984,3 Prairieview Junction,MOBILE +ABC2020_970,Allison Bassford,18/05/1998,08 Pearson Lane,WEB +ABC2020_971,Banky Do Rosario,14/06/1988,4599 Bartelt Road,QA +ABC2020_972,Aurelia Shawdforth,20/10/1981,744 Huxley Center,SYSTEM +ABC2020_973,Lizzy Landsman,13/10/1988,86173 Moland Terrace,WEB +ABC2020_974,Calida Andren,3/7/1980,50 Claremont Lane,QA +ABC2020_975,Augusto Lapthorne,30/01/1990,06 Rieder Circle,SYSTEM +ABC2020_976,Maura Jarrelt,26/11/1980,8 Stoughton Avenue,WEB +ABC2020_977,Anthiathia Sandells,30/03/1991,55015 Kingsford Way,MOBILE +ABC2020_978,Teirtza O'Spillane,30/04/1980,49 Blackbird Crossing,MOBILE +ABC2020_979,Starla MacKniely,19/11/1988,0576 Kingsford Street,SYSTEM +ABC2020_980,Gerhardt Cramond,8/9/1994,4 Grayhawk Crossing,SYSTEM +ABC2020_981,Hedwiga Leving,10/9/1996,00 Evergreen Circle,ADMIN +ABC2020_982,Deidre Quaintance,13/07/1983,71 Longview Point,WEB +ABC2020_983,Gallagher Buy,30/05/1986,23056 Killdeer Court,QA +ABC2020_984,Nessy Crux,24/04/1990,8167 Melrose Junction,WEB +ABC2020_985,Lammond Sokill,4/5/1999,9 Gateway Road,QA +ABC2020_986,Zandra Lauks,6/3/1983,4 Twin Pines Way,MOBILE +ABC2020_987,Magnum Djordjevic,30/05/1993,12232 Old Shore Avenue,WEB +ABC2020_988,Bruis Mintram,4/1/1992,80 Towne Trail,WEB +ABC2020_989,Cchaddie McCreedy,6/8/1984,365 Farwell Avenue,QA +ABC2020_990,Rodolph MacClancey,31/01/1996,081 Sycamore Avenue,QA +ABC2020_991,Kati Nickoll,30/11/1990,891 Merchant Lane,WEB +ABC2020_992,Haydon Ditchfield,30/04/1996,5402 Sauthoff Plaza,QA +ABC2020_993,Dick Steptow,8/11/1990,414 Monument Pass,SYSTEM +ABC2020_994,Honey Ughelli,31/08/1988,7 Gerald Hill,SYSTEM +ABC2020_995,Barrett Hillyatt,21/01/1994,921 Pearson Parkway,WEB +ABC2020_996,Angil Dubery,22/09/1990,918 Prairieview Road,QA +ABC2020_997,Ardath Gratland,28/01/1992,24145 Burrows Drive,QA +ABC2020_998,Leslie Haug,22/01/1990,75614 Golf Course Point,QA +ABC2020_999,Benita Gurnee,13/03/1999,98319 Magdeline Court,SYSTEM +ABC2020_1000,Marybeth Mawhinney,29/03/1987,8921 Melvin Point,MOBILE +HUS2020_1,Melania Derle,25/03/1988,66986 Eagan Parkway,SYSTEM +HUS2020_2,Englebert Kilfeather,9/6/1987,63 Basil Trail,ADMIN +HUS2020_3,Loreen Shaves,26/09/1983,91 Clyde Gallagher Junction,WEB +HUS2020_4,Cristiano Gebbie,28/07/1991,89903 Shelley Lane,QA +HUS2020_5,Yorker Winnister,6/1/1988,774 Farwell Alley,WEB +HUS2020_6,Arel Harrow,14/05/1992,99459 Warner Junction,WEB +HUS2020_7,Nelli Delgardillo,19/07/1989,870 Summerview Center,SYSTEM +HUS2020_8,Cosmo Petren,15/08/1991,9054 Porter Center,SYSTEM +HUS2020_9,Gwenneth Ropartz,14/04/1990,50 Blue Bill Park Pass,MOBILE +HUS2020_10,Ileana Toyne,21/03/1985,9439 Lien Center,WEB +HUS2020_11,Norine Kalaher,17/09/1982,2 Commercial Lane,WEB +HUS2020_12,Teodora Ickowicz,11/3/1997,3 Mallard Circle,QA +HUS2020_13,Axe Iuorio,20/08/1990,137 Ridgeway Lane,WEB +HUS2020_14,Pia Stutard,12/7/1990,9961 Birchwood Court,WEB +HUS2020_15,Mandi Bagenal,10/7/1993,73 Nevada Hill,WEB +HUS2020_16,Gail Attenbarrow,29/01/1999,7 Nancy Plaza,SYSTEM +HUS2020_17,Lalo Costigan,9/8/1989,8759 Iowa Place,WEB +HUS2020_18,Vernen Vain,22/04/1997,68 Tennessee Alley,QA +HUS2020_19,Kally Wogden,4/8/1986,824 Lake View Court,WEB +HUS2020_20,Etan Chettle,5/1/1998,0 Rutledge Point,SYSTEM +HUS2020_21,Emili Cadney,7/9/1996,84948 Schlimgen Trail,QA +HUS2020_22,Brad Hugenin,27/07/1982,395 Arapahoe Terrace,MOBILE +HUS2020_23,Olympia Clemmow,2/3/1995,0421 Esch Plaza,QA +HUS2020_24,Hagen Liversidge,21/03/1985,882 Huxley Point,WEB +HUS2020_25,Guthrie Dow,13/12/1992,7 Blue Bill Park Way,ADMIN +HUS2020_26,Emmaline Kenningham,2/10/1980,5 Ramsey Plaza,WEB +HUS2020_27,Mitchael Scamadin,9/11/1986,610 Mccormick Drive,SYSTEM +HUS2020_28,Barbi Paydon,15/12/1990,93251 Eastlawn Place,WEB +HUS2020_29,Lira Byatt,2/6/1999,658 Rowland Way,MOBILE +HUS2020_30,Sophey Di Meo,26/03/1998,70 Eagle Crest Street,SYSTEM +HUS2020_31,Barr Twaits,18/06/1985,21 Manufacturers Center,QA +HUS2020_32,Kerk Chiechio,26/04/1994,42686 Hudson Park,MOBILE +HUS2020_33,Cassie Brough,28/03/1980,7 Comanche Drive,SYSTEM +HUS2020_34,Nari Groundwator,4/11/1997,6248 Anthes Hill,WEB +HUS2020_35,Osmund Brinicombe,14/08/1996,562 Hazelcrest Pass,WEB +HUS2020_36,Wes Ambrogini,9/2/1994,6818 Mallory Center,QA +HUS2020_37,Joete Le feuvre,30/03/1981,83 Forest Run Street,QA +HUS2020_38,Cybil Oleshunin,28/07/1987,609 Paget Trail,SYSTEM +HUS2020_39,Russ Trainor,11/2/1989,14 Northfield Plaza,WEB +HUS2020_40,Michale Erwin,17/08/1992,66 Grasskamp Way,MOBILE +HUS2020_41,Lexie Basso,10/2/1990,4303 Gateway Avenue,QA +HUS2020_42,Johnath Gerner,21/11/1980,0 Vermont Lane,SYSTEM +HUS2020_43,Ferris Potzold,7/7/1985,4 New Castle Alley,MOBILE +HUS2020_44,Margy Collinge,2/11/1999,889 Prairie Rose Junction,QA +HUS2020_45,Jordanna Garbutt,6/10/1985,288 Northwestern Point,MOBILE +HUS2020_46,Mohandas Matasov,2/11/1982,25969 Kedzie Court,MOBILE +HUS2020_47,Bernie Burnes,8/3/1983,67 Arapahoe Alley,WEB +HUS2020_48,Maryellen Gras,16/12/1994,8124 Buhler Avenue,WEB +HUS2020_49,Jermaine Frantz,2/12/1988,3090 Ramsey Center,ADMIN +HUS2020_50,Gabrielle Blythe,5/8/1998,3388 American Trail,WEB +HUS2020_51,Veronika Jermy,2/11/1999,7546 Cody Circle,MOBILE +HUS2020_52,Orland Verna,28/02/1985,96 Laurel Road,MOBILE +HUS2020_53,Prudi Hamon,20/02/1995,621 Golf Place,MOBILE +HUS2020_54,Hillier Tilio,7/12/1982,81694 Beilfuss Center,WEB +HUS2020_55,Kori Rickson,16/06/1986,2828 Hagan Point,QA +HUS2020_56,Constancy Pellant,10/10/1990,9304 Fieldstone Way,MOBILE +HUS2020_57,Sky Vasilyonok,7/7/1989,6315 Thackeray Trail,QA +HUS2020_58,Marrilee Precious,22/10/1987,52 Reindahl Point,QA +HUS2020_59,Pen Okroy,6/8/1995,04 Transport Lane,WEB +HUS2020_60,Lurline Pleasants,14/02/1980,448 Waywood Pass,WEB +HUS2020_61,Caritta St Angel,24/06/1996,463 Kennedy Place,ADMIN +HUS2020_62,Jesse Rowantree,3/2/1987,027 Kipling Street,WEB +HUS2020_63,Marwin Culkin,23/08/1996,53924 Victoria Road,MOBILE +HUS2020_64,Ring Lilywhite,17/06/1998,9 Monument Terrace,WEB +HUS2020_65,Rodrigo Windridge,21/02/1999,7 Delaware Trail,SYSTEM +HUS2020_66,Lucia Shakspeare,27/09/1991,885 Di Loreto Junction,QA +HUS2020_67,Vito Trustrie,12/3/1980,1 Rockefeller Plaza,QA +HUS2020_68,Marta Dykes,17/04/1989,44 Sherman Alley,WEB +HUS2020_69,Bald Husbands,4/6/1994,53 Forest Crossing,MOBILE +HUS2020_70,Leonore Begg,24/05/1990,728 Merchant Alley,SYSTEM +HUS2020_71,Merry D'Aeth,25/07/1983,73426 Almo Avenue,WEB +HUS2020_72,Lyn Baughen,23/03/1983,82984 Lakeland Circle,MOBILE +HUS2020_73,Esdras Birdwistle,15/04/1985,9 Havey Hill,SYSTEM +HUS2020_74,Angus Ilett,20/12/1994,641 Saint Paul Center,MOBILE +HUS2020_75,Milzie Braker,28/03/1989,234 Esker Road,WEB +HUS2020_76,Dell Kydde,13/05/1981,6 Fisk Way,SYSTEM +HUS2020_77,Trenna Mollnar,11/6/1982,8 Bonner Parkway,MOBILE +HUS2020_78,Atlante Terrett,16/06/1981,9 Old Gate Plaza,QA +HUS2020_79,Giana Dibner,9/1/1995,33 Arrowood Street,SYSTEM +HUS2020_80,Gilberte Bohlens,31/07/1999,2680 Spaight Place,SYSTEM +HUS2020_81,Mabelle Eaklee,24/12/1993,11039 Stone Corner Lane,SYSTEM +HUS2020_82,Rina Ody,25/12/1993,25657 Lukken Pass,SYSTEM +HUS2020_83,Ara Showt,2/8/1984,80210 Old Gate Plaza,SYSTEM +HUS2020_84,Gabriello Scopyn,17/04/1986,55 Karstens Lane,SYSTEM +HUS2020_85,Kalina Burle,13/03/1992,34588 Lerdahl Junction,MOBILE +HUS2020_86,Ashla Wickersham,18/11/1983,4 Quincy Point,WEB +HUS2020_87,Belia Egdale,9/1/1989,4684 Eagle Crest Drive,MOBILE +HUS2020_88,Nat MacCaghan,15/09/1983,0836 Corben Point,ADMIN +HUS2020_89,Sauncho Hands,13/06/1988,03 Fallview Terrace,WEB +HUS2020_90,Bibi Golsthorp,7/11/1988,297 Anthes Court,SYSTEM +HUS2020_91,Allyson Hadgraft,8/9/1994,840 Morrow Crossing,WEB +HUS2020_92,Archaimbaud Bartali,24/05/1980,357 Elka Lane,MOBILE +HUS2020_93,Nels Raspin,7/5/1981,343 Bultman Court,WEB +HUS2020_94,Giuseppe Penbarthy,31/08/1996,532 Hooker Junction,ADMIN +HUS2020_95,Emmy Joska,24/12/1987,321 Florence Drive,WEB +HUS2020_96,Mikkel Fishpool,6/5/1986,44 Ramsey Terrace,SYSTEM +HUS2020_97,Cody Duplock,14/07/1980,6 Monterey Lane,SYSTEM +HUS2020_98,Alameda Barford,26/03/1997,533 Harbort Alley,WEB +HUS2020_99,Nicolas Lorek,3/6/1989,3633 Walton Circle,QA +HUS2020_100,Janenna Pollock,31/03/1988,49328 Park Meadow Junction,QA +HUS2020_101,Fayre Betke,27/05/1992,5 Golden Leaf Drive,QA +HUS2020_102,Natalya Widd,4/4/1988,89964 Graceland Street,SYSTEM +HUS2020_103,Moss Sworder,25/02/1985,7293 Sunnyside Drive,SYSTEM +HUS2020_104,Trudy Fulks,28/05/1995,26308 Everett Court,WEB +HUS2020_105,Vito Hutcheson,31/07/1986,67853 Westend Point,SYSTEM +HUS2020_106,Edita Ricardet,15/08/1987,58067 Stuart Alley,ADMIN +HUS2020_107,Petunia Musicka,2/3/1983,5417 Canary Circle,QA +HUS2020_108,Munmro Hardy-Piggin,13/03/1995,9 Memorial Pass,QA +HUS2020_109,Kylila Cinavas,4/12/1993,4 High Crossing Avenue,WEB +HUS2020_110,Gillian Sivell,18/12/1980,02 Carey Hill,ADMIN +HUS2020_111,Norby Laidel,18/05/1983,4726 Hermina Center,WEB +HUS2020_112,Malinde Pettecrew,23/01/1982,11 Manitowish Plaza,QA +HUS2020_113,Armand Haggerwood,4/4/1998,3770 Rieder Road,WEB +HUS2020_114,Marna Duff,24/01/1984,81896 Magdeline Center,SYSTEM +HUS2020_115,Tanney Lynd,24/09/1996,0 Bay Trail,MOBILE +HUS2020_116,Courtney Gehrts,28/11/1987,1606 Mockingbird Lane,WEB +HUS2020_117,Juana Bosward,21/09/1992,763 Columbus Circle,QA +HUS2020_118,Greg McCuish,18/06/1984,85 Sheridan Junction,WEB +HUS2020_119,Sayres Lattey,8/5/1986,1719 Tennyson Junction,MOBILE +HUS2020_120,Kristoforo Viger,25/07/1988,51660 Lakeland Park,ADMIN +HUS2020_121,Bonni Barbe,30/08/1989,06 Gina Alley,WEB +HUS2020_122,Delia MacRorie,13/01/1988,52448 Artisan Circle,SYSTEM +HUS2020_123,Marybelle Flancinbaum,9/2/1990,6 Killdeer Junction,QA +HUS2020_124,Menard MacAskie,13/01/1992,19 Dorton Center,SYSTEM +HUS2020_125,Verina Feighney,10/5/1997,04 Walton Pass,WEB +HUS2020_126,Lora Sabban,3/12/1984,967 Cottonwood Drive,WEB +HUS2020_127,Fredericka Waymont,27/09/1980,614 Northport Way,SYSTEM +HUS2020_128,Kilian Kyd,19/04/1991,0429 Nancy Drive,MOBILE +HUS2020_129,Egon Danser,21/09/1990,59131 Atwood Crossing,SYSTEM +HUS2020_130,Olympie Gilloran,22/06/1999,8994 Center Trail,SYSTEM +HUS2020_131,Ervin Skpsey,16/04/1981,09 Veith Trail,WEB +HUS2020_132,Sissy Climer,11/12/1990,472 Hanson Terrace,MOBILE +HUS2020_133,Edythe Middleton,26/08/1990,05 Lukken Street,QA +HUS2020_134,Zak Bernard,20/04/1984,77 Chinook Park,SYSTEM +HUS2020_135,Georgianna Quested,12/10/1998,9757 Sommers Street,QA +HUS2020_136,Johan Ditty,7/9/1982,6 Vermont Street,ADMIN +HUS2020_137,Hyacinthie Raggitt,29/01/1989,3 Kim Junction,QA +HUS2020_138,Pippa Lante,28/11/1982,8550 Barnett Avenue,QA +HUS2020_139,Brynne Arrol,6/9/1987,0 Golden Leaf Pass,WEB +HUS2020_140,Raimund Prendiville,19/01/1996,7296 Schiller Terrace,MOBILE +HUS2020_141,Carlos Screach,10/9/1981,7904 Karstens Plaza,WEB +HUS2020_142,Fionna Rudgley,13/05/1986,26279 Westridge Pass,WEB +HUS2020_143,My Balazot,27/02/1995,03 Mayer Place,MOBILE +HUS2020_144,Maje Sanchez,13/01/1989,7 Bashford Junction,WEB +HUS2020_145,Gwendolen Hugland,29/09/1997,74 Acker Plaza,QA +HUS2020_146,Bernetta Rangeley,23/11/1986,8063 Forest Dale Parkway,SYSTEM +HUS2020_147,Emmerich Lytlle,14/12/1984,88 Straubel Court,WEB +HUS2020_148,Alwin Ungerechts,15/04/1982,15791 Northport Lane,QA +HUS2020_149,Sisely Gulland,24/06/1982,9768 Esker Terrace,MOBILE +HUS2020_150,Kristopher Narraway,17/08/1984,3 South Point,MOBILE +HUS2020_151,Dodie Hemerijk,30/06/1994,73832 Eastlawn Parkway,MOBILE +HUS2020_152,Valentine Bridgland,27/08/1995,3 Bellgrove Terrace,WEB +HUS2020_153,Brandie Oakly,10/11/1998,48 Michigan Trail,WEB +HUS2020_154,Kennith Sibylla,2/6/1981,8957 Pawling Drive,SYSTEM +HUS2020_155,Sutherlan Sancias,17/08/1992,55758 South Court,MOBILE +HUS2020_156,Atlante Sondon,7/8/1981,67647 Westend Hill,ADMIN +HUS2020_157,Annecorinne Wadeson,25/11/1996,640 Milwaukee Plaza,QA +HUS2020_158,Arlie Bloyes,25/01/1983,5 Goodland Way,WEB +HUS2020_159,Eugenia Linforth,6/5/1987,851 Delladonna Drive,ADMIN +HUS2020_160,Margarete Dixey,1/12/1996,78 Anderson Pass,MOBILE +HUS2020_161,Missy Mion,12/10/1998,79920 Bobwhite Terrace,MOBILE +HUS2020_162,Giorgio Pike,14/08/1980,19 Texas Alley,MOBILE +HUS2020_163,Lacie Dibbert,19/06/1999,3 Melrose Parkway,MOBILE +HUS2020_164,Valerie Holdworth,8/8/1986,3 Katie Terrace,WEB +HUS2020_165,Micah Bockin,27/09/1982,03071 Haas Point,MOBILE +HUS2020_166,Raff Base,22/04/1991,2923 Washington Crossing,SYSTEM +HUS2020_167,Kandace Worham,21/11/1982,2 Bonner Trail,SYSTEM +HUS2020_168,Godfrey Kiljan,6/11/1988,9 Larry Street,MOBILE +HUS2020_169,Janeczka Wysome,18/02/1993,64503 Columbus Parkway,SYSTEM +HUS2020_170,Micheil Barajaz,5/6/1999,6535 Washington Court,WEB +HUS2020_171,Cornie Goodliffe,19/03/1985,1 Gulseth Park,ADMIN +HUS2020_172,Kellie Knoton,7/11/1993,25 Forest Run Drive,QA +HUS2020_173,Filmore Tomsen,11/1/1984,2870 Stephen Junction,WEB +HUS2020_174,Lombard Stonbridge,11/1/1998,2 Gerald Pass,QA +HUS2020_175,Jean Saffen,5/7/1998,934 Birchwood Road,WEB +HUS2020_176,Melisande Bulch,9/12/1980,59 Parkside Circle,MOBILE +HUS2020_177,Arman Cheers,24/03/1985,0 Sachtjen Circle,WEB +HUS2020_178,Scottie Crimp,31/07/1997,5422 Dovetail Drive,QA +HUS2020_179,Alphard Reichardt,12/5/1988,79836 Marcy Crossing,QA +HUS2020_180,Alexis Bramsen,5/9/1999,6101 Mitchell Crossing,QA +HUS2020_181,Umberto Gaudon,30/07/1995,4 Bartillon Point,MOBILE +HUS2020_182,Cheryl Ghion,4/3/1982,030 Holy Cross Drive,MOBILE +HUS2020_183,Sawyer Withers,18/01/1988,81 Messerschmidt Road,MOBILE +HUS2020_184,Alex Piatkow,26/09/1989,6431 Bluestem Avenue,MOBILE +HUS2020_185,Nikos Mandy,25/09/1984,36 Weeping Birch Court,WEB +HUS2020_186,Octavius Wartnaby,27/12/1989,3093 Buell Crossing,MOBILE +HUS2020_187,Sara Hryniewicki,17/03/1995,2660 Clemons Parkway,WEB +HUS2020_188,Torre Deener,18/04/1996,83 Summit Trail,MOBILE +HUS2020_189,Adrienne Fridaye,20/09/1981,474 Alpine Avenue,SYSTEM +HUS2020_190,Collete Lapides,14/10/1998,51712 Stang Pass,ADMIN +HUS2020_191,Isobel Paumier,27/01/1992,717 Oxford Street,SYSTEM +HUS2020_192,Pooh Dawbury,5/11/1996,34372 Glendale Pass,MOBILE +HUS2020_193,Sela Donn,8/10/1995,450 Sherman Park,MOBILE +HUS2020_194,Alexandr Gatecliffe,17/08/1990,659 Hoepker Street,QA +HUS2020_195,Lettie Rabson,24/09/1994,5 Kennedy Road,MOBILE +HUS2020_196,Coleen Wycherley,22/01/1986,7 Melody Parkway,WEB +HUS2020_197,Ford Craggs,25/11/1997,5 Bashford Terrace,WEB +HUS2020_198,Tatiania Edgeley,10/2/1993,96 Golf View Avenue,SYSTEM +HUS2020_199,Sula Paullin,20/07/1989,3 Thackeray Trail,SYSTEM +HUS2020_200,Katti Hoyland,18/07/1997,00 Corry Place,MOBILE +HUS2020_201,Dorrie Tebbs,19/03/1992,05310 Bowman Terrace,WEB +HUS2020_202,Sherry Morais,25/08/1984,56716 Summit Junction,QA +HUS2020_203,Mei Callear,8/10/1984,8640 Golden Leaf Place,ADMIN +HUS2020_204,Emelia Ruddoch,28/04/1997,3547 Forest Run Pass,SYSTEM +HUS2020_205,Bethina Frostdicke,15/06/1981,0037 Dakota Lane,MOBILE +HUS2020_206,Benoite Litherborough,24/10/1995,16765 Bunker Hill Junction,WEB +HUS2020_207,Wally Davys,1/11/1988,94065 Prentice Park,WEB +HUS2020_208,Ransell Auston,20/09/1996,209 Clemons Way,WEB +HUS2020_209,Dedie Leahair,26/01/1992,97 Mifflin Junction,QA +HUS2020_210,Vale Wyburn,28/12/1986,1557 New Castle Point,WEB +HUS2020_211,Cecelia Divine,16/10/1989,9 Shasta Place,WEB +HUS2020_212,Paulita Romayn,15/07/1991,190 Hayes Trail,MOBILE +HUS2020_213,Bessy Gravener,10/11/1994,1 Crowley Way,QA +HUS2020_214,Rolph Veryan,13/03/1995,466 Jay Point,WEB +HUS2020_215,Stuart Thirlaway,14/10/1985,8058 Farwell Crossing,SYSTEM +HUS2020_216,Octavius Napoleone,4/9/1998,64156 Manufacturers Circle,QA +HUS2020_217,Isidore Jeffcoate,27/12/1981,099 Jana Street,WEB +HUS2020_218,Joel Edson,3/8/1987,545 Oakridge Alley,WEB +HUS2020_219,George Peres,29/05/1991,02 Merrick Terrace,QA +HUS2020_220,Roxane Munden,16/03/1986,1790 Esch Trail,SYSTEM +HUS2020_221,Marchall Elcoate,3/9/1985,049 Milwaukee Avenue,ADMIN +HUS2020_222,Jaime Maxted,24/05/1997,22 Dexter Circle,ADMIN +HUS2020_223,Ainslie Tenney,10/12/1984,16 Summer Ridge Park,SYSTEM +HUS2020_224,Lewie Heppenspall,6/1/1999,14163 Dunning Center,MOBILE +HUS2020_225,Maisey Sebring,12/10/1982,9 Lotheville Lane,SYSTEM +HUS2020_226,Keelia MacAloren,30/04/1991,74 Thackeray Center,QA +HUS2020_227,Karlie Gheerhaert,6/1/1991,8 Warbler Terrace,MOBILE +HUS2020_228,Lucine Rraundl,12/9/1989,1 Thackeray Plaza,WEB +HUS2020_229,Patrizio Rudyard,10/6/1987,524 Leroy Circle,WEB +HUS2020_230,Isidoro Castillo,17/03/1985,80334 Oxford Center,SYSTEM +HUS2020_231,Wally Kayne,4/4/1995,7465 Goodland Trail,QA +HUS2020_232,Joyann Goodlett,29/08/1990,31855 Shelley Street,WEB +HUS2020_233,Mac Checkley,15/01/1982,7308 Sunbrook Circle,ADMIN +HUS2020_234,Justine Cartmell,29/01/1987,3540 Del Mar Hill,ADMIN +HUS2020_235,Warde Wemes,20/05/1993,5 Jackson Drive,QA +HUS2020_236,Arly Shewon,8/6/1994,61366 Caliangt Place,SYSTEM +HUS2020_237,Syman Spoure,28/05/1987,35061 Glacier Hill Lane,QA +HUS2020_238,Ravid Peplow,26/08/1989,39399 Florence Parkway,SYSTEM +HUS2020_239,Kennett Saynor,20/11/1989,0 Knutson Road,WEB +HUS2020_240,Wandie Krates,30/10/1985,7 Vermont Lane,MOBILE +HUS2020_241,Britni Dove,11/9/1986,352 Becker Plaza,MOBILE +HUS2020_242,Devina Kimber,6/6/1996,272 Forest Dale Circle,MOBILE +HUS2020_243,Clarisse Bonicelli,29/08/1984,2931 Donald Street,QA +HUS2020_244,Mikey Sorrill,6/10/1985,2881 Esker Lane,QA +HUS2020_245,Ralf Doveston,25/08/1992,8167 Arrowood Pass,MOBILE +HUS2020_246,Anni Cattlow,17/03/1983,0142 Sunfield Hill,MOBILE +HUS2020_247,Jan Yuryichev,30/12/1980,07 Dahle Pass,ADMIN +HUS2020_248,Erhard Smoughton,23/03/1987,3 Bluejay Pass,SYSTEM +HUS2020_249,Huberto Portsmouth,5/10/1986,8179 Tennessee Drive,MOBILE +HUS2020_250,Cecil Shovlin,27/09/1988,4351 Toban Parkway,WEB +HUS2020_251,Winston Beeston,11/5/1988,59553 Farwell Pass,ADMIN +HUS2020_252,Gauthier Galton,19/01/1987,82 Farragut Avenue,MOBILE +HUS2020_253,Sheridan Megroff,24/07/1982,6 Anthes Place,ADMIN +HUS2020_254,Philis Gomersall,16/04/1993,85650 Elmside Avenue,MOBILE +HUS2020_255,Diego Ledekker,12/8/1981,18443 Sommers Pass,QA +HUS2020_256,Land Overstreet,6/1/1997,4330 Sheridan Center,SYSTEM +HUS2020_257,Corinne Eitter,21/05/1997,93615 Schurz Street,WEB +HUS2020_258,Lucius Dudeney,5/10/1996,146 Weeping Birch Trail,MOBILE +HUS2020_259,Killie Almak,11/9/1999,4408 Rusk Center,QA +HUS2020_260,Arlan Willowby,19/11/1985,3 Buell Pass,SYSTEM +HUS2020_261,Jesus MacFarlane,17/05/1987,041 Atwood Point,MOBILE +HUS2020_262,Sayres Robus,24/10/1989,4090 Delladonna Trail,WEB +HUS2020_263,Wait Ager,1/9/1992,4682 Grover Way,WEB +HUS2020_264,Richardo Rounsefull,9/8/1986,3289 Upham Crossing,SYSTEM +HUS2020_265,Idette Paulot,24/04/1985,542 Linden Place,MOBILE +HUS2020_266,Wyn Hanscom,7/3/1996,37793 Buena Vista Point,MOBILE +HUS2020_267,Fallon Conaboy,3/11/1981,5026 Lunder Crossing,MOBILE +HUS2020_268,Ernestine Fradgley,11/1/1992,21 Esch Drive,ADMIN +HUS2020_269,Alison Tatnell,15/12/1995,40 Moose Hill,MOBILE +HUS2020_270,Tobias Kringe,6/11/1983,0668 Fuller Center,WEB +HUS2020_271,Fiona Foxton,26/12/1983,9805 Forest Dale Point,MOBILE +HUS2020_272,Othella Deetlefs,28/02/1993,1915 Canary Pass,WEB +HUS2020_273,Darby Reskelly,3/11/1987,32707 Moland Road,QA +HUS2020_274,Alfi Labat,31/05/1998,9 Longview Parkway,WEB +HUS2020_275,Delano Gouldsmith,17/09/1982,8983 Susan Terrace,QA +HUS2020_276,Sophia Hannaway,15/06/1999,76 Summit Park,SYSTEM +HUS2020_277,Garland Birdsey,21/02/1990,7 Veith Crossing,WEB +HUS2020_278,Morry Sloyan,15/11/1990,285 Harbort Circle,WEB +HUS2020_279,Jill Chidley,3/8/1985,45570 Elgar Way,WEB +HUS2020_280,Kanya Bratt,28/04/1994,7219 Tomscot Alley,ADMIN +HUS2020_281,Kat Capnerhurst,9/7/1995,121 Gulseth Drive,ADMIN +HUS2020_282,Ettie Rominov,25/04/1990,61912 Shelley Hill,WEB +HUS2020_283,Ursuline Keane,8/10/1995,00620 Fairview Alley,MOBILE +HUS2020_284,Leo Ivers,22/07/1987,67148 Claremont Road,SYSTEM +HUS2020_285,Jonie Jewel,5/1/1980,62597 Old Shore Drive,MOBILE +HUS2020_286,Elli Joselevitch,26/02/1997,3834 Hauk Way,WEB +HUS2020_287,Antonietta Ricoald,18/10/1982,73 Scoville Alley,SYSTEM +HUS2020_288,Olwen Berk,10/8/1988,34 Summerview Hill,WEB +HUS2020_289,Everett Deener,16/08/1989,947 Comanche Park,WEB +HUS2020_290,Audry Leedes,16/05/1995,99177 Sage Lane,QA +HUS2020_291,Johannah Firby,25/12/1990,7 Lotheville Parkway,MOBILE +HUS2020_292,Tracey Bohin,15/09/1988,2 Arkansas Place,QA +HUS2020_293,Betta Strettell,28/01/1992,0108 Bluejay Park,WEB +HUS2020_294,Eadith Oleszkiewicz,13/09/1982,212 Emmet Alley,SYSTEM +HUS2020_295,Suzy Goves,19/10/1990,16811 Crescent Oaks Alley,WEB +HUS2020_296,Winne Anear,25/04/1995,00 Bonner Terrace,SYSTEM +HUS2020_297,Tasha Mumberson,14/01/1992,70358 Thackeray Trail,WEB +HUS2020_298,Shelly Kitson,12/5/1999,289 Monument Park,WEB +HUS2020_299,Stephi Falconbridge,5/9/1987,891 Dorton Way,WEB +HUS2020_300,Kessiah Shales,4/5/1991,7365 Merchant Park,QA +HUS2020_301,Aldin Varfolomeev,14/04/1997,638 Onsgard Trail,MOBILE +HUS2020_302,Rozella Nourse,21/02/1992,83867 Raven Crossing,QA +HUS2020_303,Berky Zannetti,20/09/1981,6268 Cody Lane,WEB +HUS2020_304,Lynnett Tuminelli,8/11/1986,9 Onsgard Lane,SYSTEM +HUS2020_305,Phelia Nulty,30/06/1995,1240 Del Mar Hill,WEB +HUS2020_306,Leigh Koche,31/01/1997,06 Summit Parkway,WEB +HUS2020_307,Pepillo Attoe,27/04/1998,557 Calypso Park,WEB +HUS2020_308,Beverlee Sharvell,9/4/1984,0345 Redwing Trail,MOBILE +HUS2020_309,Bord Ritmeyer,1/10/1998,2740 Redwing Street,MOBILE +HUS2020_310,Ingeborg Goldbourn,24/09/1985,013 Golf Course Court,ADMIN +HUS2020_311,Blondell Beardow,26/08/1988,30136 Ridge Oak Point,MOBILE +HUS2020_312,Cointon Goodacre,1/10/1980,69 Cascade Hill,WEB +HUS2020_313,Felice Filtness,4/10/1990,81284 Merchant Drive,QA +HUS2020_314,Pietro Yaakov,22/02/1993,32 Mallard Road,ADMIN +HUS2020_315,Darlene Gentiry,20/06/1996,312 Weeping Birch Road,MOBILE +HUS2020_316,Eulalie Thornham,5/5/1996,303 Dayton Circle,MOBILE +HUS2020_317,Rey Paladini,28/04/1985,3 Sundown Terrace,WEB +HUS2020_318,Benoite Plastow,25/11/1991,0742 Alpine Avenue,WEB +HUS2020_319,Nance Ferrario,24/06/1994,361 Dryden Center,QA +HUS2020_320,Lindsay Treacy,2/9/1981,3 Utah Lane,WEB +HUS2020_321,Jere Rochford,3/7/1997,32 Prentice Crossing,QA +HUS2020_322,Tymon Jobbings,4/5/1986,52 Red Cloud Trail,QA +HUS2020_323,Graeme Bukowski,14/07/1993,6205 Dapin Way,QA +HUS2020_324,Anita Sparshott,16/05/1995,99848 Sage Hill,SYSTEM +HUS2020_325,Deloris Librey,2/8/1996,39097 Fieldstone Point,MOBILE +HUS2020_326,Imogene De Fraine,29/11/1997,1031 Drewry Alley,WEB +HUS2020_327,Gunner Champain,2/11/1985,7 Westridge Crossing,SYSTEM +HUS2020_328,Nomi Pitrelli,23/06/1987,36472 Waubesa Place,MOBILE +HUS2020_329,Leodora Garric,4/10/1990,6367 Melody Avenue,WEB +HUS2020_330,Ganny Vandenhoff,13/01/1999,70153 Messerschmidt Hill,QA +HUS2020_331,John Hardeman,26/08/1987,6464 Briar Crest Trail,MOBILE +HUS2020_332,Dale Adamou,30/04/1993,66 Mockingbird Terrace,SYSTEM +HUS2020_333,Marga Leishman,12/2/1982,9 Milwaukee Junction,QA +HUS2020_334,Tami Aggas,8/7/1994,7 Kingsford Plaza,MOBILE +HUS2020_335,Catina Evitt,10/9/1991,56 Buhler Court,SYSTEM +HUS2020_336,Gasper Garcia,14/07/1990,70915 Hooker Avenue,MOBILE +HUS2020_337,Ebenezer Warland,21/10/1992,42638 Buena Vista Center,SYSTEM +HUS2020_338,Denna Boyat,9/8/1989,436 Anzinger Park,WEB +HUS2020_339,Marcy Wooldridge,26/03/1992,98746 Russell Parkway,ADMIN +HUS2020_340,Feliks Waterhowse,14/02/1989,2317 Glacier Hill Trail,SYSTEM +HUS2020_341,Ulrick McKelvie,30/11/1997,0 Gulseth Trail,ADMIN +HUS2020_342,Carissa Fidgeon,27/05/1991,309 Aberg Parkway,MOBILE +HUS2020_343,Jocko Tock,30/08/1993,3 Waxwing Parkway,WEB +HUS2020_344,Oralla Balentyne,1/4/1989,0330 Dapin Center,WEB +HUS2020_345,Myra Bolding,22/07/1992,81350 Moose Trail,MOBILE +HUS2020_346,Arnoldo Turpey,15/11/1981,78770 Drewry Junction,WEB +HUS2020_347,Shanie Fintoph,9/2/1990,571 Shoshone Parkway,WEB +HUS2020_348,Ethelind Vennings,9/12/1991,0627 Tennyson Terrace,MOBILE +HUS2020_349,Beatrisa Cotter,21/01/1991,91331 Heffernan Center,WEB +HUS2020_350,Ellsworth Laight,24/01/1993,5 Sommers Avenue,QA +HUS2020_351,Cherise Rustadge,23/07/1997,4899 Rowland Avenue,QA +HUS2020_352,Doralia Bridle,10/9/1999,16028 Blue Bill Park Street,WEB +HUS2020_353,Georgine Mulliner,9/5/1996,6 Ridgeview Plaza,WEB +HUS2020_354,Lita Jealous,17/05/1998,01 Mallard Avenue,SYSTEM +HUS2020_355,Retha MacKartan,31/12/1997,32 Heffernan Point,QA +HUS2020_356,Hyatt Lente,6/11/1988,49163 Mifflin Pass,WEB +HUS2020_357,Kenny Heilds,13/04/1995,5 Tennyson Junction,MOBILE +HUS2020_358,Gunner Oldroyde,10/2/1987,75 Blaine Plaza,ADMIN +HUS2020_359,Diarmid Barlas,20/03/1984,289 Onsgard Place,MOBILE +HUS2020_360,Jori Champion,25/04/1993,9453 Cherokee Road,MOBILE +HUS2020_361,Fayth Bangiard,11/11/1994,34528 Scott Court,WEB +HUS2020_362,Tiebout Woolam,22/12/1988,1 Loomis Drive,QA +HUS2020_363,Kaitlyn Erlam,14/11/1995,3 Fair Oaks Terrace,QA +HUS2020_364,Dorolisa Mumford,9/8/1991,94 Cherokee Way,WEB +HUS2020_365,Wilek O'Finan,12/1/1992,255 Mockingbird Pass,SYSTEM +HUS2020_366,Bale Purkiss,18/07/1989,2 Merrick Road,WEB +HUS2020_367,Laurie Scaife,16/04/1999,43 Katie Street,QA +HUS2020_368,Griffie Antosik,9/3/1991,75 Stoughton Street,QA +HUS2020_369,Gamaliel Capstaff,29/12/1990,93 8th Lane,SYSTEM +HUS2020_370,Jermain Tavernor,17/07/1985,88 John Wall Pass,WEB +HUS2020_371,Marla Feld,23/12/1980,88683 Red Cloud Lane,ADMIN +HUS2020_372,Morry Poulden,12/8/1983,08190 Thompson Avenue,QA +HUS2020_373,Ellsworth Lynde,27/06/1990,6875 Logan Hill,SYSTEM +HUS2020_374,Serge Stollenhof,1/3/1984,39718 Oriole Street,QA +HUS2020_375,Brittani Swetmore,22/09/1993,5 Ludington Pass,ADMIN +HUS2020_376,Lloyd Tipens,26/03/1980,48338 Dunning Parkway,ADMIN +HUS2020_377,Vasilis Shilston,13/10/1988,37 Aberg Road,SYSTEM +HUS2020_378,Barret Waugh,9/4/1986,64 Victoria Avenue,SYSTEM +HUS2020_379,Andrei Botcherby,19/07/1983,11 Talmadge Pass,WEB +HUS2020_380,Devi Shimmans,5/1/1980,6 Artisan Drive,QA +HUS2020_381,Alyssa McPhilip,9/12/1985,693 Hudson Pass,SYSTEM +HUS2020_382,Iago Crittal,1/11/1993,60 Riverside Alley,WEB +HUS2020_383,Hakeem Hindrick,10/8/1993,73 Blackbird Parkway,MOBILE +HUS2020_384,Kain Ciric,14/10/1985,9556 Bowman Plaza,ADMIN +HUS2020_385,Dora Blaxton,14/10/1987,05109 Dahle Crossing,WEB +HUS2020_386,Douglas Osbidston,31/08/1980,2 Hauk Trail,SYSTEM +HUS2020_387,Bartram Bayldon,28/11/1982,40091 Cambridge Pass,QA +HUS2020_388,Miriam Brundle,21/02/1983,303 Leroy Plaza,WEB +HUS2020_389,Blinni Cocci,24/05/1996,601 Ohio Avenue,QA +HUS2020_390,Ebony Endean,7/5/1988,20 Commercial Center,MOBILE +HUS2020_391,Gisela Roxburgh,23/04/1998,332 Burrows Lane,MOBILE +HUS2020_392,Hillery Giannasi,15/10/1987,5125 Golf View Point,WEB +HUS2020_393,Jameson McMurrugh,19/02/1997,2275 Lillian Terrace,SYSTEM +HUS2020_394,Darryl Chevis,25/11/1985,13 Lunder Terrace,QA +HUS2020_395,Rebeka Doleman,20/07/1982,180 Oxford Parkway,SYSTEM +HUS2020_396,Ahmad Brunnstein,24/05/1997,29900 Delaware Street,QA +HUS2020_397,Thomasina Sarton,3/9/1985,6335 Division Drive,QA +HUS2020_398,Devlin Defraine,11/8/1988,201 Alpine Trail,WEB +HUS2020_399,Corty Print,23/12/1983,62 Shopko Alley,ADMIN +HUS2020_400,Elspeth Husher,22/07/1986,39 Jay Circle,ADMIN +HUS2020_401,Jackelyn O'Doghesty,2/6/1997,27820 Nelson Center,QA +HUS2020_402,Kendra Douthwaite,28/11/1983,2430 Redwing Center,WEB +HUS2020_403,Eugenio Orbell,27/05/1982,962 Coolidge Way,MOBILE +HUS2020_404,Alica Sheen,5/11/1998,61703 Granby Center,SYSTEM +HUS2020_405,Munroe Lawland,19/09/1980,2440 Clove Hill,WEB +HUS2020_406,Ericka O'Dyvoy,12/12/1993,23 Loftsgordon Avenue,SYSTEM +HUS2020_407,Jeannette Jori,8/12/1991,4976 Graceland Drive,WEB +HUS2020_408,Willi Trotman,2/6/1980,41686 Myrtle Road,SYSTEM +HUS2020_409,Justinn Derisley,27/11/1999,0 Ohio Court,WEB +HUS2020_410,Sid Roostan,1/5/1999,79928 Washington Way,ADMIN +HUS2020_411,Carey Trewhella,22/11/1991,15 Hayes Drive,QA +HUS2020_412,Valerie Tregoning,29/04/1993,7 7th Park,MOBILE +HUS2020_413,Myrwyn Clutten,5/3/1989,48569 Waywood Street,WEB +HUS2020_414,Ulysses Dymick,11/11/1990,2 Continental Lane,WEB +HUS2020_415,Christye Swinburn,17/05/1986,14 Summit Circle,SYSTEM +HUS2020_416,Selle Cammis,17/02/1985,552 Meadow Ridge Alley,SYSTEM +HUS2020_417,Lorelle Risley,29/10/1982,0 Morrow Court,MOBILE +HUS2020_418,Fulton Bertome,3/5/1983,58 Westerfield Crossing,WEB +HUS2020_419,Celestina Honatsch,9/8/1990,2 Nancy Pass,MOBILE +HUS2020_420,Colas Nice,27/05/1983,402 Annamark Park,QA +HUS2020_421,Eve Davidovici,29/12/1983,71 Prentice Drive,MOBILE +HUS2020_422,Debera Chilcotte,17/12/1983,886 Bay Junction,ADMIN +HUS2020_423,Serena Danielsky,7/7/1996,712 4th Circle,MOBILE +HUS2020_424,Adriena Hukins,1/2/1981,0 Ridgeview Circle,MOBILE +HUS2020_425,Susy Halwell,16/06/1992,18725 Red Cloud Point,WEB +HUS2020_426,Gerti Walesa,10/8/1996,68586 Summerview Junction,WEB +HUS2020_427,Ayn Mycroft,26/09/1987,23 Clemons Street,ADMIN +HUS2020_428,Dana Perrin,11/6/1996,5856 Hermina Drive,SYSTEM +HUS2020_429,Thom Epple,4/12/1980,4 Donald Drive,SYSTEM +HUS2020_430,Juliane Mepham,28/11/1983,759 Tomscot Road,WEB +HUS2020_431,Reade McGilben,18/03/1996,47372 Forest Lane,ADMIN +HUS2020_432,Sandye Bletso,9/6/1986,15326 Valley Edge Junction,MOBILE +HUS2020_433,Paquito Cracknall,14/07/1996,6897 Cordelia Drive,SYSTEM +HUS2020_434,Solomon Graben,28/12/1995,5 Sullivan Hill,QA +HUS2020_435,Maisey Phettis,16/11/1987,345 Fieldstone Drive,MOBILE +HUS2020_436,Ody Hallmark,19/02/1980,942 Farragut Court,WEB +HUS2020_437,Cherise Comoletti,13/09/1991,18464 Anderson Street,MOBILE +HUS2020_438,Annabelle Wilkison,10/10/1981,148 Arkansas Point,QA +HUS2020_439,Giacinta Vannini,9/4/1986,5 Hazelcrest Street,MOBILE +HUS2020_440,Des Aitken,31/10/1991,9269 Bartelt Place,SYSTEM +HUS2020_441,Pegeen Waliszewski,20/09/1984,675 Mitchell Parkway,ADMIN +HUS2020_442,Simeon Chisolm,19/10/1991,76261 Katie Hill,MOBILE +HUS2020_443,Shelley Swindle,15/06/1994,7 Monica Circle,WEB +HUS2020_444,Aluin Popple,18/11/1993,0147 Golf Course Point,WEB +HUS2020_445,Shamus Earle,15/08/1998,788 Karstens Trail,QA +HUS2020_446,Marco Cassella,22/10/1997,98 Dovetail Pass,SYSTEM +HUS2020_447,Luciano Yarrall,15/01/1995,151 Vidon Terrace,ADMIN +HUS2020_448,Mina Preddy,7/8/1988,17445 Elka Center,SYSTEM +HUS2020_449,Hurleigh Dargan,27/04/1980,8345 Mayer Road,WEB +HUS2020_450,Liliane Gribben,5/5/1989,9019 Dunning Park,QA +HUS2020_451,Melisa Rosenkranc,11/10/1993,9 Waubesa Alley,SYSTEM +HUS2020_452,Elna McRuvie,6/5/1990,26 Chive Circle,QA +HUS2020_453,Hernando Bartolomucci,20/09/1991,1 Delladonna Street,MOBILE +HUS2020_454,Tamarra Henke,5/6/1998,9123 Blaine Hill,WEB +HUS2020_455,Ebeneser Arunowicz,1/3/1996,040 Waxwing Lane,QA +HUS2020_456,Corine Fridaye,19/06/1980,200 Mccormick Road,ADMIN +HUS2020_457,Stevy Wyse,8/5/1985,6 Evergreen Way,WEB +HUS2020_458,Jany Burlingame,17/10/1989,796 Del Mar Circle,ADMIN +HUS2020_459,Chip Jumonet,7/9/1981,63 Delladonna Crossing,WEB +HUS2020_460,Carmelia Pykerman,21/04/1986,3084 8th Drive,MOBILE +HUS2020_461,Estele Dabels,19/10/1999,43 Golf Court,MOBILE +HUS2020_462,Merna Castelletto,13/02/1989,06 Mallory Road,MOBILE +HUS2020_463,Julius Wardingly,18/05/1987,8499 Bobwhite Avenue,QA +HUS2020_464,Morris Haycox,20/05/1980,85359 Amoth Parkway,MOBILE +HUS2020_465,Rhea Magwood,23/06/1993,3 Fair Oaks Road,MOBILE +HUS2020_466,Quillan Terrey,20/09/1986,727 Ludington Park,ADMIN +HUS2020_467,Agnes Zanettini,28/07/1983,215 Gale Avenue,SYSTEM +HUS2020_468,Caspar Sanbrook,30/10/1980,02165 Quincy Crossing,QA +HUS2020_469,Elaine Druett,17/02/1982,03277 Summer Ridge Alley,ADMIN +HUS2020_470,Antonius Kment,5/6/1982,1 Rockefeller Terrace,ADMIN +HUS2020_471,Cathie De Brett,14/05/1991,41658 Crest Line Circle,MOBILE +HUS2020_472,Adelaida Medgwick,23/07/1989,83 Chive Park,WEB +HUS2020_473,Raffarty Fripp,30/09/1998,83 Loomis Pass,QA +HUS2020_474,Andi de Keyser,24/02/1991,529 Maple Pass,MOBILE +HUS2020_475,Meredith Batchelour,24/06/1991,29086 Florence Terrace,WEB +HUS2020_476,Shae Zeplin,20/01/1996,97 Northland Junction,WEB +HUS2020_477,Rebbecca Goadby,28/03/1991,36 Blue Bill Park Lane,ADMIN +HUS2020_478,Vachel Peterffy,6/12/1988,5166 Mariners Cove Street,MOBILE +HUS2020_479,Alex Hardacre,27/12/1980,564 Hansons Alley,WEB +HUS2020_480,Gwyn Lamba,7/2/1995,13046 Troy Center,QA +HUS2020_481,Darla Pearton,20/01/1990,59788 Lindbergh Plaza,QA +HUS2020_482,Marris Proffitt,3/2/1994,2 Darwin Center,MOBILE +HUS2020_483,Margi Sydall,30/06/1988,9 Milwaukee Hill,ADMIN +HUS2020_484,Kennith Meany,10/8/1985,9 Sachs Center,SYSTEM +HUS2020_485,Ansell Tomasutti,11/11/1981,45 Weeping Birch Hill,SYSTEM +HUS2020_486,Lise Oxe,7/9/1988,9 Steensland Center,QA +HUS2020_487,Helene Bartomieu,12/5/1999,79 Bluestem Place,QA +HUS2020_488,Reinhold Twelvetree,3/10/1985,36472 Nancy Road,QA +HUS2020_489,Elisabetta Childs,8/11/1994,535 Bluejay Avenue,WEB +HUS2020_490,Gardy De Domenico,5/1/1991,2349 Grim Crossing,MOBILE +HUS2020_491,Luis Faux,3/2/1993,03810 Coolidge Park,WEB +HUS2020_492,Eva Lehr,16/11/1995,86000 High Crossing Circle,WEB +HUS2020_493,Tabb Karpinski,13/08/1986,809 Bonner Center,WEB +HUS2020_494,Kit Condon,30/11/1994,3633 Pierstorff Crossing,SYSTEM +HUS2020_495,Raimund Brouwer,30/07/1998,3 Waxwing Place,WEB +HUS2020_496,Carmine Please,14/01/1993,0383 Del Mar Drive,QA +HUS2020_497,Vincent Hallowes,18/01/1998,571 Stoughton Street,QA +HUS2020_498,Martie Flicker,10/10/1984,00 Anniversary Place,ADMIN +HUS2020_499,Bernita Frapwell,30/07/1985,2788 Stone Corner Court,MOBILE +HUS2020_500,Trish Ellerker,9/9/1994,5 Magdeline Park,ADMIN +HUS2020_501,Alli Waltering,10/5/1982,3 Messerschmidt Trail,WEB +HUS2020_502,Elsworth Tarbet,28/04/1995,25307 Bowman Road,ADMIN +HUS2020_503,Nathalie Cheltnam,29/08/1998,4 Clemons Trail,WEB +HUS2020_504,Halsey Brittain,20/05/1990,93 Chive Lane,WEB +HUS2020_505,Kym Chippin,16/03/1989,965 Drewry Crossing,QA +HUS2020_506,Deva Hawkwood,21/12/1983,10881 Welch Trail,QA +HUS2020_507,Alyse Totton,21/06/1992,0 Schmedeman Park,WEB +HUS2020_508,Kerr Farnworth,18/01/1991,08 Esker Parkway,SYSTEM +HUS2020_509,Laurette Saich,5/8/1994,47 Monica Crossing,WEB +HUS2020_510,Ainslee Benbough,2/2/1989,0160 Parkside Lane,QA +HUS2020_511,Flor Bendin,15/05/1992,99809 Colorado Center,SYSTEM +HUS2020_512,Ida Tallach,24/02/1995,509 Shopko Way,QA +HUS2020_513,Hi Radbourn,6/1/1987,5585 Bobwhite Parkway,MOBILE +HUS2020_514,Albert Shearmur,23/09/1986,67930 Dwight Crossing,QA +HUS2020_515,Carson Peaple,24/02/1995,9 American Court,SYSTEM +HUS2020_516,Loretta Birkenhead,15/07/1996,52815 Sutherland Place,WEB +HUS2020_517,Theobald Merrikin,1/11/1984,987 Northport Hill,QA +HUS2020_518,Meryl Krelle,16/12/1990,25 Mesta Parkway,QA +HUS2020_519,Findlay Ghiraldi,23/03/1983,761 Schlimgen Junction,ADMIN +HUS2020_520,Lizette Gorst,22/05/1998,489 Grim Terrace,QA +HUS2020_521,Natividad Tuke,14/10/1999,5345 Ridgeview Center,WEB +HUS2020_522,Zora Murison,23/10/1989,47 Superior Road,WEB +HUS2020_523,Else Hebblewhite,7/8/1994,1845 Golden Leaf Court,ADMIN +HUS2020_524,Regina Sinderson,27/06/1992,85 Cherokee Road,QA +HUS2020_525,Zelda Long,5/10/1984,071 Paget Parkway,WEB +HUS2020_526,Griff Giorgielli,25/11/1985,83247 Schlimgen Park,ADMIN +HUS2020_527,Stacie Lindelof,7/1/1984,285 Stuart Avenue,WEB +HUS2020_528,Oona Abrashkov,25/12/1985,97755 Kings Alley,MOBILE +HUS2020_529,Donella McAndie,13/09/1994,449 Summit Hill,WEB +HUS2020_530,Moses Rabbitts,3/10/1993,506 Elgar Avenue,MOBILE +HUS2020_531,Terza Hatherall,9/6/1980,33569 Sutteridge Plaza,SYSTEM +HUS2020_532,Michelina Arundel,19/02/1986,13169 Debs Place,SYSTEM +HUS2020_533,Grover Burkhill,13/11/1982,64 Loeprich Hill,WEB +HUS2020_534,Percy Klain,30/07/1983,14776 La Follette Terrace,MOBILE +HUS2020_535,Eddie Lantiffe,14/10/1985,53283 Darwin Circle,MOBILE +HUS2020_536,Deeann Franzelini,26/03/1998,59 Hagan Junction,WEB +HUS2020_537,Matilde McGirl,3/4/1987,29 Arrowood Hill,QA +HUS2020_538,Lilias Quinby,12/4/1994,5157 7th Plaza,SYSTEM +HUS2020_539,Bertina Gravenell,26/08/1990,37535 Merrick Court,MOBILE +HUS2020_540,Syman Itchingham,3/8/1982,00037 Barnett Plaza,QA +HUS2020_541,Giustino Seiller,6/9/1990,5245 Maple Crossing,QA +HUS2020_542,Nikolos Berndsen,23/06/1983,1871 Prentice Lane,ADMIN +HUS2020_543,Jo-ann Heed,24/03/1984,7 Jay Lane,WEB +HUS2020_544,Bond Tomankowski,6/9/1994,37 Novick Place,ADMIN +HUS2020_545,Prent Village,26/09/1988,7 Milwaukee Junction,WEB +HUS2020_546,Whitaker Clemo,16/09/1992,985 Dorton Road,WEB +HUS2020_547,Maurice Cosson,7/2/1998,5 Coleman Drive,WEB +HUS2020_548,Petronia Kenway,9/12/1994,06 Kipling Pass,SYSTEM +HUS2020_549,Sandye Matzkaitis,10/8/1988,36014 Mesta Way,WEB +HUS2020_550,Sibilla O'Bradden,16/03/1990,0 Tony Plaza,WEB +HUS2020_551,Thekla Dunsmore,24/09/1990,782 Twin Pines Alley,MOBILE +HUS2020_552,Ralina Saylor,15/04/1994,639 Dunning Lane,MOBILE +HUS2020_553,Brandy Rookledge,22/10/1992,8545 Bowman Crossing,SYSTEM +HUS2020_554,Ilyssa O'Gormally,7/11/1988,35 Weeping Birch Lane,SYSTEM +HUS2020_555,Harald Gollin,13/01/1989,5 Logan Hill,ADMIN +HUS2020_556,Shanan Dyke,20/04/1988,04300 Waubesa Circle,MOBILE +HUS2020_557,Perl Wallace,1/2/1988,9 Pearson Road,ADMIN +HUS2020_558,Guenevere Humby,16/01/1998,0309 Nelson Hill,WEB +HUS2020_559,Maryrose Catlow,9/11/1991,679 Northwestern Center,SYSTEM +HUS2020_560,Zorana Toynbee,23/04/1994,37 Roxbury Hill,MOBILE +HUS2020_561,Lombard Willerton,21/07/1982,637 Leroy Alley,QA +HUS2020_562,Worth Tregunnah,16/10/1988,06257 Kennedy Court,QA +HUS2020_563,Ileane Duxbarry,5/1/1980,0994 Marcy Trail,WEB +HUS2020_564,Hank Van Rembrandt,26/10/1989,67 Helena Lane,QA +HUS2020_565,Darrin Braisted,23/09/1989,75 Hermina Pass,SYSTEM +HUS2020_566,Holmes Andrivot,18/02/1981,7 Ludington Alley,WEB +HUS2020_567,Jaine Bresson,29/03/1986,210 Hermina Place,QA +HUS2020_568,Bartie Chasmar,23/06/1996,59118 Heffernan Trail,ADMIN +HUS2020_569,Willetta Pietz,5/12/1991,399 Superior Point,SYSTEM +HUS2020_570,Nonnah Goodings,1/1/1997,408 High Crossing Street,ADMIN +HUS2020_571,Jacklyn Creggan,25/04/1995,494 Mcbride Avenue,MOBILE +HUS2020_572,Avery Charsley,14/05/1990,72 Alpine Street,QA +HUS2020_573,Gawain Charlot,3/5/1987,5776 Crowley Center,SYSTEM +HUS2020_574,Diahann Chattoe,22/09/1988,11 1st Park,WEB +HUS2020_575,Ban Karet,24/12/1984,3600 Twin Pines Way,QA +HUS2020_576,Kaitlyn Ruprich,7/1/1986,792 Nevada Plaza,WEB +HUS2020_577,Gui Dannel,21/11/1986,46 Hoffman Place,SYSTEM +HUS2020_578,Maxie Jarley,24/11/1988,23690 Crest Line Alley,SYSTEM +HUS2020_579,Eldon Crampton,20/11/1986,12 Rowland Drive,ADMIN +HUS2020_580,Waldo Aggett,10/10/1998,0170 Texas Center,MOBILE +HUS2020_581,Mercedes Webborn,7/10/1989,502 Banding Drive,ADMIN +HUS2020_582,Gordon Masi,19/09/1992,2789 Moulton Circle,ADMIN +HUS2020_583,Sollie Ducaen,22/10/1983,2462 School Trail,QA +HUS2020_584,Rafa McKim,30/11/1984,47 Raven Road,WEB +HUS2020_585,Cherie Hartright,5/6/1995,8854 Eliot Way,WEB +HUS2020_586,Risa Rossoni,5/10/1986,93 Atwood Drive,WEB +HUS2020_587,Hilary Davidai,7/10/1988,11988 Ronald Regan Point,ADMIN +HUS2020_588,Tris Le Fevre,12/10/1988,577 Sachs Trail,MOBILE +HUS2020_589,Derk Kiledal,1/12/1990,54785 Red Cloud Junction,SYSTEM +HUS2020_590,Corina Billett,3/10/1989,9190 Oriole Drive,MOBILE +HUS2020_591,Robinet Fforde,22/02/1999,603 Rockefeller Terrace,QA +HUS2020_592,Traci Hanselmann,13/01/1995,135 Ridgeview Plaza,QA +HUS2020_593,Cris Cann,30/08/1987,872 Paget Pass,MOBILE +HUS2020_594,Lilyan Stemp,26/05/1986,6881 Emmet Center,WEB +HUS2020_595,Buckie Renals,28/12/1980,45737 Raven Plaza,SYSTEM +HUS2020_596,Evan Allward,3/5/1994,565 Meadow Valley Way,WEB +HUS2020_597,Lloyd Martensen,22/12/1985,98 Toban Place,QA +HUS2020_598,Lawry Mosconi,12/11/1995,111 Anniversary Park,QA +HUS2020_599,Doyle Borsi,27/04/1986,87413 Northview Alley,WEB +HUS2020_600,Marlowe Chantree,19/03/1999,35336 Kim Alley,MOBILE +HUS2020_601,Holly Pitone,12/7/1999,0 Spenser Pass,WEB +HUS2020_602,Branden Dumbelton,5/3/1995,111 Boyd Park,QA +HUS2020_603,Clay Oultram,19/07/1980,6 Transport Lane,SYSTEM +HUS2020_604,Leta Bowsher,2/4/1988,14069 Fordem Way,WEB +HUS2020_605,Camille Arlett,7/8/1987,76624 Westend Crossing,WEB +HUS2020_606,Bram Pohls,27/08/1981,4 Hollow Ridge Hill,ADMIN +HUS2020_607,Hadlee Krystek,6/8/1982,26494 Lighthouse Bay Drive,WEB +HUS2020_608,Denny Shernock,11/12/1996,15 Duke Drive,QA +HUS2020_609,Theodoric Boas,29/11/1988,80 Burrows Place,SYSTEM +HUS2020_610,Audrie Aireton,9/1/1982,93 Charing Cross Parkway,SYSTEM +HUS2020_611,Alyse Gamlen,24/09/1983,244 Pearson Road,ADMIN +HUS2020_612,Earvin Polsin,21/10/1985,87564 Kingsford Court,WEB +HUS2020_613,Janeczka Rickards,18/11/1995,6 Hollow Ridge Plaza,MOBILE +HUS2020_614,Evangelin Effnert,7/9/1984,3160 Cherokee Crossing,QA +HUS2020_615,Fidel Huniwall,1/12/1984,989 Pennsylvania Plaza,WEB +HUS2020_616,Kevina Reah,24/04/1993,5 Mariners Cove Park,MOBILE +HUS2020_617,Tedman Citrine,14/04/1986,1 Green Ridge Plaza,QA +HUS2020_618,Zeb Dupey,5/6/1989,8487 Crowley Park,SYSTEM +HUS2020_619,Selby Cutforth,4/8/1998,4 Dahle Drive,SYSTEM +HUS2020_620,Onfroi Simester,9/11/1989,8 Warner Circle,QA +HUS2020_621,Mary Kix,18/09/1994,16077 Farmco Plaza,WEB +HUS2020_622,Garner Stave,11/10/1990,795 Buena Vista Hill,SYSTEM +HUS2020_623,Kati Blakeslee,18/05/1995,64078 Swallow Place,WEB +HUS2020_624,Harold Lorrimer,26/09/1987,7 Sachs Parkway,QA +HUS2020_625,Lonnie Yell,17/08/1995,28542 Nelson Place,SYSTEM +HUS2020_626,Claudetta Black,27/12/1985,21494 Upham Road,MOBILE +HUS2020_627,Daphene Runnicles,18/04/1997,9576 Mendota Pass,WEB +HUS2020_628,Elsi Reston,13/11/1999,3965 Michigan Road,SYSTEM +HUS2020_629,Merridie Gilston,6/9/1993,120 Memorial Junction,WEB +HUS2020_630,Hephzibah Commucci,24/05/1991,7373 Pankratz Alley,ADMIN +HUS2020_631,Elspeth Domenc,23/11/1990,958 Spaight Terrace,WEB +HUS2020_632,Krysta Sliman,16/05/1987,7202 Waxwing Trail,SYSTEM +HUS2020_633,Hamel Brommage,11/3/1995,197 Badeau Point,SYSTEM +HUS2020_634,Heddie Aingell,19/04/1993,0 Becker Park,WEB +HUS2020_635,Spenser Spellar,26/01/1993,98 Elmside Drive,SYSTEM +HUS2020_636,Hinda Maraga,15/10/1997,1173 Sheridan Drive,MOBILE +HUS2020_637,Alvira Cottis,23/09/1994,017 Cambridge Pass,SYSTEM +HUS2020_638,Tamar Hallows,10/2/1989,61 Prairieview Point,ADMIN +HUS2020_639,Innis Wike,26/09/1991,3 Spohn Circle,QA +HUS2020_640,Dilly Behrens,26/08/1982,73294 Jackson Plaza,WEB +HUS2020_641,Meara Darker,1/5/1999,46079 Everett Alley,QA +HUS2020_642,Dottie Ilyinski,31/05/1989,11 Wayridge Trail,WEB +HUS2020_643,Leoine Langrish,16/11/1996,99 South Trail,MOBILE +HUS2020_644,Peder MacCroary,24/07/1999,473 Larry Alley,WEB +HUS2020_645,Terrel Garrelts,13/05/1981,611 Jana Pass,QA +HUS2020_646,Vannie Ghio,27/04/1981,3796 Eagle Crest Drive,SYSTEM +HUS2020_647,Athene Drinnan,24/04/1993,5 Grayhawk Road,SYSTEM +HUS2020_648,Ninon Dimitrescu,19/11/1996,09339 Manley Alley,ADMIN +HUS2020_649,Quint Rowatt,6/7/1981,5 Eagle Crest Lane,SYSTEM +HUS2020_650,Chase Caustick,22/11/1990,19 Eastwood Crossing,SYSTEM +HUS2020_651,Dion Petzold,6/6/1992,8 Longview Street,QA +HUS2020_652,Patton Ossulton,27/02/1991,495 Haas Drive,SYSTEM +HUS2020_653,Kit Halley,2/11/1997,8 Lake View Place,MOBILE +HUS2020_654,Trstram Dany,17/05/1980,8025 Nobel Avenue,QA +HUS2020_655,Cchaddie Frank,16/01/1991,3 Jay Center,WEB +HUS2020_656,Miguela Labbet,30/07/1999,75 Stuart Plaza,MOBILE +HUS2020_657,Loreen Spofford,21/05/1992,200 Fuller Circle,MOBILE +HUS2020_658,Park Matisse,29/08/1992,296 Lyons Lane,WEB +HUS2020_659,Gav Berrigan,30/07/1982,371 Morningstar Plaza,WEB +HUS2020_660,Robena De Paepe,12/9/1985,3 Kropf Road,QA +HUS2020_661,Lorettalorna Starrs,9/7/1989,6 Butterfield Alley,MOBILE +HUS2020_662,Kati Cohalan,1/11/1993,40910 Village Green Lane,WEB +HUS2020_663,Shalne Gregoli,19/03/1995,676 Tony Park,QA +HUS2020_664,Rosanne Harber,14/01/1981,3702 Roxbury Pass,MOBILE +HUS2020_665,Guenevere McNea,16/02/1985,3550 Claremont Court,SYSTEM +HUS2020_666,Dedra Vasyukhichev,7/12/1984,8382 Ramsey Way,QA +HUS2020_667,Estrella Oury,3/5/1980,1 Ilene Court,QA +HUS2020_668,Elihu Doge,4/6/1986,37274 Dwight Center,WEB +HUS2020_669,Arch Ortell,15/03/1986,91 Roth Alley,MOBILE +HUS2020_670,Anson Tottman,4/10/1993,71133 Hazelcrest Trail,SYSTEM +HUS2020_671,Eleanore Lago,11/11/1991,3432 Dakota Pass,WEB +HUS2020_672,Madelon Blakeborough,13/09/1996,77 Milwaukee Court,WEB +HUS2020_673,Wynnie Bampfield,23/10/1980,4154 Mariners Cove Street,MOBILE +HUS2020_674,Cathie Satterly,8/5/1985,00216 Myrtle Crossing,WEB +HUS2020_675,Madlen Jeffrey,21/04/1982,479 Lakewood Gardens Parkway,SYSTEM +HUS2020_676,Sauveur Legat,7/10/1988,75892 Fair Oaks Park,SYSTEM +HUS2020_677,Borg Teale,16/04/1989,1205 Haas Pass,SYSTEM +HUS2020_678,Garrard Phare,2/6/1992,99 Gale Crossing,MOBILE +HUS2020_679,Joete Dear,10/8/1986,853 Kings Terrace,MOBILE +HUS2020_680,Rosamund Wride,21/08/1994,980 Larry Circle,QA +HUS2020_681,Octavius Haith,21/12/1981,6690 Calypso Plaza,SYSTEM +HUS2020_682,Alley Monson,11/7/1984,271 Jay Lane,MOBILE +HUS2020_683,Garik Wistance,27/03/1993,37801 Hagan Road,WEB +HUS2020_684,Cammy Gelland,24/12/1987,4 Hoffman Park,QA +HUS2020_685,Brenna Alans,11/10/1997,47 Westend Parkway,SYSTEM +HUS2020_686,Sabina Yeardsley,5/2/1987,28 5th Center,QA +HUS2020_687,Sascha Ashwell,19/02/1984,9 Debra Crossing,QA +HUS2020_688,Talbert Tuckley,14/08/1980,60027 Garrison Way,QA +HUS2020_689,Shannen Iacovazzi,11/6/1986,6918 Logan Road,SYSTEM +HUS2020_690,Viva Hurich,21/11/1980,949 7th Crossing,ADMIN +HUS2020_691,Carla Coade,14/08/1988,20 Esch Street,WEB +HUS2020_692,Constantine Kneale,30/07/1989,00 Moulton Avenue,QA +HUS2020_693,Delmor Darbey,22/10/1996,631 Monument Hill,QA +HUS2020_694,Kirsten Tweedle,15/12/1983,77658 Forest Run Pass,WEB +HUS2020_695,Cheslie Dorbon,26/03/1985,93916 Bowman Park,ADMIN +HUS2020_696,Hally Cristou,6/1/1993,30669 Lukken Junction,WEB +HUS2020_697,Alie Damato,16/06/1981,728 Moulton Road,WEB +HUS2020_698,Kerstin Huby,9/9/1985,40493 Crest Line Terrace,MOBILE +HUS2020_699,Rodolph Tomaskov,20/05/1994,86007 Derek Circle,QA +HUS2020_700,Darci Fausset,4/12/1992,6 Southridge Hill,MOBILE +HUS2020_701,Rheba Bartoli,15/05/1989,5 Vera Parkway,QA +HUS2020_702,Waverly Banks,1/2/1982,75 Eastlawn Drive,MOBILE +HUS2020_703,Marysa Ryley,10/4/1988,7 Straubel Plaza,WEB +HUS2020_704,Hildegaard Hellikes,24/07/1982,98880 Luster Avenue,SYSTEM +HUS2020_705,Lesley Borges,1/7/1986,0 Hooker Point,MOBILE +HUS2020_706,Virgie Groundwator,6/9/1987,1 Russell Park,QA +HUS2020_707,Anton Seiter,20/05/1994,2271 Golden Leaf Trail,QA +HUS2020_708,Hailey Bryden,30/10/1995,209 Hoffman Way,SYSTEM +HUS2020_709,Catha MacBarron,10/12/1993,73165 Basil Terrace,ADMIN +HUS2020_710,Leopold Garwell,29/07/1981,667 Dunning Place,MOBILE +HUS2020_711,Deena Colles,21/05/1992,419 Hoffman Way,MOBILE +HUS2020_712,Livia Skeech,22/07/1984,58388 Vermont Drive,SYSTEM +HUS2020_713,Harrietta Rothera,24/01/1989,34 Messerschmidt Terrace,WEB +HUS2020_714,Moishe Brougham,26/06/1997,03798 Corscot Junction,SYSTEM +HUS2020_715,Trescha Mityushkin,5/7/1994,6917 Carey Lane,MOBILE +HUS2020_716,Silvanus Di Franceschi,30/05/1986,6 1st Alley,SYSTEM +HUS2020_717,Cinda Ziemens,5/5/1998,0700 Delaware Court,WEB +HUS2020_718,Mindy Pillans,17/05/1997,600 Hagan Park,WEB +HUS2020_719,Rutherford Cush,23/02/1989,765 Marquette Hill,QA +HUS2020_720,Erastus Brattell,23/03/1982,2 Park Meadow Crossing,QA +HUS2020_721,Fransisco Bon,14/08/1994,44 Grasskamp Alley,SYSTEM +HUS2020_722,Lemuel Josefson,28/05/1989,07 Jackson Circle,ADMIN +HUS2020_723,Delia Kearney,15/02/1992,69 Golf Course Lane,SYSTEM +HUS2020_724,Ashley Conneau,14/10/1999,53345 Ridge Oak Avenue,QA +HUS2020_725,Jessey Wareham,2/11/1985,5 Nevada Place,WEB +HUS2020_726,Mella Huncoot,30/07/1984,0369 Scofield Plaza,MOBILE +HUS2020_727,Nerta Spawforth,14/12/1986,6 Farragut Trail,WEB +HUS2020_728,Kimberlyn Degoey,29/08/1984,5309 Coolidge Trail,QA +HUS2020_729,Ari Masurel,25/02/1999,6600 Moulton Drive,MOBILE +HUS2020_730,Ulla Collacombe,2/3/1997,08 Annamark Center,WEB +HUS2020_731,Gleda Towe,3/12/1982,4291 Cottonwood Way,SYSTEM +HUS2020_732,Maurine Schrir,28/12/1988,57 Di Loreto Crossing,QA +HUS2020_733,Matias Blakeden,1/3/1994,27 Village Green Alley,ADMIN +HUS2020_734,Tabbi Carrick,17/11/1987,1 Anthes Trail,WEB +HUS2020_735,Claude Iorizzo,17/08/1990,1 East Street,WEB +HUS2020_736,Cullin Iacobetto,5/10/1998,006 Grim Plaza,MOBILE +HUS2020_737,Abagael Jessup,8/9/1988,6 Ronald Regan Park,WEB +HUS2020_738,Katha Tabor,2/1/1985,0 Warbler Alley,QA +HUS2020_739,Parker Blamphin,8/2/1986,7 Veith Road,QA +HUS2020_740,Cassius Muldoon,5/6/1987,5425 Towne Court,ADMIN +HUS2020_741,Bonnibelle Werendell,5/3/1989,25557 Forster Drive,SYSTEM +HUS2020_742,Casar Mauser,15/10/1995,2239 Veith Alley,ADMIN +HUS2020_743,Aura Ximenez,25/12/1980,25 Memorial Court,QA +HUS2020_744,Wade Filipychev,13/08/1980,4 Dwight Trail,QA +HUS2020_745,Allyce Curteis,9/2/1982,8 Ludington Place,WEB +HUS2020_746,Birk Booy,13/01/1995,64 Stoughton Hill,MOBILE +HUS2020_747,Marnia Gerauld,23/10/1985,897 Bartillon Junction,WEB +HUS2020_748,Astra Mease,2/2/1999,5783 Packers Circle,WEB +HUS2020_749,Jere Treffry,28/03/1986,787 2nd Place,QA +HUS2020_750,Gladys Digges,7/9/1983,0272 Hoffman Avenue,SYSTEM +HUS2020_751,Marigold Lathan,14/01/1992,153 Schlimgen Hill,WEB +HUS2020_752,Lissie Liebmann,8/6/1985,38830 International Trail,WEB +HUS2020_753,Vyky Sandham,11/3/1988,2375 Farmco Terrace,MOBILE +HUS2020_754,Jodi Ioan,23/05/1986,492 Burning Wood Pass,MOBILE +HUS2020_755,Brander Peres,27/02/1991,3 Porter Terrace,WEB +HUS2020_756,Carlee Pittam,14/11/1992,65967 Granby Way,QA +HUS2020_757,Levey Osgodby,27/04/1997,084 Coleman Junction,ADMIN +HUS2020_758,Yevette Scorer,17/12/1993,9175 Bultman Circle,WEB +HUS2020_759,Lorine Robardet,8/2/1992,0879 Manufacturers Lane,WEB +HUS2020_760,Jedediah Looker,10/1/1995,517 Forest Dale Road,QA +HUS2020_761,Miof mela Fearn,23/12/1982,88927 Twin Pines Point,MOBILE +HUS2020_762,Thomasin McClaughlin,21/02/1991,0 Ilene Point,MOBILE +HUS2020_763,Delphine Pinney,30/08/1984,7916 Hansons Avenue,ADMIN +HUS2020_764,Neville Gilbard,2/2/1994,31 Sage Circle,WEB +HUS2020_765,Ashlan Egdal,24/03/1996,43171 Lakeland Parkway,MOBILE +HUS2020_766,Diane Lippiatt,7/2/1998,56 Lukken Terrace,WEB +HUS2020_767,Clemente Rickaby,30/08/1990,07 Trailsway Alley,SYSTEM +HUS2020_768,Gael Staker,24/03/1997,06772 Mallard Park,WEB +HUS2020_769,Danny Epdell,9/6/1981,5793 Nova Alley,QA +HUS2020_770,Chicky Soigoux,5/4/1994,8399 Westport Place,WEB +HUS2020_771,Remington Wysome,21/06/1998,1 Stephen Center,ADMIN +HUS2020_772,Cass Welfare,18/06/1981,770 Prairieview Street,WEB +HUS2020_773,Carmella Squirrel,25/05/1984,992 Elka Junction,SYSTEM +HUS2020_774,Rolfe Sawers,20/09/1999,478 Lakeland Center,QA +HUS2020_775,Brandi Eyden,25/10/1980,13 Leroy Way,SYSTEM +HUS2020_776,Kyla Blunsden,28/08/1993,972 Carberry Trail,MOBILE +HUS2020_777,Sidney Dawtry,10/9/1991,4655 Redwing Place,ADMIN +HUS2020_778,Rafael Dionisi,15/05/1981,7421 Mesta Parkway,SYSTEM +HUS2020_779,Fidel Culkin,10/2/1992,44261 Graceland Alley,MOBILE +HUS2020_780,Karin Fischer,31/12/1996,0047 Birchwood Point,QA +HUS2020_781,Elihu Keetch,13/10/1985,03682 Gulseth Trail,WEB +HUS2020_782,Klara Surgeoner,1/12/1990,36244 Merchant Crossing,MOBILE +HUS2020_783,Evangeline Shoebrook,30/03/1982,42 Ilene Point,WEB +HUS2020_784,Darcie Crank,9/1/1983,4941 Everett Trail,WEB +HUS2020_785,Rodolphe Sinncock,13/07/1980,75 Commercial Terrace,SYSTEM +HUS2020_786,Susana Shottin,1/7/1986,84081 Corry Crossing,WEB +HUS2020_787,Kyle Pawlick,27/06/1988,34341 7th Trail,QA +HUS2020_788,Ofella Robinet,9/6/1999,7 Tomscot Court,SYSTEM +HUS2020_789,Teena Heditch,24/05/1994,6 Grover Crossing,SYSTEM +HUS2020_790,Hubey Bayston,28/09/1989,6118 Talmadge Way,QA +HUS2020_791,Phil Steeden,26/03/1994,17261 Ronald Regan Terrace,ADMIN +HUS2020_792,Consalve Lorincz,14/03/1992,72 Transport Junction,MOBILE +HUS2020_793,Alvin Bohden,22/09/1994,8972 Cardinal Alley,WEB +HUS2020_794,Alexandre Shoesmith,19/08/1994,417 Kinsman Avenue,ADMIN +HUS2020_795,Cosme Prinnett,14/12/1992,23 Ridge Oak Alley,MOBILE +HUS2020_796,Bentlee Reddings,15/12/1991,3060 Spaight Circle,SYSTEM +HUS2020_797,Ilario Pabelik,22/12/1991,1 Moland Center,MOBILE +HUS2020_798,Brant Bugdall,8/8/1989,3570 Jenifer Point,MOBILE +HUS2020_799,Susannah Realph,23/04/1986,8 Westridge Pass,QA +HUS2020_800,Sibyl Cowpe,3/9/1981,381 Summer Ridge Circle,MOBILE +HUS2020_801,Valentina Tilbey,15/06/1998,8876 Dottie Pass,QA +HUS2020_802,Olag Fridlington,16/07/1985,89 Florence Avenue,QA +HUS2020_803,Herbert Philimore,12/7/1985,84868 Sugar Hill,WEB +HUS2020_804,Demetrius Papaccio,12/8/1990,77048 Briar Crest Point,QA +HUS2020_805,Vail Gatenby,5/5/1988,89587 Florence Park,WEB +HUS2020_806,Tove Tolworthy,19/01/1982,974 Nancy Street,SYSTEM +HUS2020_807,Kiel Craigmyle,20/12/1995,64737 Hoffman Lane,WEB +HUS2020_808,Cletis Beyn,29/09/1997,55 Basil Lane,WEB +HUS2020_809,Damita Garling,5/4/1984,19 Acker Way,QA +HUS2020_810,Zelig Kave,21/10/1989,6 Reindahl Drive,MOBILE +HUS2020_811,Kimmi Dicke,28/02/1999,9557 Dapin Crossing,WEB +HUS2020_812,Barnie Joriot,13/06/1999,3 Brown Hill,ADMIN +HUS2020_813,Micky Coppock.,7/9/1985,0313 Marcy Junction,WEB +HUS2020_814,Willy Jewkes,26/10/1991,0 Derek Road,WEB +HUS2020_815,Mozes Crollman,23/11/1993,83738 Banding Terrace,ADMIN +HUS2020_816,Robb Hillitt,25/12/1989,3 Sheridan Avenue,QA +HUS2020_817,Weylin Coppledike,29/11/1991,3921 Wayridge Way,WEB +HUS2020_818,See Kerswell,17/09/1990,67048 East Pass,WEB +HUS2020_819,Sharona Karolowski,18/08/1982,4 Northwestern Point,MOBILE +HUS2020_820,Brit Maffezzoli,25/07/1994,4 Sherman Road,WEB +HUS2020_821,Ebeneser Sabater,10/9/1990,692 Village Drive,SYSTEM +HUS2020_822,Damiano Sidlow,14/10/1998,6 Springs Drive,WEB +HUS2020_823,Loren Marcam,16/11/1982,84 Evergreen Street,QA +HUS2020_824,Sibby Sheerin,2/6/1993,58446 Shoshone Circle,QA +HUS2020_825,Abbi Aylett,8/3/1987,112 Grasskamp Pass,MOBILE +HUS2020_826,Terza Brome,25/08/1985,37939 Monica Junction,WEB +HUS2020_827,Jefferson Etteridge,18/04/1997,08 Stephen Trail,WEB +HUS2020_828,Minnaminnie Gilpin,7/12/1988,3 Dixon Hill,QA +HUS2020_829,Bev Bent,23/12/1984,8455 Gateway Circle,ADMIN +HUS2020_830,Nanon Iacovuzzi,3/8/1984,6432 Tomscot Avenue,WEB +HUS2020_831,Rollins Risbrough,15/01/1982,4234 Spenser Center,SYSTEM +HUS2020_832,Malachi Caddell,23/12/1984,727 Prentice Lane,WEB +HUS2020_833,Alfonso Tregonna,4/4/1981,929 3rd Lane,QA +HUS2020_834,Adria McKeurtan,9/8/1995,9493 Cambridge Court,QA +HUS2020_835,Holly Poate,20/09/1985,09 Luster Alley,SYSTEM +HUS2020_836,Latashia Mattson,21/12/1997,32438 Lighthouse Bay Parkway,WEB +HUS2020_837,Chic Digby,29/05/1983,2 Melvin Court,SYSTEM +HUS2020_838,Rici Kimpton,25/04/1995,95636 Longview Plaza,QA +HUS2020_839,Ivie Bradock,25/12/1985,6 Nevada Way,QA +HUS2020_840,Salvador Rallings,29/05/1983,378 Sunfield Hill,WEB +HUS2020_841,Skylar Leblanc,21/07/1995,8534 Ohio Parkway,WEB +HUS2020_842,Olag Barbosa,18/01/1982,758 Armistice Parkway,MOBILE +HUS2020_843,Rodrigo Hartill,28/02/1994,27148 Clarendon Street,WEB +HUS2020_844,Calida Teml,29/03/1987,12 Linden Junction,WEB +HUS2020_845,Franciska Baxstair,8/1/1999,58054 Holy Cross Court,SYSTEM +HUS2020_846,Tomkin Bilham,10/1/1984,9723 Granby Place,QA +HUS2020_847,Sissy De Benedictis,30/06/1981,9442 Surrey Point,MOBILE +HUS2020_848,Janeczka Quinlan,6/8/1993,4 Jenna Point,QA +HUS2020_849,Mendy Stuckley,9/1/1981,8234 Buena Vista Avenue,WEB +HUS2020_850,Gerda Ditch,16/02/1987,6 Boyd Plaza,WEB +HUS2020_851,Lurlene MacAnellye,23/10/1995,24 Swallow Street,QA +HUS2020_852,Amalea Hessel,2/1/1991,3947 Paget Park,QA +HUS2020_853,Rhianna Nice,13/06/1983,8 Mosinee Junction,SYSTEM +HUS2020_854,Gallard Wakefield,25/09/1991,6786 Dottie Way,ADMIN +HUS2020_855,Abeu Rosenau,18/02/1980,9 Eliot Hill,SYSTEM +HUS2020_856,Grier Bucktharp,11/4/1989,1 Browning Park,SYSTEM +HUS2020_857,Danna Yanov,18/03/1985,867 Fairview Way,WEB +HUS2020_858,Hakim Koomar,22/11/1993,0 Westridge Avenue,QA +HUS2020_859,Cassi Keepe,28/09/1996,7 Packers Drive,WEB +HUS2020_860,Tania Derrington,28/05/1996,4 Vera Place,QA +HUS2020_861,Kacy Shankland,9/5/1981,00 Fairfield Place,WEB +HUS2020_862,Keene Fries,13/11/1986,3 Hagan Hill,WEB +HUS2020_863,Collette Enefer,22/09/1988,01979 Parkside Avenue,WEB +HUS2020_864,Branden Kenelin,29/05/1994,1 Center Pass,MOBILE +HUS2020_865,Rhianna Summerley,15/10/1984,6956 Parkside Way,SYSTEM +HUS2020_866,Yves Blakeden,3/9/1996,0357 Elka Trail,WEB +HUS2020_867,Kath Jonson,10/6/1988,24 Huxley Way,WEB +HUS2020_868,Nikolia Outridge,7/11/1981,81 Namekagon Avenue,WEB +HUS2020_869,Kiersten Curtin,5/7/1984,54813 Beilfuss Terrace,WEB +HUS2020_870,Norah Brucker,3/4/1982,8 Dottie Center,WEB +HUS2020_871,Faber Punyer,13/06/1999,11457 Hauk Hill,WEB +HUS2020_872,Angelita Van Oord,6/10/1980,6123 Graceland Junction,WEB +HUS2020_873,Hiram Ashman,3/1/1999,21053 Toban Circle,SYSTEM +HUS2020_874,Nealson Stenhouse,9/7/1981,36 Anniversary Road,QA +HUS2020_875,Alyosha Schorah,4/2/1993,5 Boyd Road,WEB +HUS2020_876,Lisette Brennon,7/3/1985,08678 Prentice Crossing,WEB +HUS2020_877,Maurise Spybey,10/6/1983,77212 Spohn Road,WEB +HUS2020_878,Ignatius Leyninye,4/3/1991,3721 Atwood Parkway,MOBILE +HUS2020_879,Agneta Anneslie,2/10/1989,614 North Hill,ADMIN +HUS2020_880,Agnes Croce,19/03/1986,204 Shoshone Point,ADMIN +HUS2020_881,Ginger Currey,4/2/1998,501 Emmet Terrace,MOBILE +HUS2020_882,Heriberto Alentyev,18/10/1991,7236 Northwestern Road,QA +HUS2020_883,Glennie Hasluck,22/10/1991,5259 Mallory Point,ADMIN +HUS2020_884,Kyla Hamlyn,4/10/1990,16450 Messerschmidt Parkway,QA +HUS2020_885,Taffy Boow,25/07/1993,719 Northfield Plaza,MOBILE +HUS2020_886,Brock Clethro,16/08/1984,2062 Mcguire Junction,QA +HUS2020_887,Nyssa Gissing,24/07/1987,33 Stuart Hill,ADMIN +HUS2020_888,Ganny Ockendon,14/02/1981,2379 Gina Avenue,SYSTEM +HUS2020_889,Dee dee De Metz,28/04/1987,72605 Karstens Trail,QA +HUS2020_890,Drona Marchi,15/11/1992,671 Waubesa Court,QA +HUS2020_891,Korella Jolly,6/1/1993,13 Maryland Junction,ADMIN +HUS2020_892,Goddart Dewhurst,28/12/1983,9919 Jenna Drive,SYSTEM +HUS2020_893,Georgianna Redmond,4/9/1984,43050 Roxbury Court,MOBILE +HUS2020_894,Asa Mattke,5/1/1986,136 Farragut Plaza,WEB +HUS2020_895,Alia Wickerson,19/08/1991,9498 Veith Center,MOBILE +HUS2020_896,Darleen Merriday,16/06/1986,1731 Donald Trail,MOBILE +HUS2020_897,Flint Dedrick,28/06/1987,483 Fisk Road,QA +HUS2020_898,Dene Lyles,14/08/1984,2 Warner Plaza,QA +HUS2020_899,Maxi Adamo,19/10/1994,765 Gale Road,WEB +HUS2020_900,Noah Speers,14/06/1991,18079 Shoshone Street,WEB +HUS2020_901,Shelby Asquith,22/12/1981,01 Brentwood Junction,SYSTEM +HUS2020_902,Lizette Whittam,15/05/1981,28 Kropf Drive,SYSTEM +HUS2020_903,Wiatt Alster,27/11/1987,5 Havey Drive,WEB +HUS2020_904,Callida Hamlington,21/05/1982,8 Badeau Lane,WEB +HUS2020_905,Dylan Fideler,5/7/1988,3293 Bartelt Pass,MOBILE +HUS2020_906,Arlan Hatch,16/11/1986,3 Butterfield Crossing,QA +HUS2020_907,Rosalinda Habishaw,27/01/1988,716 Fisk Center,ADMIN +HUS2020_908,Grantham Corston,6/10/1982,265 Trailsway Road,SYSTEM +HUS2020_909,Chad Loomis,21/07/1981,85 Coleman Trail,QA +HUS2020_910,Bartholomeus O'Duggan,21/02/1999,6 Reindahl Crossing,WEB +HUS2020_911,Xena Dendle,17/10/1998,788 Oakridge Lane,SYSTEM +HUS2020_912,Roxana Chalmers,17/07/1999,28 Burning Wood Place,QA +HUS2020_913,Casper Castanone,5/8/1985,1 Ridgeway Drive,MOBILE +HUS2020_914,Elfie Byrde,11/7/1999,10899 Lake View Junction,WEB +HUS2020_915,Dominica Hand,29/12/1981,501 Carey Lane,QA +HUS2020_916,Tiphanie Capon,26/02/1991,4 Scott Center,QA +HUS2020_917,Jimmie Deverill,10/8/1993,83525 Dwight Crossing,MOBILE +HUS2020_918,Cherlyn Flament,19/03/1983,27 Granby Road,QA +HUS2020_919,Karlotta Ball,21/08/1997,6715 Knutson Junction,QA +HUS2020_920,Ford Kilgallen,11/3/1984,902 Ridgeview Terrace,SYSTEM +HUS2020_921,Benjamin Simpson,18/01/1989,673 Coleman Junction,SYSTEM +HUS2020_922,Gaspard Krishtopaittis,15/06/1986,3 Nelson Pass,ADMIN +HUS2020_923,Gale Ogers,19/07/1997,684 Corscot Avenue,MOBILE +HUS2020_924,Sylvia Pullen,4/2/1992,966 Russell Avenue,WEB +HUS2020_925,Desirae Liversidge,2/10/1989,801 Fuller Court,QA +HUS2020_926,Justinian Blincow,21/02/1993,0 Pennsylvania Street,QA +HUS2020_927,Cecilio Colrein,27/05/1989,71739 Forest Parkway,SYSTEM +HUS2020_928,Frederigo Riceards,18/01/1981,124 Springs Junction,ADMIN +HUS2020_929,Forster Chatfield,14/05/1998,91 Hoard Street,SYSTEM +HUS2020_930,Briney Richel,13/03/1989,9 Porter Terrace,QA +HUS2020_931,Brittne Nann,26/07/1982,05 Schmedeman Parkway,MOBILE +HUS2020_932,Pauly Beste,18/05/1980,61225 Ryan Crossing,ADMIN +HUS2020_933,Hetty Shead,15/09/1997,29 Judy Parkway,ADMIN +HUS2020_934,Eleen Bristowe,8/8/1999,1 Scofield Court,MOBILE +HUS2020_935,Katinka Markova,28/09/1989,9 Center Center,WEB +HUS2020_936,Jillian Chalfain,9/8/1992,19 Oneill Center,WEB +HUS2020_937,Rowney Damarell,1/2/1981,4706 Manitowish Hill,MOBILE +HUS2020_938,Ellette Pratchett,11/6/1980,6 Crowley Crossing,WEB +HUS2020_939,Harp Sare,23/12/1982,0 Pepper Wood Way,MOBILE +HUS2020_940,Ilyse Pain,12/10/1996,9984 North Hill,WEB +HUS2020_941,Claudetta Turbard,13/05/1988,35687 Oxford Avenue,QA +HUS2020_942,Enriqueta Karran,6/2/1982,9426 Mendota Lane,SYSTEM +HUS2020_943,Oralee Giacomuzzo,31/10/1990,2125 Independence Alley,ADMIN +HUS2020_944,Chicky Daburn,5/1/1981,457 Waxwing Road,QA +HUS2020_945,Abba Fenge,3/12/1989,09 New Castle Road,SYSTEM +HUS2020_946,Chiquia Cridge,24/12/1996,792 Muir Trail,WEB +HUS2020_947,Briana Tompkin,9/5/1981,74 Little Fleur Junction,ADMIN +HUS2020_948,Moshe Soppeth,14/05/1985,9 Hazelcrest Park,QA +HUS2020_949,Arthur Branca,3/9/1998,5 Mccormick Junction,WEB +HUS2020_950,Denna Hartshorne,19/07/1991,117 Melody Hill,ADMIN +HUS2020_951,Moselle Melvin,14/10/1980,00839 Declaration Crossing,WEB +HUS2020_952,Fidelia Coey,4/3/1982,0 Crowley Court,WEB +HUS2020_953,Lyssa Broggini,31/10/1999,55733 Doe Crossing Way,QA +HUS2020_954,Kathye Van Arsdall,19/10/1997,24 Lakewood Lane,WEB +HUS2020_955,Allie Bentick,20/01/1981,55794 Onsgard Way,QA +HUS2020_956,Mada Wellum,28/04/1984,374 Grasskamp Junction,QA +HUS2020_957,Rupert Woodroofe,11/6/1986,70 Jana Street,WEB +HUS2020_958,Kenn Aitken,13/10/1987,742 Hallows Trail,MOBILE +HUS2020_959,Allie Pragnell,5/5/1989,1381 Dovetail Center,MOBILE +HUS2020_960,Violette Fronks,8/6/1982,207 Russell Avenue,MOBILE +HUS2020_961,Gayle Yitzowitz,17/03/1983,13260 Petterle Parkway,WEB +HUS2020_962,Zachery Ervin,1/4/1982,9 Old Shore Terrace,ADMIN +HUS2020_963,Zechariah Hum,27/05/1982,30574 3rd Avenue,WEB +HUS2020_964,Loy Musterd,22/04/1985,0 Scoville Center,MOBILE +HUS2020_965,Reuven Newbury,5/6/1988,4 Hollow Ridge Court,SYSTEM +HUS2020_966,Barnett Rumble,15/01/1993,96683 Nova Lane,ADMIN +HUS2020_967,Christopher Palumbo,30/04/1993,359 Village Trail,WEB +HUS2020_968,Georgia Craw,6/8/1996,531 Boyd Alley,QA +HUS2020_969,Lanie Hamberston,17/04/1995,37 Anzinger Alley,SYSTEM +HUS2020_970,Deonne Dosedale,25/08/1991,39651 Paget Plaza,QA +HUS2020_971,Stoddard Bruinsma,13/04/1987,9827 Service Lane,MOBILE +HUS2020_972,Annnora Toovey,10/7/1981,9 Montana Way,ADMIN +HUS2020_973,Maddi Fussen,1/3/1981,21786 Sullivan Junction,MOBILE +HUS2020_974,Smitty Chicchetto,22/03/1990,6 Bluestem Junction,WEB +HUS2020_975,Carmelle Cavendish,20/01/1996,362 Fieldstone Park,QA +HUS2020_976,Eduino Hixley,29/11/1981,80 Dryden Center,SYSTEM +HUS2020_977,Jethro Couvert,22/07/1993,6853 Sommers Lane,MOBILE +HUS2020_978,Kimberley Thunderchief,3/5/1980,8 Memorial Terrace,QA +HUS2020_979,Murray D'Ugo,7/6/1986,7369 Thompson Hill,ADMIN +HUS2020_980,Udall Hanselmann,5/6/1983,6605 Loftsgordon Court,MOBILE +HUS2020_981,Lorettalorna Betterton,20/07/1985,9 Sachs Park,QA +HUS2020_982,Bruno Paxton,13/10/1992,922 Lillian Avenue,SYSTEM +HUS2020_983,Fabian McDunlevy,8/10/1998,9652 Butterfield Road,MOBILE +HUS2020_984,Laural Beckhurst,12/9/1980,7836 Mallory Parkway,QA +HUS2020_985,Linn Priestman,6/1/1984,4 Comanche Terrace,QA +HUS2020_986,Clarie Kirkby,8/9/1984,2 Dahle Court,ADMIN +HUS2020_987,Janessa Bradtke,3/9/1995,95793 Farragut Trail,WEB +HUS2020_988,Tyrus Troughton,23/11/1984,484 Heath Way,WEB +HUS2020_989,Amie Kisbee,8/12/1995,30 Debs Junction,WEB +HUS2020_990,Mitzi Ovesen,7/3/1986,7 Ohio Junction,SYSTEM +HUS2020_991,Fredia Trenholm,5/5/1987,63547 Forest Run Center,QA +HUS2020_992,Kalindi Higbin,3/6/1992,5 West Park,SYSTEM +HUS2020_993,Suzanna Nares,16/09/1999,616 Hoard Court,SYSTEM +HUS2020_994,Gilligan Franzke,14/06/1987,57 Waubesa Court,WEB +HUS2020_995,Nike April,4/8/1994,0049 Melody Road,SYSTEM +HUS2020_996,Adrien Marshal,3/8/1988,18 Warner Lane,QA +HUS2020_997,Violet Walkinshaw,20/09/1993,68530 Forster Crossing,SYSTEM +HUS2020_998,Elsey Wrought,5/10/1993,9 Dixon Street,QA +HUS2020_999,Jennee Aberchirder,22/10/1993,02963 Messerschmidt Street,QA +HUS2020_1000,Charmine Dafter,14/02/1994,436 Brentwood Hill,WEB +VN2020_1,Hannis Kalf,30/05/1998,29 Susan Avenue,SYSTEM +VN2020_2,Rodrique Huxster,25/10/1989,58381 Maple Wood Street,WEB +VN2020_3,Bette Leicester,1/11/1980,96 Blaine Way,MOBILE +VN2020_4,Evangelin Casol,21/08/1986,47 Ohio Avenue,QA +VN2020_5,Darelle Betteridge,22/04/1988,67 Lake View Alley,WEB +VN2020_6,Carleton Fearnside,7/10/1989,36070 8th Lane,WEB +VN2020_7,Rodi Jotcham,29/07/1993,6 Stuart Hill,SYSTEM +VN2020_8,Freddie Sweynson,7/11/1995,2478 Westerfield Court,WEB +VN2020_9,Rhona Rudyard,8/1/1988,64 Pearson Junction,QA +VN2020_10,Dulcea Curwood,1/9/1991,1076 Westend Street,QA +VN2020_11,Ulick Ivey,30/08/1994,1140 Little Fleur Parkway,ADMIN +VN2020_12,Bunni Asbery,30/05/1987,0 Holy Cross Way,WEB +VN2020_13,Philis Isakovitch,24/07/1995,57650 Golf Pass,SYSTEM +VN2020_14,Rockey Sogg,18/05/1990,89 Pearson Trail,QA +VN2020_15,Jinny Fowlie,31/03/1992,4 Waxwing Avenue,SYSTEM +VN2020_16,Merl Pruckner,30/11/1998,14 Hermina Terrace,ADMIN +VN2020_17,Rhodie Finlow,6/12/1985,719 Maple Wood Circle,MOBILE +VN2020_18,Wanids Ludgrove,13/04/1994,36 7th Lane,SYSTEM +VN2020_19,Celka Thew,10/6/1993,04 Kensington Street,SYSTEM +VN2020_20,Esra Skittles,9/12/1997,286 Larry Junction,QA +VN2020_21,Elli Du Fray,25/08/1983,80 Buena Vista Court,SYSTEM +VN2020_22,Tasia Gluyas,6/1/1998,7 Gerald Road,ADMIN +VN2020_23,Alex Sinclair,20/04/1999,49543 Oneill Junction,MOBILE +VN2020_24,Fanechka Janikowski,8/5/1993,252 Trailsway Park,QA +VN2020_25,Simone Hoovart,6/1/1998,40 Warbler Park,MOBILE +VN2020_26,Hillier Curado,25/09/1992,5 Declaration Way,ADMIN +VN2020_27,Franklin Lindenman,30/10/1997,278 Knutson Center,WEB +VN2020_28,Marybeth Turnbull,20/12/1982,72 Menomonie Trail,SYSTEM +VN2020_29,Tiphany Dollin,12/10/1988,224 Golf Plaza,WEB +VN2020_30,Rosella Zorzenoni,25/06/1997,146 Dunning Parkway,WEB +VN2020_31,Javier Kinsella,29/04/1983,53347 Evergreen Trail,MOBILE +VN2020_32,Clay Kemmet,18/06/1995,308 Loomis Crossing,QA +VN2020_33,Erin Evetts,24/04/1984,91 Transport Alley,QA +VN2020_34,Robbyn Petyt,14/10/1980,99408 Hagan Street,QA +VN2020_35,Garnet Giorgietto,18/08/1991,55640 Menomonie Place,MOBILE +VN2020_36,Ruthy Stollsteiner,29/05/1996,286 1st Park,SYSTEM +VN2020_37,Thurston Antill,20/10/1993,7207 Arizona Parkway,WEB +VN2020_38,Glenna Dubber,19/12/1999,821 Dahle Lane,QA +VN2020_39,Al Elsmere,22/04/1991,90 Talmadge Park,WEB +VN2020_40,Vincents Pietersen,25/06/1995,0 Summerview Pass,MOBILE +VN2020_41,Doreen Coppen,1/8/1987,09 Stephen Way,MOBILE +VN2020_42,Hilton Niccolls,10/2/1983,031 Maple Wood Circle,MOBILE +VN2020_43,Modesta O'Lynn,17/11/1982,0 Spenser Center,MOBILE +VN2020_44,Allene Slack,5/2/1987,1 Logan Drive,WEB +VN2020_45,Deloris Steljes,18/04/1991,33054 Morning Parkway,QA +VN2020_46,Hazel Tirrell,10/12/1983,70632 Fremont Hill,SYSTEM +VN2020_47,Lil Phelipeaux,20/01/1990,90992 Union Place,ADMIN +VN2020_48,Meggy Munsey,7/6/1990,56321 Lillian Street,ADMIN +VN2020_49,Heall O'Mailey,15/09/1989,1562 Pepper Wood Way,QA +VN2020_50,Dew Staziker,28/11/1991,09934 Gulseth Hill,ADMIN +VN2020_51,Corrie Dallman,8/7/1988,52359 Stephen Plaza,QA +VN2020_52,Stephani Wafer,22/12/1987,1936 Dovetail Pass,SYSTEM +VN2020_53,Chick Bashford,21/01/1987,7645 Ruskin Avenue,WEB +VN2020_54,Mohandas Kingerby,13/06/1998,78234 Melvin Court,MOBILE +VN2020_55,Tomas Parbrook,10/8/1986,9261 Little Fleur Street,WEB +VN2020_56,Bobbie Remmer,22/10/1989,70 Dwight Parkway,MOBILE +VN2020_57,Stu Bertolaccini,20/01/1980,7 Oneill Terrace,QA +VN2020_58,Hillie Yglesia,25/11/1985,2 Surrey Lane,MOBILE +VN2020_59,Gabbey Rubinsaft,10/4/1987,86 Carpenter Hill,QA +VN2020_60,Vaughn Loxdale,26/09/1997,4 Lukken Road,SYSTEM +VN2020_61,Bud Van Der Vlies,5/7/1981,8232 Derek Pass,WEB +VN2020_62,Graehme Pentycross,10/8/1994,3 Prentice Court,MOBILE +VN2020_63,Brett Prewett,28/06/1980,69162 Old Gate Pass,WEB +VN2020_64,Rosemaria Tythacott,9/3/1983,04399 Graedel Trail,QA +VN2020_65,Livia Hollibone,17/03/1980,2443 Hanover Junction,WEB +VN2020_66,Ardenia Dyett,18/10/1981,4000 Crowley Way,QA +VN2020_67,Gonzalo Dolder,12/5/1982,25 Hooker Park,WEB +VN2020_68,Moshe Benzie,13/04/1983,9 Delaware Circle,WEB +VN2020_69,Ajay Selby,8/3/1984,73423 Eastwood Crossing,QA +VN2020_70,Mellicent Mahaffey,25/10/1998,8 Old Shore Junction,WEB +VN2020_71,Sheelagh Feander,21/10/1989,8404 Portage Circle,QA +VN2020_72,Horatius Mulvany,22/06/1992,05 Rusk Circle,ADMIN +VN2020_73,Lacie Cescotti,20/05/1999,7772 Monica Lane,MOBILE +VN2020_74,Sadella Rapper,12/4/1989,9 Jana Parkway,ADMIN +VN2020_75,Jami Borg,15/11/1993,2300 Mariners Cove Crossing,WEB +VN2020_76,Israel Willmer,16/11/1984,9 Haas Place,SYSTEM +VN2020_77,Mack Hawtin,27/03/1992,9958 Welch Point,QA +VN2020_78,Minor Faulconer,2/3/1982,62 Alpine Plaza,WEB +VN2020_79,Hildagarde Laflin,27/08/1994,1347 Mayer Park,QA +VN2020_80,Christian Aps,7/1/1984,26 Waywood Alley,MOBILE +VN2020_81,Katy Regitz,30/05/1989,8942 Banding Hill,WEB +VN2020_82,Jeanette Hacun,7/7/1987,46255 Troy Junction,SYSTEM +VN2020_83,Roshelle Copp,3/6/1989,6 Pearson Plaza,WEB +VN2020_84,Livia Mosdall,24/11/1986,435 Oneill Road,SYSTEM +VN2020_85,Tatiania Vigne,31/03/1981,3 Stephen Crossing,SYSTEM +VN2020_86,Fonz Abrey,20/05/1999,74489 Pearson Road,ADMIN +VN2020_87,Dara Mouatt,27/07/1985,71 Jackson Terrace,SYSTEM +VN2020_88,Gunar McGraith,27/04/1985,2 Main Place,ADMIN +VN2020_89,Yule Escoffrey,7/2/1993,15 Mandrake Way,WEB +VN2020_90,Joane Vasey,14/10/1992,566 Derek Terrace,ADMIN +VN2020_91,Verina Clive,12/2/1980,913 Briar Crest Road,SYSTEM +VN2020_92,Mareah Paddy,24/08/1981,11 Upham Avenue,WEB +VN2020_93,Rosaleen Elliston,23/08/1984,4 Jenifer Trail,MOBILE +VN2020_94,Cicily Rigler,12/1/1993,5 Express Court,ADMIN +VN2020_95,Lenci Langan,3/7/1999,8444 Kings Road,ADMIN +VN2020_96,Lorenza Hazeltine,27/04/1988,443 Cody Pass,MOBILE +VN2020_97,Maxy Slinn,9/9/1990,97 Annamark Lane,ADMIN +VN2020_98,Geno Klimp,1/10/1990,039 Ridge Oak Trail,WEB +VN2020_99,Melinde Graver,1/6/1987,1 Coolidge Hill,WEB +VN2020_100,Kasey Mowett,11/7/1998,608 Eastwood Center,QA +VN2020_101,Fin Minton,25/09/1984,4245 Ryan Terrace,QA +VN2020_102,Oralla Theyer,8/6/1986,5 Hanover Hill,WEB +VN2020_103,Agatha Strowan,22/04/1992,082 Raven Pass,MOBILE +VN2020_104,Aura Lawther,19/10/1980,474 Nelson Trail,ADMIN +VN2020_105,Uriah Burgen,30/07/1994,56 Reindahl Road,WEB +VN2020_106,Marc Adlam,12/7/1980,3435 Eagle Crest Plaza,SYSTEM +VN2020_107,Norbert Crampton,3/5/1994,7 Cordelia Court,SYSTEM +VN2020_108,Charla Piola,6/7/1997,945 Oakridge Road,SYSTEM +VN2020_109,Jere Derisly,25/07/1985,2 Buena Vista Trail,ADMIN +VN2020_110,Vivie Tebbet,21/03/1991,00747 Chive Terrace,SYSTEM +VN2020_111,Lenee MacGebenay,24/01/1995,97 Pleasure Trail,MOBILE +VN2020_112,Christiana Tripony,17/01/1994,325 Fordem Terrace,WEB +VN2020_113,Serge Curme,12/1/1987,63 Spohn Way,WEB +VN2020_114,Tiffie Laidler,17/01/1994,292 Autumn Leaf Place,WEB +VN2020_115,Hilda Whitlaw,31/01/1987,2 Carioca Terrace,MOBILE +VN2020_116,Eleonore Kira,30/11/1990,56114 Steensland Street,WEB +VN2020_117,Rance De Simoni,8/7/1996,8 Hoffman Place,WEB +VN2020_118,Idaline Aylett,27/05/1997,8366 Fair Oaks Parkway,SYSTEM +VN2020_119,Timothy Borman,11/5/1983,78 Golf Terrace,ADMIN +VN2020_120,Anthe Renals,3/11/1987,641 Dawn Place,ADMIN +VN2020_121,Monte Wiersma,20/11/1986,59519 Toban Lane,WEB +VN2020_122,Tandie Steagall,4/8/1991,8603 Heath Hill,MOBILE +VN2020_123,Chloris Eggerton,23/09/1993,068 Corry Circle,SYSTEM +VN2020_124,Elly MacGray,24/11/1980,31 Bonner Way,MOBILE +VN2020_125,Krishnah Glowacha,24/03/1989,14 Little Fleur Trail,MOBILE +VN2020_126,Wallas Hebborne,21/12/1993,5 Leroy Circle,SYSTEM +VN2020_127,Hector Creed,19/08/1990,1 Steensland Terrace,WEB +VN2020_128,Marti Matura,5/2/1982,72135 Morrow Parkway,WEB +VN2020_129,Doreen Nutbeem,19/04/1995,5079 Mcguire Center,WEB +VN2020_130,Royal Dauncey,23/10/1984,7434 Northridge Point,QA +VN2020_131,Winnie Storcke,4/9/1986,55 8th Parkway,WEB +VN2020_132,Joyce St. Leger,5/12/1985,89869 Dennis Center,WEB +VN2020_133,Kiersten Rowbottom,26/05/1999,7 Rowland Park,MOBILE +VN2020_134,Tammie Portlock,19/05/1992,19 Thompson Center,QA +VN2020_135,Aili Badcock,25/12/1990,7108 Farragut Court,ADMIN +VN2020_136,Corly Tuxell,24/07/1988,49925 Commercial Terrace,MOBILE +VN2020_137,Aylmer Androletti,2/4/1980,57706 Londonderry Circle,ADMIN +VN2020_138,Halie McCooke,14/10/1985,5751 Melby Terrace,SYSTEM +VN2020_139,Sebastian Gerardot,25/06/1983,862 Shoshone Way,QA +VN2020_140,Andie Syphus,8/4/1999,23 Heath Court,MOBILE +VN2020_141,Elston Dulling,11/5/1997,31916 Debs Court,WEB +VN2020_142,Mickie Pepi,18/11/1984,9680 5th Hill,QA +VN2020_143,Archy Spatari,12/4/1987,0246 Commercial Pass,MOBILE +VN2020_144,Gianina Sheldon,22/08/1995,83966 Esker Circle,WEB +VN2020_145,Chelsey Eggerton,17/05/1984,7 South Center,SYSTEM +VN2020_146,Krissie Meadowcraft,20/02/1984,174 Fair Oaks Way,ADMIN +VN2020_147,Agretha Jedraszek,1/5/1993,77579 Graceland Road,QA +VN2020_148,Danya Brind,25/10/1989,8 Carberry Hill,WEB +VN2020_149,Raffaello Becker,19/11/1983,333 Northland Plaza,QA +VN2020_150,Monro Chastey,4/7/1988,95 Tennessee Avenue,MOBILE +VN2020_151,Ara Binham,8/2/1998,0 Reindahl Hill,WEB +VN2020_152,Dannel Galliver,28/09/1992,52 Sunbrook Lane,SYSTEM +VN2020_153,Granny Valentetti,12/8/1981,37 Barnett Center,SYSTEM +VN2020_154,Egbert Popplewell,3/5/1996,24633 Cordelia Hill,QA +VN2020_155,Ilsa Pinar,30/07/1980,1 Ridgeview Court,QA +VN2020_156,Danell McNalley,29/08/1983,35571 North Alley,SYSTEM +VN2020_157,Cari Heap,15/04/1988,572 Main Circle,SYSTEM +VN2020_158,Averill Gensavage,20/10/1996,63576 Blaine Pass,QA +VN2020_159,Hugibert Foakes,24/12/1998,5043 Huxley Trail,SYSTEM +VN2020_160,Cristi Durrett,30/09/1984,82 Montana Hill,MOBILE +VN2020_161,Dre Elizabeth,16/01/1997,8585 Blaine Point,WEB +VN2020_162,Clayborn Woollacott,12/12/1994,841 Summit Center,MOBILE +VN2020_163,Wendie Hallam,14/11/1999,5026 Nelson Court,MOBILE +VN2020_164,Madelena de Castelain,11/3/1990,45288 Gulseth Hill,QA +VN2020_165,Ardisj Verlander,6/2/1987,88607 Buena Vista Avenue,MOBILE +VN2020_166,Mada Flack,23/02/1998,89 Springview Parkway,MOBILE +VN2020_167,Juliet Spearman,13/02/1996,21 Springview Terrace,MOBILE +VN2020_168,Fair Bisatt,1/11/1993,377 Westport Junction,QA +VN2020_169,Jae Kocher,19/03/1994,9 Mallard Center,SYSTEM +VN2020_170,Shirley Kilbourne,11/11/1985,40 Ridge Oak Place,MOBILE +VN2020_171,Beatriz Pritchitt,6/1/1986,88995 Corry Point,SYSTEM +VN2020_172,Eddy MacGregor,10/11/1990,53229 Ridge Oak Lane,WEB +VN2020_173,Libbi Bragginton,10/12/1994,96325 Blackbird Lane,QA +VN2020_174,Feodor Semeniuk,2/6/1994,52 Merry Street,SYSTEM +VN2020_175,Chrissie McFie,4/8/1989,37629 Fieldstone Way,WEB +VN2020_176,Pierce Luscott,26/07/1991,73 Kim Junction,MOBILE +VN2020_177,Dyna Schwartz,13/04/1981,90 Fordem Trail,ADMIN +VN2020_178,Faun Gauge,28/11/1990,333 Killdeer Point,WEB +VN2020_179,Elston Yurshev,9/2/1994,5836 Forster Way,MOBILE +VN2020_180,Nelson McRinn,11/7/1997,7821 Montana Pass,MOBILE +VN2020_181,Weber Povey,23/06/1989,114 Erie Street,MOBILE +VN2020_182,Abbie Goracci,17/06/1988,58059 Texas Hill,SYSTEM +VN2020_183,Alayne Beaty,15/03/1984,88 Toban Avenue,QA +VN2020_184,Lewie McMorran,22/03/1985,81374 High Crossing Lane,MOBILE +VN2020_185,Heywood Purbrick,19/09/1995,8340 Weeping Birch Alley,QA +VN2020_186,Thornton Gwinnel,5/8/1995,81 Carpenter Lane,QA +VN2020_187,Melinde Hazlegrove,19/10/1984,1161 Bultman Terrace,QA +VN2020_188,Patsy Coventon,30/01/1999,68 Prairieview Parkway,WEB +VN2020_189,Kacie Keningley,10/12/1984,639 Kedzie Avenue,QA +VN2020_190,Wait Congreve,14/09/1990,5714 Sloan Avenue,MOBILE +VN2020_191,Chase Meenehan,3/6/1995,1 Bellgrove Place,ADMIN +VN2020_192,Mirella Hanby,6/2/1993,93 Armistice Parkway,QA +VN2020_193,Robinett Agget,2/6/1993,8 Charing Cross Plaza,WEB +VN2020_194,Sebastien Szymaniak,5/6/1993,81059 Marcy Road,ADMIN +VN2020_195,Tatiania Apperley,15/04/1982,466 Barnett Lane,SYSTEM +VN2020_196,Vina Meech,5/6/1986,0902 Scott Drive,QA +VN2020_197,Clement Luddy,18/03/1990,9045 Kropf Terrace,ADMIN +VN2020_198,Bing Bauchop,17/07/1996,575 Autumn Leaf Parkway,MOBILE +VN2020_199,Lotty Enderwick,20/06/1997,1 Forest Drive,WEB +VN2020_200,Wiley Harlick,20/07/1982,367 Sloan Junction,ADMIN +VN2020_201,Addia Heathfield,15/04/1991,1874 Buell Avenue,MOBILE +VN2020_202,Finn Nairns,11/4/1989,969 Dayton Trail,SYSTEM +VN2020_203,Kalina Dory,30/10/1995,209 Continental Parkway,QA +VN2020_204,Arlyn Coche,14/05/1989,4 Milwaukee Park,SYSTEM +VN2020_205,Gene Fergusson,5/12/1985,80713 Larry Crossing,ADMIN +VN2020_206,Reggie Egentan,16/06/1987,10 Reindahl Avenue,WEB +VN2020_207,Tiffie Duetschens,9/8/1998,9 Loeprich Point,SYSTEM +VN2020_208,Flinn Ivy,14/03/1987,3 Commercial Point,QA +VN2020_209,Kora Volks,10/12/1997,379 Dawn Court,SYSTEM +VN2020_210,Anita Clist,21/06/1999,93 Jenifer Trail,WEB +VN2020_211,Lani Pinfold,4/6/1995,743 Eggendart Trail,SYSTEM +VN2020_212,Georgine Senett,14/05/1995,429 Dapin Drive,SYSTEM +VN2020_213,Lorrie Signoret,17/07/1996,9 Stephen Street,QA +VN2020_214,Kirsten Tomsa,13/01/1991,8 Coolidge Point,MOBILE +VN2020_215,Elliot Stitcher,22/10/1981,2 Hoffman Park,QA +VN2020_216,Ardyce Lober,9/4/1986,6 Monica Pass,SYSTEM +VN2020_217,Clarie Benadette,17/08/1985,22690 Clarendon Crossing,QA +VN2020_218,Megan Melendez,24/06/1995,76 Little Fleur Crossing,QA +VN2020_219,Cammy Munden,20/02/1999,6 Tennessee Alley,WEB +VN2020_220,Kizzee Sevitt,16/03/1980,77101 Talmadge Place,MOBILE +VN2020_221,Jobye Moulden,25/07/1988,59582 Nova Terrace,WEB +VN2020_222,Hakim Paulou,12/5/1987,67 Crownhardt Avenue,SYSTEM +VN2020_223,Alexandros O'Mohun,1/7/1991,566 Kipling Trail,ADMIN +VN2020_224,Leah Bentjens,12/3/1982,2050 Arizona Point,SYSTEM +VN2020_225,Phil Rafferty,30/11/1993,882 Burrows Place,MOBILE +VN2020_226,Madel Faust,9/2/1993,6367 Bluejay Alley,WEB +VN2020_227,Jewel Marshallsay,7/5/1992,53 Oakridge Trail,SYSTEM +VN2020_228,Sib Cloute,26/06/1998,35831 Dottie Trail,MOBILE +VN2020_229,Cirstoforo Hanbury-Brown,4/9/1984,292 Blue Bill Park Way,WEB +VN2020_230,Cris Brimmacombe,3/3/1982,20 Dixon Court,QA +VN2020_231,Stephen Emanueli,10/6/1992,7607 David Hill,WEB +VN2020_232,Beau Backson,28/11/1981,299 Pepper Wood Circle,ADMIN +VN2020_233,Duff Luxen,4/5/1983,6653 David Terrace,SYSTEM +VN2020_234,Cleopatra McKeon,23/01/1980,1355 Vidon Junction,MOBILE +VN2020_235,Laurene Towhey,1/1/1984,6579 Iowa Street,WEB +VN2020_236,Lorrie Rastrick,22/09/1990,6 Arkansas Place,MOBILE +VN2020_237,Gale Meconi,17/02/1986,816 Di Loreto Crossing,WEB +VN2020_238,Otho Braikenridge,13/05/1989,784 Beilfuss Court,SYSTEM +VN2020_239,Shawna Lamplugh,22/11/1991,3384 Browning Junction,QA +VN2020_240,Jamie Eminson,22/11/1988,7 Hintze Point,SYSTEM +VN2020_241,Mannie Allday,16/07/1980,56 Myrtle Lane,QA +VN2020_242,Manolo Bartlomiej,30/01/1987,08710 School Center,ADMIN +VN2020_243,Lucille Sutworth,4/10/1988,69911 Texas Junction,MOBILE +VN2020_244,Mendie Hundall,30/01/1988,9 Bartelt Avenue,SYSTEM +VN2020_245,Margarita Batcheldor,15/08/1995,0014 Caliangt Avenue,SYSTEM +VN2020_246,Brad Vairow,12/7/1992,3517 Kingsford Terrace,WEB +VN2020_247,Gilberto Backhurst,12/4/1981,27543 Rusk Avenue,ADMIN +VN2020_248,Orly McKniely,18/02/1987,0 Hovde Lane,WEB +VN2020_249,Nani Chastenet,1/2/1991,14343 John Wall Hill,MOBILE +VN2020_250,Tiffie Eliasen,15/03/1984,89 Gateway Way,WEB +VN2020_251,Janelle Bazek,1/9/1995,43389 Superior Park,QA +VN2020_252,Trudie Raylton,14/11/1985,89499 Hudson Court,SYSTEM +VN2020_253,Ado Carlyon,10/7/1990,8662 Stephen Plaza,WEB +VN2020_254,Leonardo Cubbon,10/10/1991,658 Dayton Point,ADMIN +VN2020_255,Cilka Ince,13/03/1984,7415 Shasta Street,SYSTEM +VN2020_256,Amberly Claypole,19/12/1986,52 Maryland Street,SYSTEM +VN2020_257,Dall Wedmore.,14/04/1994,29 Scoville Road,ADMIN +VN2020_258,Jarret Josland,15/03/1982,3826 Green Point,MOBILE +VN2020_259,Meredithe Kenway,23/03/1992,3 Sloan Street,WEB +VN2020_260,Gerhardt Galliford,20/11/1990,317 Rieder Point,MOBILE +VN2020_261,Filia MacCleod,20/12/1984,05306 Pierstorff Drive,WEB +VN2020_262,Jereme Normanvell,1/5/1990,351 Stoughton Alley,SYSTEM +VN2020_263,Shelley Mumbray,15/08/1986,9 Monterey Park,MOBILE +VN2020_264,Eyde Nellis,15/03/1990,162 Monterey Junction,ADMIN +VN2020_265,Tarah Pummery,11/10/1982,2 Stoughton Terrace,QA +VN2020_266,Darrin Antoni,19/12/1997,7582 Delaware Center,MOBILE +VN2020_267,Maybelle Kivell,16/04/1991,029 Delladonna Crossing,SYSTEM +VN2020_268,Sheri Fist,20/02/1982,04763 Butterfield Drive,WEB +VN2020_269,Rickey Johann,29/09/1993,1186 Grover Terrace,SYSTEM +VN2020_270,Crawford Ivanyukov,12/10/1987,73 2nd Point,SYSTEM +VN2020_271,Carlyle Smiths,6/5/1988,8 Mayer Drive,QA +VN2020_272,Danni Pepin,30/07/1989,25 Doe Crossing Center,SYSTEM +VN2020_273,Geraldine Gisbourn,27/03/1985,86 Caliangt Pass,SYSTEM +VN2020_274,Reinhard Bims,27/12/1997,6 Luster Hill,WEB +VN2020_275,Pru Sturch,5/12/1990,20 Debs Drive,QA +VN2020_276,Koren McLucky,28/07/1995,1 Rockefeller Lane,WEB +VN2020_277,Ban McCroary,26/10/1988,82390 Montana Parkway,QA +VN2020_278,Husain Reddlesden,5/4/1993,8087 Schlimgen Road,WEB +VN2020_279,Carrie Pedreschi,28/02/1991,1 Laurel Lane,WEB +VN2020_280,Torrey Reddihough,17/06/1984,7724 Hayes Terrace,MOBILE +VN2020_281,Rora Yanuk,23/03/1999,7219 Merrick Trail,MOBILE +VN2020_282,Verile Lamba,8/1/1999,3 Caliangt Center,ADMIN +VN2020_283,Karel Pollastrone,18/09/1985,641 Twin Pines Avenue,QA +VN2020_284,Elaina Turton,1/7/1995,91270 Spenser Way,WEB +VN2020_285,Myrilla Alldread,18/08/1988,73134 Arrowood Pass,SYSTEM +VN2020_286,Dalenna Vankeev,7/11/1993,601 La Follette Court,WEB +VN2020_287,Kathryn Toolin,10/7/1995,188 Ronald Regan Point,SYSTEM +VN2020_288,Nanci Cruttenden,14/06/1998,26 Quincy Alley,MOBILE +VN2020_289,Fernanda Nutt,15/07/1994,862 Oneill Place,MOBILE +VN2020_290,Bonnibelle Ravel,10/11/1982,4372 Roth Circle,SYSTEM +VN2020_291,Reynold O'Donovan,25/12/1993,25818 Jenna Circle,SYSTEM +VN2020_292,Jorey Puve,29/09/1984,29 Montana Point,WEB +VN2020_293,Costa Yosifov,12/12/1996,14 American Ash Street,ADMIN +VN2020_294,Jakie Treversh,15/04/1982,43611 Elgar Alley,QA +VN2020_295,Caressa Dipple,12/6/1980,5 Stephen Center,SYSTEM +VN2020_296,Lizabeth Seeds,6/11/1995,08 Almo Crossing,SYSTEM +VN2020_297,Jon Tibbetts,16/04/1980,5721 Blue Bill Park Lane,MOBILE +VN2020_298,Rachel Offener,12/6/1994,177 Scofield Terrace,WEB +VN2020_299,Massimo Woolmore,15/07/1989,2124 Menomonie Alley,ADMIN +VN2020_300,Ade Shaul,17/09/1983,8 Sutteridge Pass,WEB +VN2020_301,Miranda Kolinsky,22/09/1992,19114 Lakewood Road,WEB +VN2020_302,Britni Gully,4/8/1994,91728 Burning Wood Road,MOBILE +VN2020_303,Rowen Liversley,17/10/1998,6307 Eagan Trail,WEB +VN2020_304,Gavan Trinke,16/03/1997,2 Maple Wood Alley,QA +VN2020_305,Gabby Rawlingson,11/6/1985,35636 Macpherson Plaza,ADMIN +VN2020_306,Dasya Wands,27/12/1994,18 1st Park,WEB +VN2020_307,Christian Boyce,29/01/1981,06401 Briar Crest Court,QA +VN2020_308,Dallas Adran,5/10/1993,9137 Cambridge Place,WEB +VN2020_309,Harald Bedham,10/1/1984,572 Northridge Park,WEB +VN2020_310,Morty Martelet,1/6/1998,8579 Carberry Point,QA +VN2020_311,Harman Doohey,26/03/1991,0428 Center Park,WEB +VN2020_312,Belle Whittock,18/12/1985,429 Eggendart Center,ADMIN +VN2020_313,Shannan Grelak,10/9/1985,51469 Laurel Parkway,MOBILE +VN2020_314,Feliks Senn,18/08/1981,08225 Johnson Street,WEB +VN2020_315,Jamaal Hegges,1/5/1988,576 Surrey Center,ADMIN +VN2020_316,Mathew Seawright,10/8/1986,39396 Dahle Plaza,WEB +VN2020_317,Filia Misken,8/11/1995,7 Ryan Circle,WEB +VN2020_318,Doralin Standall,9/8/1989,6676 Petterle Plaza,QA +VN2020_319,Abran Liversidge,20/03/1990,71976 Division Center,WEB +VN2020_320,Karylin Hallmark,23/07/1994,3292 Old Gate Circle,QA +VN2020_321,Marcus Izhaky,4/12/1984,8038 Morningstar Lane,WEB +VN2020_322,Tine Dudderidge,29/07/1987,152 Merrick Hill,WEB +VN2020_323,Filip Daugherty,9/2/1980,1572 Eliot Place,QA +VN2020_324,Fraser Carss,18/04/1995,06193 Sunfield Pass,MOBILE +VN2020_325,Odey Cummins,25/01/1999,38225 Judy Point,SYSTEM +VN2020_326,Yul Scanlon,9/1/1999,16473 Old Shore Parkway,WEB +VN2020_327,Kingston Tombs,12/11/1982,2632 Gulseth Plaza,ADMIN +VN2020_328,Jolie Dowman,19/03/1981,874 East Place,SYSTEM +VN2020_329,Mylo Arbuckle,16/07/1986,14235 Victoria Alley,ADMIN +VN2020_330,Lorant Habbes,11/3/1985,454 Hintze Trail,MOBILE +VN2020_331,Roosevelt Garett,12/2/1984,199 Blue Bill Park Parkway,WEB +VN2020_332,Emelen Toope,3/5/1999,6913 Londonderry Parkway,WEB +VN2020_333,Mikkel Tappin,11/10/1983,90 Riverside Drive,WEB +VN2020_334,Laurel Wicher,17/05/1983,6 Wayridge Pass,QA +VN2020_335,Jenn Barwise,5/12/1990,4 Marquette Place,WEB +VN2020_336,Mimi Red,24/01/1990,5 Del Mar Parkway,WEB +VN2020_337,Karel Barry,26/06/1983,81313 Lukken Crossing,WEB +VN2020_338,Gamaliel Duffell,6/4/1987,526 Gina Trail,WEB +VN2020_339,Lauryn Fayre,13/03/1995,27 East Center,SYSTEM +VN2020_340,Emmit Wordley,23/09/1986,86 Lien Hill,WEB +VN2020_341,Matt Abdy,23/11/1981,1 Lerdahl Plaza,MOBILE +VN2020_342,Ario Glitherow,10/4/1980,5690 Arrowood Way,WEB +VN2020_343,Dedra Scotchbrook,22/06/1999,4 Sachtjen Place,ADMIN +VN2020_344,Pepi Claisse,6/7/1981,8070 Pleasure Pass,ADMIN +VN2020_345,Kory Auchinleck,2/3/1983,84897 Hoard Hill,MOBILE +VN2020_346,Aymer Bensen,29/12/1997,2 Fisk Avenue,WEB +VN2020_347,Ellerey Stockdale,5/12/1982,563 Nevada Street,ADMIN +VN2020_348,Karlyn Warren,30/03/1994,98 Maywood Park,WEB +VN2020_349,Joly Greenshields,7/4/1997,782 Roxbury Crossing,QA +VN2020_350,Cybil Tythacott,7/3/1981,65910 Burrows Trail,QA +VN2020_351,Kelley Papierz,7/5/1984,13305 Maryland Plaza,QA +VN2020_352,Cherice McElree,6/8/1990,9057 Main Place,QA +VN2020_353,Stephine Chrestien,16/12/1980,672 Duke Terrace,MOBILE +VN2020_354,Yelena Galley,5/8/1997,16943 Bay Hill,MOBILE +VN2020_355,Marshal Chafney,4/5/1992,311 Laurel Alley,MOBILE +VN2020_356,Quill Sinderland,10/7/1991,44 Cordelia Drive,WEB +VN2020_357,Jacki Gronowe,10/3/1987,9 Lakewood Gardens Circle,MOBILE +VN2020_358,Karita Engeham,4/11/1982,6 Lerdahl Parkway,ADMIN +VN2020_359,Delcine Close,12/10/1991,223 Old Gate Point,WEB +VN2020_360,Pierette Aubrey,19/11/1986,08661 Alpine Avenue,WEB +VN2020_361,Adorne O'Teague,5/10/1993,622 Mosinee Alley,WEB +VN2020_362,Sibilla Larmett,12/11/1994,68 Londonderry Drive,MOBILE +VN2020_363,Elena Laval,2/7/1981,90 4th Junction,SYSTEM +VN2020_364,Patrizio Downage,2/8/1998,50 Comanche Parkway,MOBILE +VN2020_365,Inesita de Zamora,14/04/1999,2573 Atwood Hill,WEB +VN2020_366,Daffy Cant,15/03/1990,3 Holmberg Trail,QA +VN2020_367,Teodora Oven,16/05/1987,60 Spaight Drive,WEB +VN2020_368,Cletus Pynner,2/11/1989,584 Maple Terrace,MOBILE +VN2020_369,Travus Agastina,29/09/1988,28 Manufacturers Street,WEB +VN2020_370,Coreen Gaukrodge,18/06/1983,55 Heath Plaza,MOBILE +VN2020_371,Charlean Deave,5/1/1984,212 Birchwood Alley,WEB +VN2020_372,Brietta Mahaddie,12/4/1984,4 Summerview Parkway,WEB +VN2020_373,Jason Bassilashvili,20/07/1981,820 Nobel Point,MOBILE +VN2020_374,Bobina Adamovicz,3/12/1984,259 Meadow Ridge Crossing,WEB +VN2020_375,Yance Colwell,29/03/1996,46 Jay Circle,WEB +VN2020_376,Ric Elmar,5/3/1992,622 Springview Junction,MOBILE +VN2020_377,Gavrielle Ellis,29/11/1998,8 Linden Park,MOBILE +VN2020_378,Lacey Skyppe,2/12/1987,2 Kim Center,WEB +VN2020_379,Viv Caplan,16/09/1997,145 Packers Alley,SYSTEM +VN2020_380,Hillier Melding,24/01/1998,8940 Dapin Parkway,MOBILE +VN2020_381,Consolata Fontel,8/10/1993,235 Garrison Court,WEB +VN2020_382,Saxon Crosswaite,29/07/1997,05 Anderson Avenue,WEB +VN2020_383,Bibby Broadbridge,16/11/1993,9603 Trailsway Lane,SYSTEM +VN2020_384,Darill Arrundale,22/08/1981,1704 Blue Bill Park Lane,SYSTEM +VN2020_385,Clari Adamides,21/07/1981,905 Village Crossing,QA +VN2020_386,Yorke Osmond,18/03/1989,135 Butterfield Road,MOBILE +VN2020_387,Trev Basden,8/6/1984,3 Talmadge Circle,WEB +VN2020_388,Hunfredo Maier,29/03/1987,6542 Larry Avenue,WEB +VN2020_389,Brita Crissil,16/02/1985,1098 Prairieview Park,WEB +VN2020_390,Eleonore Marxsen,26/12/1993,986 Stuart Court,WEB +VN2020_391,Franklyn Polak,12/2/1984,05 Utah Park,WEB +VN2020_392,Jen Galler,10/6/1989,46562 Leroy Trail,SYSTEM +VN2020_393,Cass Rangle,22/06/1989,464 Buena Vista Parkway,WEB +VN2020_394,Haley Ulyatt,26/05/1994,29748 Anthes Avenue,WEB +VN2020_395,Angeline Leaning,12/2/1984,32 Sauthoff Court,WEB +VN2020_396,Gilligan Dennison,13/08/1982,28547 Fallview Alley,QA +VN2020_397,Clair Stivey,10/2/1990,880 Shasta Road,MOBILE +VN2020_398,Nye Frosch,30/06/1997,062 Emmet Parkway,MOBILE +VN2020_399,Ingrid Barfoot,3/8/1999,924 Transport Trail,WEB +VN2020_400,Gawain Siddens,23/10/1984,8 East Way,SYSTEM +VN2020_401,Leyla Moubray,12/10/1987,0 Thierer Junction,WEB +VN2020_402,Uta Karran,28/09/1988,43 Mayfield Avenue,MOBILE +VN2020_403,Scot Vaen,8/12/1997,50 Loomis Avenue,WEB +VN2020_404,Mab Dowthwaite,18/12/1997,70 Elmside Street,QA +VN2020_405,Doralynn Commuzzo,16/02/1986,25 Pearson Alley,SYSTEM +VN2020_406,Domenico Fowlie,7/4/1990,296 Shasta Terrace,QA +VN2020_407,John Highman,5/6/1984,75 Bunker Hill Road,WEB +VN2020_408,Dick Norquoy,31/08/1984,9 Fieldstone Parkway,SYSTEM +VN2020_409,Corena Issitt,17/06/1996,73959 Manufacturers Road,QA +VN2020_410,Dulci Grishagin,24/12/1988,487 Corscot Parkway,MOBILE +VN2020_411,Ardeen Cuttelar,23/07/1995,3667 International Court,MOBILE +VN2020_412,Florette Holah,29/09/1994,616 Mallory Way,QA +VN2020_413,Peter Quilty,25/01/1998,17 Lien Hill,WEB +VN2020_414,Booth Wickett,1/10/1985,8487 Rigney Place,QA +VN2020_415,Oran Sancias,16/11/1983,0530 Evergreen Road,WEB +VN2020_416,Letta Huddlestone,19/10/1999,486 6th Hill,QA +VN2020_417,Pearl Becken,4/8/1980,5 Claremont Road,WEB +VN2020_418,Konstantine Sentance,8/4/1985,36 Commercial Street,MOBILE +VN2020_419,Amble Wollaston,20/03/1993,0 Susan Plaza,MOBILE +VN2020_420,Kerrin Brymner,15/04/1991,2223 Red Cloud Circle,ADMIN +VN2020_421,Everett Kobes,5/7/1981,90 Moland Street,WEB +VN2020_422,Sheeree Killerby,16/06/1987,562 Little Fleur Court,ADMIN +VN2020_423,Celestine Hawtrey,6/12/1980,42 Meadow Valley Parkway,WEB +VN2020_424,Jorry Kroin,19/04/1988,0 Main Hill,QA +VN2020_425,Dallon Izaks,25/03/1993,20626 Delaware Crossing,ADMIN +VN2020_426,Eustace Dunphie,16/03/1981,64 Esch Pass,QA +VN2020_427,Smith Dunsford,7/6/1997,45 Wayridge Point,MOBILE +VN2020_428,Hobart Tamplin,3/10/1983,11 Lillian Junction,ADMIN +VN2020_429,Elfie Jeanesson,26/07/1983,304 Blaine Center,QA +VN2020_430,Riane Ashwell,3/7/1993,282 Eliot Terrace,MOBILE +VN2020_431,Syd Patience,17/05/1984,2196 Browning Parkway,ADMIN +VN2020_432,Patrick Aisthorpe,13/11/1994,98160 Northfield Place,ADMIN +VN2020_433,Halsy Mallion,24/12/1990,365 Packers Pass,QA +VN2020_434,Kandy Birkin,15/08/1990,22333 Lien Parkway,MOBILE +VN2020_435,Joey Reed,9/3/1988,9 Spohn Plaza,WEB +VN2020_436,Geoffrey Joberne,9/5/1989,08 Red Cloud Parkway,MOBILE +VN2020_437,Yurik Guiet,2/5/1980,8 Declaration Street,WEB +VN2020_438,Corri Arundale,27/05/1986,5466 Eliot Road,MOBILE +VN2020_439,Amye Grafton-Herbert,26/03/1990,9 Bay Park,SYSTEM +VN2020_440,Betteanne Woolley,24/03/1999,02721 Prentice Court,WEB +VN2020_441,Laureen Quilty,25/06/1995,5110 Corry Terrace,QA +VN2020_442,Lisle Antonikov,26/03/1981,8 Brentwood Court,SYSTEM +VN2020_443,Farrand St Leger,23/04/1995,98421 Leroy Plaza,WEB +VN2020_444,Gusty Thow,26/04/1995,1192 Towne Way,QA +VN2020_445,Loralie Hurcombe,3/2/1987,4 Loftsgordon Way,QA +VN2020_446,Tatiana Armes,11/2/1999,893 American Ash Hill,WEB +VN2020_447,Teodora Chipping,21/04/1999,46 Paget Crossing,QA +VN2020_448,Allissa Lozano,16/11/1999,1 Emmet Trail,MOBILE +VN2020_449,Brittaney Stainer,22/06/1990,1 Donald Circle,WEB +VN2020_450,Krishnah Funcheon,10/9/1985,4 Portage Junction,QA +VN2020_451,Giles Bloschke,2/9/1996,90 Fuller Plaza,QA +VN2020_452,Blanche Kondratovich,11/8/1990,5492 Corscot Street,WEB +VN2020_453,Astrid Weal,11/11/1998,00 Elgar Park,WEB +VN2020_454,Una McCraw,3/4/1980,67 Del Sol Lane,SYSTEM +VN2020_455,Nolly Hargate,20/08/1986,0370 Hudson Park,SYSTEM +VN2020_456,Jamil Shaw,29/12/1989,27239 Northland Point,QA +VN2020_457,Marten Price,3/5/1980,4 Green Crossing,MOBILE +VN2020_458,Constancia Guillot,2/1/1986,31 Jay Drive,MOBILE +VN2020_459,Kathryne Mecco,5/1/1989,83 Leroy Road,SYSTEM +VN2020_460,Lawry Cheale,7/10/1998,749 Truax Point,WEB +VN2020_461,Darby Lapham,24/05/1991,77 Novick Crossing,WEB +VN2020_462,Lela Barracks,6/5/1996,76 Moulton Street,QA +VN2020_463,Augy Leil,25/06/1997,64021 Melvin Place,WEB +VN2020_464,Victoria Ferrea,24/03/1996,7138 Claremont Place,ADMIN +VN2020_465,Moe Baff,18/10/1985,0 Donald Alley,ADMIN +VN2020_466,Marcelle Frodsam,8/1/1988,1877 Jay Avenue,MOBILE +VN2020_467,Cliff Dussy,6/5/1981,62 Dawn Drive,MOBILE +VN2020_468,Emmerich Boyen,30/03/1994,18 4th Circle,WEB +VN2020_469,Vivian Gosby,24/02/1988,895 Chinook Junction,MOBILE +VN2020_470,Albrecht Ollander,11/12/1980,84802 Esch Hill,SYSTEM +VN2020_471,Hephzibah O'Spillane,15/04/1997,76 Linden Junction,SYSTEM +VN2020_472,Lewiss Meacher,17/05/1981,49 Thackeray Trail,MOBILE +VN2020_473,Cesar Upstell,16/01/1990,45487 Lakewood Gardens Trail,MOBILE +VN2020_474,Arabela Colledge,25/09/1991,22177 Delladonna Park,QA +VN2020_475,Rey Gilman,13/04/1991,7816 Cordelia Crossing,QA +VN2020_476,Zolly Steffens,13/10/1985,0205 Summerview Court,ADMIN +VN2020_477,Guss Lacotte,29/03/1991,70 Dapin Junction,MOBILE +VN2020_478,Alix McDougle,20/08/1989,7 Kenwood Park,SYSTEM +VN2020_479,Stacee Holston,7/11/1990,3564 Vidon Terrace,WEB +VN2020_480,Noell Menicomb,12/5/1982,06 Monument Junction,QA +VN2020_481,Linn Rooper,3/3/1991,92845 Nova Circle,ADMIN +VN2020_482,Neysa Stanmer,1/7/1982,10 Sutteridge Crossing,SYSTEM +VN2020_483,Elmira Dubock,5/5/1997,5749 Bluejay Trail,MOBILE +VN2020_484,Marjorie Ceillier,26/02/1992,1225 Hoepker Point,ADMIN +VN2020_485,Devlen Fernan,1/3/1984,9654 Graceland Place,WEB +VN2020_486,Aylmer Saxon,3/1/1981,99908 Marquette Junction,QA +VN2020_487,Hilda McCulloch,20/09/1999,1110 Maple Wood Hill,QA +VN2020_488,Shaine Pickthorn,2/2/1993,85 Barby Alley,WEB +VN2020_489,Alfy Ivimey,2/10/1994,165 Hoffman Point,ADMIN +VN2020_490,Deloria Vernon,2/8/1980,940 Hanson Circle,SYSTEM +VN2020_491,Shea Allingham,8/5/1987,1 Myrtle Plaza,WEB +VN2020_492,Cindy Ulyatt,12/3/1992,67 Lotheville Hill,WEB +VN2020_493,Towny Pittendreigh,7/6/1981,1080 Waywood Lane,QA +VN2020_494,Loren Rowlson,30/01/1988,160 Tomscot Road,WEB +VN2020_495,Augustine Jertz,20/08/1982,129 Caliangt Lane,SYSTEM +VN2020_496,Jehanna Mavin,6/6/1984,81 Linden Crossing,WEB +VN2020_497,Jacquenette Pindred,8/6/1981,51083 Summerview Circle,ADMIN +VN2020_498,Jolie Carradice,10/8/1996,10 Lotheville Street,WEB +VN2020_499,Artemas Vivian,29/07/1998,3616 Cambridge Court,WEB +VN2020_500,Dame Gall,19/11/1982,46828 Canary Avenue,QA +VN2020_501,Eliot Abramzon,12/5/1993,0312 Northland Lane,WEB +VN2020_502,Meredith Adie,5/7/1993,62222 Mariners Cove Avenue,WEB +VN2020_503,Wadsworth Yuranovev,18/06/1992,5 Charing Cross Hill,SYSTEM +VN2020_504,Giffie Luckie,15/09/1985,85892 Miller Way,QA +VN2020_505,Cheryl Florez,30/07/1998,32 Merrick Pass,QA +VN2020_506,Bernhard Pidcock,24/08/1991,11 Judy Road,SYSTEM +VN2020_507,Conroy Jeffree,14/01/1982,6 Union Trail,WEB +VN2020_508,Daniela Uttridge,5/5/1984,508 Mallory Point,WEB +VN2020_509,Loralie Cuchey,3/8/1992,3634 Lyons Road,QA +VN2020_510,Ronny Boissier,18/01/1998,38 Bobwhite Drive,WEB +VN2020_511,Fabiano Collen,30/03/1988,763 Kinsman Trail,ADMIN +VN2020_512,Barbie Hobbema,11/10/1985,8 Roth Drive,SYSTEM +VN2020_513,Gabrielle Mesant,3/2/1992,84 7th Point,SYSTEM +VN2020_514,Ravi Seeman,13/01/1986,26 Fallview Parkway,WEB +VN2020_515,Artemas Cadwell,10/5/1987,32730 Schurz Pass,QA +VN2020_516,Anastasia Meeke,1/1/1996,36 Kingsford Road,SYSTEM +VN2020_517,Clayborne Apfler,27/09/1998,23650 Nancy Street,MOBILE +VN2020_518,Ernestine De la Zenne,21/01/1986,20304 Farmco Circle,MOBILE +VN2020_519,Deina Brookhouse,4/7/1987,816 Manley Place,SYSTEM +VN2020_520,Kittie Dudman,29/01/1994,2 Rieder Way,QA +VN2020_521,Carter Crayton,7/9/1998,1584 Glacier Hill Trail,WEB +VN2020_522,Joaquin Welden,9/10/1992,9 Clemons Crossing,SYSTEM +VN2020_523,Mayne Yusupov,14/08/1982,21240 Linden Junction,ADMIN +VN2020_524,Falkner Jagger,9/12/1990,475 Emmet Alley,MOBILE +VN2020_525,Ronnie Whewill,18/10/1986,4 Dorton Plaza,ADMIN +VN2020_526,Arv Lynam,18/06/1988,00 Service Junction,QA +VN2020_527,Danit Stidever,28/07/1997,38 Mifflin Trail,QA +VN2020_528,Iolanthe Iohananof,1/5/1995,0550 Almo Trail,SYSTEM +VN2020_529,Rosemonde Iacovaccio,3/1/1982,3 Annamark Drive,SYSTEM +VN2020_530,Quentin Targett,30/10/1986,1 Main Place,MOBILE +VN2020_531,Gal Willwood,15/02/1995,338 Welch Crossing,QA +VN2020_532,Tanya Von Der Empten,15/09/1980,6037 Lotheville Plaza,WEB +VN2020_533,Randolf Grewcock,24/11/1984,9306 Fairfield Hill,QA +VN2020_534,Radcliffe Tissiman,11/11/1991,571 Crownhardt Trail,MOBILE +VN2020_535,Arabel Steckings,9/6/1998,84 Sunnyside Point,QA +VN2020_536,Belle Collie,13/09/1998,408 Del Sol Trail,SYSTEM +VN2020_537,Etti Geerling,31/05/1981,9 Linden Hill,WEB +VN2020_538,Dolores Grose,13/04/1986,470 Maywood Lane,ADMIN +VN2020_539,Randa Dowdam,30/12/1980,8956 Kennedy Court,QA +VN2020_540,Ebony Wackley,10/12/1996,67986 Chive Trail,QA +VN2020_541,Kayla Grunwall,14/03/1981,7876 Manitowish Lane,MOBILE +VN2020_542,Marylin Willbraham,17/08/1989,2 Brickson Park Junction,WEB +VN2020_543,Ossie Rassmann,29/07/1995,46 Comanche Junction,SYSTEM +VN2020_544,Dorolice Unstead,28/06/1980,1 Butterfield Point,WEB +VN2020_545,Pearle Hambling,30/12/1991,59 Norway Maple Point,ADMIN +VN2020_546,Carly Brown,2/4/1986,1 Sage Trail,ADMIN +VN2020_547,Jemimah Culham,12/12/1987,410 Kings Junction,MOBILE +VN2020_548,Webb Pickrill,10/8/1986,79 Dakota Street,WEB +VN2020_549,Orella Ohrtmann,12/2/1996,684 Kenwood Lane,QA +VN2020_550,Kermit Hebner,24/09/1985,68 Farragut Junction,MOBILE +VN2020_551,Delores Thomke,6/4/1983,72 Summer Ridge Pass,QA +VN2020_552,Allie Ethelstone,3/11/1998,25 Raven Crossing,WEB +VN2020_553,Bili Slides,23/02/1998,1 Maple Street,WEB +VN2020_554,Bebe Purdie,10/4/1999,8306 Garrison Road,WEB +VN2020_555,Alyson Coey,15/04/1981,9135 Derek Road,SYSTEM +VN2020_556,Flor Fantonetti,12/5/1994,0488 Magdeline Avenue,WEB +VN2020_557,Andrea Behnecke,15/02/1997,3 Texas Street,ADMIN +VN2020_558,Hewet Wrout,17/12/1992,0 Summerview Crossing,WEB +VN2020_559,Jacob Tschirschky,24/07/1995,868 Forster Street,SYSTEM +VN2020_560,Cyril Labbe,29/09/1996,5597 Tennyson Court,ADMIN +VN2020_561,Somerset Huffa,16/06/1994,12 Merry Street,QA +VN2020_562,Jarid Gaskell,14/03/1983,71 Jana Way,ADMIN +VN2020_563,Drew Humblestone,24/02/1993,84 Melby Trail,QA +VN2020_564,Vernen Wilkie,4/4/1994,25084 Main Place,QA +VN2020_565,Kirbie Lazell,1/1/1994,360 Merry Alley,MOBILE +VN2020_566,Brewster Kwietak,5/11/1990,882 Arapahoe Park,MOBILE +VN2020_567,Kacie Caney,4/3/1980,4158 Hagan Alley,SYSTEM +VN2020_568,Drake Allaway,15/06/1986,77 Sundown Street,SYSTEM +VN2020_569,Leopold Bautiste,7/11/1999,98445 Pierstorff Pass,SYSTEM +VN2020_570,Gerti Fretwell,12/6/1989,7843 Kennedy Parkway,SYSTEM +VN2020_571,Dwain Purches,2/8/1980,90824 Brentwood Street,SYSTEM +VN2020_572,Elisa Coopper,8/2/1988,4 John Wall Point,QA +VN2020_573,Dorthea Toomey,23/04/1998,152 Red Cloud Point,WEB +VN2020_574,Annaliese Baugh,26/02/1989,51857 Boyd Point,WEB +VN2020_575,Ashlie Horry,4/10/1982,6322 International Trail,SYSTEM +VN2020_576,Martita Grigore,16/05/1991,520 Macpherson Court,ADMIN +VN2020_577,Larry Dehmel,30/08/1982,17545 Mallard Lane,MOBILE +VN2020_578,Carmella Rollingson,6/11/1993,929 Bonner Parkway,WEB +VN2020_579,Maxim Duffrie,11/4/1995,2164 Red Cloud Circle,QA +VN2020_580,Zilvia Skahill,30/05/1983,253 Washington Circle,QA +VN2020_581,Casandra Esel,29/02/1980,5941 Washington Terrace,SYSTEM +VN2020_582,Bibby Petrozzi,26/12/1990,0 Talmadge Pass,WEB +VN2020_583,Marcos Swanborough,28/04/1987,833 Starling Center,ADMIN +VN2020_584,Shaw Klishin,5/11/1990,864 Merchant Drive,MOBILE +VN2020_585,Cathie Yoodall,10/10/1980,2584 Prairieview Park,MOBILE +VN2020_586,Sharleen Addinall,19/09/1980,29 Florence Hill,SYSTEM +VN2020_587,Sharleen Grellis,27/02/1999,0 Bobwhite Center,QA +VN2020_588,Arlen Jedrzejewski,27/09/1993,2 Arizona Center,MOBILE +VN2020_589,Livvie Catenot,5/7/1992,40 Blue Bill Park Avenue,WEB +VN2020_590,Dominick Saker,14/09/1994,3 Spohn Alley,ADMIN +VN2020_591,Cirstoforo Wooldridge,12/9/1997,35 Cambridge Center,QA +VN2020_592,Gladi Caines,7/3/1982,63259 Graceland Parkway,WEB +VN2020_593,Eddie Andrioletti,26/10/1996,7349 Birchwood Court,QA +VN2020_594,Susanna Farge,18/01/1999,06070 Stuart Point,SYSTEM +VN2020_595,Sergeant Snoday,4/12/1988,32678 Tennyson Street,MOBILE +VN2020_596,Ruthanne Hargreaves,19/02/1986,6751 Shoshone Circle,WEB +VN2020_597,Kiri Beccero,11/5/1996,124 Judy Pass,WEB +VN2020_598,Lamont Pargeter,30/01/1995,0425 Park Meadow Way,WEB +VN2020_599,Adan Clarey,14/11/1987,68199 Corry Way,MOBILE +VN2020_600,Gabriele O'Kennavain,25/03/1988,65 Melrose Road,QA +VN2020_601,Darb Rawood,14/06/1994,7656 Lotheville Crossing,MOBILE +VN2020_602,Eliza Musicka,22/11/1981,60995 Kipling Street,MOBILE +VN2020_603,Willis Pennicott,22/08/1988,4249 Red Cloud Parkway,MOBILE +VN2020_604,Kellina Scardifield,8/12/1992,57363 Muir Place,WEB +VN2020_605,Caron Witherup,22/01/1985,8054 Morrow Avenue,MOBILE +VN2020_606,Ida McGiveen,23/09/1996,54 West Hill,MOBILE +VN2020_607,Zara Magenny,2/10/1999,7720 Crownhardt Alley,MOBILE +VN2020_608,Christoforo Huyge,27/11/1996,9 Prairie Rose Point,WEB +VN2020_609,Harlen Kacheler,15/08/1983,46798 Daystar Alley,WEB +VN2020_610,Salome Coneybeare,10/3/1982,75690 Lakewood Gardens Place,QA +VN2020_611,Ebonee Wontner,22/04/1984,89 Esker Street,MOBILE +VN2020_612,Gerardo Eleshenar,21/10/1997,551 Crescent Oaks Street,QA +VN2020_613,Lyndsay Echallie,23/02/1985,072 Lien Court,QA +VN2020_614,Harriet O'Lochan,3/7/1985,53 Rieder Hill,ADMIN +VN2020_615,Mace Mary,21/08/1982,0 Bluestem Plaza,MOBILE +VN2020_616,Rice Lezemere,17/10/1987,435 Sheridan Crossing,QA +VN2020_617,Cordell McKerron,19/03/1994,10283 Forest Run Way,WEB +VN2020_618,Artie Dallimore,10/1/1993,74 Manitowish Crossing,WEB +VN2020_619,Hildegarde Chainey,16/04/1995,66 Sugar Park,MOBILE +VN2020_620,Aldus Wisniewski,28/01/1987,302 8th Junction,ADMIN +VN2020_621,Latisha Sturgess,21/12/1982,8 Sloan Trail,WEB +VN2020_622,Caterina Oattes,6/5/1992,994 Burning Wood Point,WEB +VN2020_623,Jere Gye,18/11/1987,3 Blue Bill Park Point,WEB +VN2020_624,Starlin Paton,25/03/1985,244 Spaight Avenue,WEB +VN2020_625,Ash Fossick,18/11/1987,974 Becker Way,WEB +VN2020_626,Dorolice Ellingford,20/09/1991,460 Corscot Street,QA +VN2020_627,Joli Boor,9/8/1991,17333 Lien Trail,ADMIN +VN2020_628,Germaine Sneaker,26/01/1983,1 Southridge Plaza,SYSTEM +VN2020_629,Brittney Dunbabin,3/10/1992,66 Larry Parkway,MOBILE +VN2020_630,Hadlee Ludgate,6/5/1997,9078 Graedel Center,SYSTEM +VN2020_631,Chaim Allison,16/03/1986,1 Daystar Drive,MOBILE +VN2020_632,Corette Housiaux,5/11/1987,890 Di Loreto Junction,QA +VN2020_633,Ralph Martineau,10/11/1985,41 Pennsylvania Pass,MOBILE +VN2020_634,Charlot Merman,21/07/1985,6640 Melody Hill,WEB +VN2020_635,Gilberta Pippin,29/03/1980,48027 Clove Point,WEB +VN2020_636,Tomas O'Luby,17/02/1994,4974 Granby Crossing,WEB +VN2020_637,Jonah Kaplin,9/6/1987,73 Morningstar Road,ADMIN +VN2020_638,Yvor Kennifick,28/06/1997,8 Vera Junction,WEB +VN2020_639,Rebe Blizard,26/09/1984,002 Pankratz Plaza,QA +VN2020_640,Clarinda Rosindill,1/12/1994,890 Sachs Trail,WEB +VN2020_641,Merrill Berrow,12/6/1989,09727 Orin Terrace,QA +VN2020_642,Augustina Drivers,1/11/1995,62 Luster Parkway,SYSTEM +VN2020_643,Berna Cazalet,15/09/1983,79061 Golf View Park,WEB +VN2020_644,Lissi Bediss,28/01/1997,130 Claremont Drive,SYSTEM +VN2020_645,Anatollo Reneke,29/11/1983,3894 Maywood Crossing,WEB +VN2020_646,Lotty Angus,14/08/1992,0420 Melby Avenue,WEB +VN2020_647,Gwyn McCalum,19/02/1998,82 Vera Trail,SYSTEM +VN2020_648,Essie Gencke,9/9/1993,08060 Sheridan Drive,WEB +VN2020_649,Marti Tatlock,12/12/1987,36772 Orin Hill,WEB +VN2020_650,Kerr Bannester,24/12/1999,47 Helena Point,MOBILE +VN2020_651,Franky Bowcock,8/8/1989,71643 Knutson Circle,WEB +VN2020_652,Radcliffe Murra,29/08/1981,5682 Warrior Lane,SYSTEM +VN2020_653,Mimi Phippin,10/11/1997,030 Southridge Drive,QA +VN2020_654,Neill Semerad,27/03/1985,6569 Mendota Court,WEB +VN2020_655,Cherry Larrad,10/5/1991,35352 Kipling Alley,SYSTEM +VN2020_656,Fabien Axtonne,14/12/1991,032 Spaight Way,QA +VN2020_657,Vidovik Harrowing,15/03/1992,5 Nova Crossing,MOBILE +VN2020_658,Nicol Reitenbach,29/11/1996,595 Corben Trail,WEB +VN2020_659,Reginauld Nadin,27/09/1980,8 Pawling Parkway,SYSTEM +VN2020_660,Redford Batts,30/12/1981,46141 Doe Crossing Pass,MOBILE +VN2020_661,Erma Sancraft,23/03/1987,39285 Garrison Trail,ADMIN +VN2020_662,Mohandis Lovelace,11/2/1990,213 Eggendart Pass,WEB +VN2020_663,Dulciana Guntrip,12/2/1982,625 Forest Dale Terrace,MOBILE +VN2020_664,Pearline Ellinor,23/08/1993,15 Kennedy Court,WEB +VN2020_665,Adorne Grainger,16/12/1980,56091 Jay Lane,QA +VN2020_666,Aileen McDougle,4/6/1989,09432 Quincy Trail,ADMIN +VN2020_667,Blondell Bottinelli,12/2/1996,20320 Hermina Pass,WEB +VN2020_668,Isabel Jarmain,14/12/1981,1112 Rockefeller Trail,MOBILE +VN2020_669,Sheena Pellew,31/12/1994,37 Summerview Plaza,WEB +VN2020_670,Seumas Mularkey,6/3/1990,6 Annamark Terrace,MOBILE +VN2020_671,Georgena Liversley,10/2/1982,66431 Fremont Crossing,WEB +VN2020_672,Ellen Vairow,27/09/1988,4712 High Crossing Alley,SYSTEM +VN2020_673,Kerk Mulroy,4/8/1983,105 Dawn Junction,QA +VN2020_674,Alexis Raxworthy,18/09/1999,3 Paget Drive,QA +VN2020_675,Holmes Ding,23/02/1989,76752 Welch Point,ADMIN +VN2020_676,Tamra Paul,11/2/1992,3596 Linden Drive,WEB +VN2020_677,Rosamond Pocklington,17/02/1998,6 Eggendart Pass,QA +VN2020_678,Jack Bruck,22/12/1982,48 Utah Avenue,WEB +VN2020_679,Nicola Cisar,28/10/1992,541 Pankratz Avenue,ADMIN +VN2020_680,Boyce Fateley,10/7/1995,293 Sauthoff Crossing,QA +VN2020_681,Niles Scamadine,8/6/1995,57123 Shoshone Court,WEB +VN2020_682,Sayers Probetts,17/06/1988,7063 Old Gate Pass,WEB +VN2020_683,Theo Goodbur,15/08/1984,51 Sherman Plaza,WEB +VN2020_684,Jobye Surgood,8/11/1980,3308 Hoard Park,WEB +VN2020_685,Clarabelle Martinat,18/03/1984,15419 Mandrake Circle,WEB +VN2020_686,Enrico Northrop,17/06/1980,45 Hooker Plaza,ADMIN +VN2020_687,Dov Hewins,18/04/1997,2346 Knutson Crossing,WEB +VN2020_688,Raul Wykey,26/01/1997,54 Jay Terrace,SYSTEM +VN2020_689,Mallory Spat,10/7/1997,54 Summerview Terrace,QA +VN2020_690,Peg Toseland,4/9/1996,7 Thackeray Center,WEB +VN2020_691,Bunnie Dorow,29/10/1988,7024 Kingsford Pass,QA +VN2020_692,Tracie Straughan,3/3/1984,7792 Grayhawk Lane,WEB +VN2020_693,Claudian Turle,3/12/1983,3694 Granby Plaza,QA +VN2020_694,Morgan Sunner,2/1/1994,5114 Hazelcrest Crossing,MOBILE +VN2020_695,Gene Jagiela,3/3/1986,4 Cody Pass,ADMIN +VN2020_696,Carey Hurch,7/12/1980,20 Onsgard Lane,WEB +VN2020_697,Jamison Dingate,20/01/1981,0 Mifflin Street,WEB +VN2020_698,Gisela Titley,27/05/1994,4 Menomonie Hill,MOBILE +VN2020_699,Vera Rosenfield,7/11/1983,95 Paget Place,ADMIN +VN2020_700,Brande Tester,11/10/1991,98745 Jenifer Point,SYSTEM +VN2020_701,Bibi Gammon,7/7/1990,13 Grayhawk Place,QA +VN2020_702,Carmencita Paszek,27/11/1999,145 Nelson Crossing,WEB +VN2020_703,Gertrud Gianolini,29/03/1988,9 Buhler Road,QA +VN2020_704,Ruprecht Jumonet,27/09/1980,97 Veith Plaza,MOBILE +VN2020_705,Gunilla Mawford,30/05/1987,28421 Del Sol Center,QA +VN2020_706,Lotty Margrett,9/7/1990,7460 Merry Crossing,MOBILE +VN2020_707,Lemmie Kezar,24/06/1982,4997 Raven Way,MOBILE +VN2020_708,Rebeka Tointon,10/7/1994,403 Darwin Plaza,ADMIN +VN2020_709,Jabez Mapis,21/09/1995,1 Eagan Way,MOBILE +VN2020_710,Fairlie Caunt,29/09/1986,4016 Clarendon Hill,MOBILE +VN2020_711,Perl Tott,2/6/1994,6 Melby Lane,MOBILE +VN2020_712,Nicolas Eckert,17/03/1996,409 Dwight Terrace,WEB +VN2020_713,Tierney Doberer,24/05/1990,6654 Bunting Way,WEB +VN2020_714,Yardley Dunmuir,14/10/1999,6416 Ramsey Lane,WEB +VN2020_715,Savina Ysson,25/09/1996,5 Mandrake Court,MOBILE +VN2020_716,Cyrillus Allsopp,17/08/1995,3 Monica Way,QA +VN2020_717,Christiano Vize,19/12/1982,9865 Union Road,MOBILE +VN2020_718,Eric Kleeborn,23/06/1997,31555 Fremont Crossing,MOBILE +VN2020_719,Merrill Callington,4/6/1989,2 Hansons Point,QA +VN2020_720,Emory Espadater,6/7/1995,7 Basil Pass,WEB +VN2020_721,Tiff Blissett,15/09/1995,56343 Spenser Hill,ADMIN +VN2020_722,Dawn Ivanikhin,29/11/1993,927 Hayes Junction,WEB +VN2020_723,Urbain Luxford,24/06/1984,39987 Sutherland Trail,MOBILE +VN2020_724,Jaquelyn Cromleholme,8/12/1986,95116 Oneill Center,ADMIN +VN2020_725,Alexandra Metcalfe,11/9/1996,2 Forest Dale Crossing,SYSTEM +VN2020_726,Blanca Schenfisch,28/10/1988,24278 Wayridge Park,MOBILE +VN2020_727,Nicolais Jeyness,9/9/1996,5836 Vernon Pass,MOBILE +VN2020_728,Pieter Risen,26/11/1996,9 Moose Terrace,QA +VN2020_729,Ambros Baumford,17/05/1996,7 Declaration Circle,QA +VN2020_730,Darnall Canedo,22/10/1989,118 Leroy Court,WEB +VN2020_731,Zollie Barnby,9/1/1991,2 Sunfield Place,QA +VN2020_732,Selia Curnok,7/5/1986,3868 Chinook Junction,WEB +VN2020_733,Ronica Giorgeschi,12/10/1984,8059 Longview Hill,SYSTEM +VN2020_734,Dav Sharnock,18/09/1983,2 Lukken Pass,MOBILE +VN2020_735,Rock Server,21/03/1991,6 Mosinee Way,QA +VN2020_736,Brocky Purviss,8/9/1989,9 Muir Hill,ADMIN +VN2020_737,Alberto Basham,10/2/1997,8879 Mcbride Place,WEB +VN2020_738,Roderigo Gillis,5/3/1980,02986 American Hill,SYSTEM +VN2020_739,Carolus Kundt,15/07/1993,192 Sutteridge Junction,SYSTEM +VN2020_740,Obidiah Cornall,9/4/1981,967 Montana Hill,QA +VN2020_741,Meier Haverty,22/02/1985,29 Waubesa Trail,ADMIN +VN2020_742,Amabelle Genner,14/06/1992,95040 Monument Plaza,SYSTEM +VN2020_743,Coreen Maycock,6/10/1997,149 Moulton Terrace,QA +VN2020_744,Kial Brotherhead,27/03/1984,01 Forest Run Parkway,MOBILE +VN2020_745,Kimmie Monkeman,2/11/1985,406 Helena Place,MOBILE +VN2020_746,Brennan Naul,18/04/1996,19568 Meadow Ridge Way,MOBILE +VN2020_747,Raynor Finker,8/8/1991,20 Aberg Parkway,ADMIN +VN2020_748,Lacy Schriren,23/01/1983,000 Kingsford Street,MOBILE +VN2020_749,Clarabelle Suddock,5/8/1987,115 Moland Terrace,QA +VN2020_750,Vassili Crossdale,25/09/1983,4 Lighthouse Bay Center,MOBILE +VN2020_751,Gretta Watkiss,16/05/1994,721 Starling Court,WEB +VN2020_752,Allyson Anster,13/01/1994,354 Haas Crossing,SYSTEM +VN2020_753,Shawna Rix,22/07/1980,6328 Londonderry Crossing,MOBILE +VN2020_754,Bendite Heistermann,12/1/1983,095 Truax Crossing,SYSTEM +VN2020_755,Kain Desantis,14/06/1990,6 Eggendart Center,SYSTEM +VN2020_756,Tomas Bortolomei,5/11/1998,8580 Spaight Point,SYSTEM +VN2020_757,Waylon Jekyll,5/2/1992,91 Golf Course Trail,WEB +VN2020_758,Willabella Durrand,20/10/1997,184 Melby Parkway,QA +VN2020_759,Pavia Marmion,22/05/1988,276 Northwestern Road,WEB +VN2020_760,Lorettalorna Chasles,5/10/1983,9557 Sommers Junction,QA +VN2020_761,Chev Ghidotti,23/12/1987,774 Eggendart Avenue,WEB +VN2020_762,Marieann Kaemena,24/11/1985,83988 La Follette Pass,ADMIN +VN2020_763,Angele Geaves,12/10/1997,13774 David Lane,QA +VN2020_764,Eduardo De la Yglesias,10/8/1989,40 Oxford Plaza,SYSTEM +VN2020_765,Sissy Sotheby,21/07/1981,5 Gale Court,SYSTEM +VN2020_766,Licha Curwood,6/9/1981,1 Del Mar Trail,WEB +VN2020_767,Timmy Bonnet,26/08/1982,197 Dexter Avenue,WEB +VN2020_768,Val Khomich,19/02/1980,38 Mallory Street,SYSTEM +VN2020_769,Orlando Pinchon,24/02/1991,0 Evergreen Trail,ADMIN +VN2020_770,Park Saffon,30/05/1991,963 Moulton Point,ADMIN +VN2020_771,Veriee Townsend,8/10/1988,15663 Gateway Drive,WEB +VN2020_772,Minnie Hallor,16/12/1993,10 Lunder Center,WEB +VN2020_773,Minda Seden,27/02/1984,9 Dixon Crossing,WEB +VN2020_774,Jedediah Rossbrook,3/6/1983,32 Ohio Lane,QA +VN2020_775,Clem Olenichev,27/01/1993,48741 Barnett Hill,MOBILE +VN2020_776,Gibby O'Lyhane,29/07/1999,374 Mallory Place,MOBILE +VN2020_777,Douglas Bellison,4/10/1988,82 Hansons Place,WEB +VN2020_778,Sutherland Kemell,5/9/1986,45748 8th Place,QA +VN2020_779,Brenna Cossey,11/8/1982,89496 Florence Pass,MOBILE +VN2020_780,Kalina Ream,2/11/1983,2 Manufacturers Drive,QA +VN2020_781,Rodge Baitson,12/5/1996,83 5th Pass,MOBILE +VN2020_782,Gus Petyankin,29/03/1988,46950 Hooker Court,SYSTEM +VN2020_783,Delia Shevlane,31/12/1985,0217 Gale Center,WEB +VN2020_784,Rickard Findlow,1/9/1981,6939 Fieldstone Trail,WEB +VN2020_785,Violetta Baudichon,7/12/1989,9 Golden Leaf Street,SYSTEM +VN2020_786,Kayla Schankel,23/06/1995,31548 Maryland Drive,WEB +VN2020_787,Benji Krzysztofiak,30/06/1985,4 Forster Circle,MOBILE +VN2020_788,Hedy Royl,3/7/1991,875 Nobel Park,MOBILE +VN2020_789,Vassily Stace,21/04/1984,18 Forest Run Terrace,QA +VN2020_790,Faulkner Terrington,10/2/1987,88700 Mandrake Center,SYSTEM +VN2020_791,Isak Polsin,19/10/1987,890 Mallory Junction,WEB +VN2020_792,Ana Stanbury,3/5/1997,11562 Delladonna Crossing,QA +VN2020_793,Charmine Bolley,11/8/1984,11594 Johnson Trail,WEB +VN2020_794,Land Dillinger,15/08/1990,8 Marcy Place,WEB +VN2020_795,Cami Stelle,17/05/1990,85286 Mcguire Center,MOBILE +VN2020_796,Dot Rogge,7/4/1985,58006 Southridge Avenue,QA +VN2020_797,Hardy Westoff,30/07/1996,40 Mallory Park,WEB +VN2020_798,Cahra Adshead,1/2/1990,1 Logan Point,WEB +VN2020_799,Bronson Bedlington,4/9/1987,7 Springview Center,MOBILE +VN2020_800,Kellia Dumblton,27/01/1998,9 Kropf Pass,WEB +VN2020_801,Nickie Josefovic,22/12/1993,06191 Claremont Avenue,MOBILE +VN2020_802,Pegeen Wainman,4/6/1994,4761 Manley Pass,QA +VN2020_803,Nikki McEllen,8/11/1987,07834 Sycamore Lane,QA +VN2020_804,Kennedy Hulatt,16/06/1980,20989 Hintze Pass,MOBILE +VN2020_805,Westleigh Santacrole,15/12/1997,58333 Mcbride Pass,WEB +VN2020_806,Herta Loddon,25/10/1997,834 East Parkway,QA +VN2020_807,Pattie McPhee,1/8/1997,01 Stone Corner Street,MOBILE +VN2020_808,Krysta Knowler,28/05/1982,71053 Carberry Junction,MOBILE +VN2020_809,Rey Bareford,26/12/1999,82 Garrison Circle,MOBILE +VN2020_810,Wendall Georgiev,6/4/1990,889 Park Meadow Lane,SYSTEM +VN2020_811,Arabel Kenion,23/10/1994,09 Riverside Way,MOBILE +VN2020_812,Raven Ketcher,8/8/1986,94078 Armistice Circle,SYSTEM +VN2020_813,Ketty Cavilla,10/4/1982,4421 Ohio Avenue,SYSTEM +VN2020_814,Inna Southgate,17/01/1996,451 Milwaukee Terrace,MOBILE +VN2020_815,Marcello Phalp,8/4/1988,40848 Bellgrove Circle,SYSTEM +VN2020_816,Rockwell Benet,3/6/1995,1 Ridge Oak Park,SYSTEM +VN2020_817,Bevan Dahle,7/8/1985,88 Hanover Circle,QA +VN2020_818,Kermy Scole,5/11/1987,695 Cambridge Terrace,MOBILE +VN2020_819,Bonny Deeks,13/04/1992,2 Johnson Hill,WEB +VN2020_820,Veradis Kettel,15/11/1996,62299 Dunning Trail,QA +VN2020_821,Kalli Merali,21/08/1982,3 Larry Hill,MOBILE +VN2020_822,Dore Gerritzen,8/7/1989,644 Mitchell Park,MOBILE +VN2020_823,Chickie Streetley,3/10/1983,2 Becker Parkway,ADMIN +VN2020_824,Isaiah Kroin,4/8/1994,24125 Clove Park,QA +VN2020_825,Ali Pearcey,31/12/1998,6 Steensland Circle,WEB +VN2020_826,Delmar Lammerich,6/7/1981,597 Cardinal Center,WEB +VN2020_827,Tarrah Gammett,5/7/1981,22321 4th Way,MOBILE +VN2020_828,Catriona Wilkes,15/07/1992,74 Macpherson Crossing,ADMIN +VN2020_829,Rhetta Robecon,3/10/1986,77 Mariners Cove Point,SYSTEM +VN2020_830,Bill Balsdone,30/11/1992,9 Paget Park,QA +VN2020_831,Cristian Chester,29/07/1989,5 International Crossing,SYSTEM +VN2020_832,Mariellen Hounsome,16/11/1989,14 Caliangt Circle,WEB +VN2020_833,Marcie Clyne,7/8/1980,90075 Manley Drive,MOBILE +VN2020_834,Palm Darthe,11/11/1999,93 Fallview Avenue,WEB +VN2020_835,Dorian Joel,2/9/1999,5 Cardinal Center,MOBILE +VN2020_836,Yovonnda Scherer,5/10/1981,0826 Reindahl Lane,SYSTEM +VN2020_837,Marshal Dorow,8/8/1994,89248 Dennis Crossing,QA +VN2020_838,Arliene Cauldwell,23/08/1982,50 Kedzie Parkway,MOBILE +VN2020_839,Cleopatra Krzyzaniak,23/10/1991,38979 Maryland Point,ADMIN +VN2020_840,Bobbie Gabbett,2/6/1995,464 Lerdahl Point,MOBILE +VN2020_841,Elwira Fendley,1/1/1999,79 Superior Point,MOBILE +VN2020_842,Bord Frankel,6/1/1998,805 Clemons Trail,WEB +VN2020_843,Prudy Preshous,18/03/1997,918 Northport Plaza,SYSTEM +VN2020_844,Ruperto Piddick,9/7/1993,3 Kim Parkway,ADMIN +VN2020_845,Bendicty Knewstub,8/4/1985,02 Bonner Avenue,WEB +VN2020_846,Tatiana Stickens,8/11/1986,00163 Judy Park,MOBILE +VN2020_847,Neila Denley,12/8/1995,01283 Lillian Drive,SYSTEM +VN2020_848,Kerianne Madigan,19/01/1986,543 Forest Dale Park,WEB +VN2020_849,Clemens Impett,17/08/1987,13 Packers Alley,WEB +VN2020_850,Myranda Wellings,1/4/1997,4010 Garrison Lane,MOBILE +VN2020_851,Harmon Noad,15/10/1993,8 Utah Avenue,WEB +VN2020_852,Dyann Dumphry,28/02/1999,64 West Court,WEB +VN2020_853,Nina Emblen,8/6/1988,4534 Moulton Avenue,QA +VN2020_854,Vivia Holstein,27/01/1988,04 Farwell Park,MOBILE +VN2020_855,Gertie Hollow,18/09/1981,6553 Superior Place,SYSTEM +VN2020_856,Melisande Tomovic,30/05/1999,1393 Hauk Avenue,MOBILE +VN2020_857,Caralie Middiff,9/2/1992,161 Elgar Center,MOBILE +VN2020_858,Tamma Toynbee,28/08/1990,79936 Dexter Terrace,QA +VN2020_859,Lenette Hawksley,15/04/1989,54455 Maywood Circle,SYSTEM +VN2020_860,Claudius Kosiada,10/8/1999,70876 Grover Lane,SYSTEM +VN2020_861,Arden Hadley,10/3/1982,84 Talmadge Lane,MOBILE +VN2020_862,Tirrell Giblin,16/04/1980,265 Alpine Parkway,MOBILE +VN2020_863,Oriana Habin,24/08/1994,57 Northridge Hill,MOBILE +VN2020_864,Cedric Alliberton,15/05/1987,0 Magdeline Center,MOBILE +VN2020_865,Ambrosi Minton,22/10/1997,3700 Lake View Park,QA +VN2020_866,Ive Fellini,16/12/1982,418 Colorado Alley,WEB +VN2020_867,Charlie Worswick,26/10/1994,23874 Mendota Court,SYSTEM +VN2020_868,Carree Gaffer,22/08/1993,0 Hazelcrest Point,ADMIN +VN2020_869,Lilah Brandel,11/6/1986,19 Fordem Center,ADMIN +VN2020_870,Jenny Jurzyk,13/12/1997,178 Anthes Center,MOBILE +VN2020_871,Myrwyn Abella,3/9/1988,92722 Main Lane,MOBILE +VN2020_872,Kip Sagerson,28/05/1993,4145 Stone Corner Road,WEB +VN2020_873,Hester Antowski,1/2/1985,5538 Morning Street,SYSTEM +VN2020_874,Daryl Pheasant,3/5/1982,05 Golf View Street,WEB +VN2020_875,Fleurette Demangel,17/12/1991,9 Manley Terrace,QA +VN2020_876,Wit McFaul,11/11/1997,3597 Caliangt Place,MOBILE +VN2020_877,Smith Thomasen,13/05/1988,036 Forest Drive,SYSTEM +VN2020_878,Ezekiel Orme,7/11/1989,6220 East Drive,SYSTEM +VN2020_879,Marshall Larchier,11/2/1993,66041 Morrow Plaza,SYSTEM +VN2020_880,Karlene Corcoran,21/02/1998,04502 Messerschmidt Parkway,WEB +VN2020_881,Bessy Harrill,8/1/1994,8 Forest Run Plaza,SYSTEM +VN2020_882,Mariele Mylchreest,7/7/1991,51 Sycamore Point,SYSTEM +VN2020_883,Fleming Copeman,17/12/1997,4 Erie Terrace,MOBILE +VN2020_884,Ingamar Creek,29/08/1980,11436 Butternut Hill,QA +VN2020_885,Binnie Moakes,16/06/1993,0718 Eggendart Junction,WEB +VN2020_886,Monro Scholar,2/11/1986,417 Melody Point,MOBILE +VN2020_887,Britt Crombie,11/4/1994,6249 Hauk Avenue,SYSTEM +VN2020_888,Leoline Ireson,21/06/1987,76 Gulseth Street,WEB +VN2020_889,Berty Gawen,7/11/1995,6 Linden Parkway,WEB +VN2020_890,Marissa Mosson,18/10/1990,379 Granby Lane,MOBILE +VN2020_891,Brennan Carragher,15/06/1987,428 David Drive,MOBILE +VN2020_892,Kaiser Radborne,17/09/1981,325 Pepper Wood Pass,MOBILE +VN2020_893,Eba Duchasteau,28/12/1998,9 Maple Terrace,QA +VN2020_894,Winona Kohn,24/10/1999,32287 Portage Street,WEB +VN2020_895,Killian Ochiltree,23/03/1982,508 Bellgrove Lane,WEB +VN2020_896,Damiano Martyns,5/6/1989,3855 Glendale Drive,QA +VN2020_897,Elaina Battersby,6/9/1981,25 Stone Corner Place,MOBILE +VN2020_898,Griff Fozzard,5/11/1997,470 Anhalt Plaza,MOBILE +VN2020_899,Agnella Ewart,5/3/1981,6881 Lighthouse Bay Center,WEB +VN2020_900,Tuesday Lambourne,10/6/1994,44295 Hauk Hill,QA +VN2020_901,Lizzie Monahan,6/2/1990,6 Graceland Center,WEB +VN2020_902,Melamie Van Salzberger,7/12/1994,06 Dexter Avenue,WEB +VN2020_903,Griff Toleman,4/8/1997,98 Talisman Lane,QA +VN2020_904,Jacky Baccup,7/8/1994,51 Prairieview Drive,QA +VN2020_905,Dorree Samwayes,23/11/1988,80 Autumn Leaf Circle,WEB +VN2020_906,Grazia Coronas,23/03/1980,66912 Meadow Vale Circle,WEB +VN2020_907,Rockwell Roskruge,18/02/1984,5053 Rieder Pass,QA +VN2020_908,Reeva Perri,14/02/1981,59742 Prairieview Trail,SYSTEM +VN2020_909,Anatollo Bradnocke,25/06/1999,5 Fallview Hill,WEB +VN2020_910,Carine Marquiss,13/02/1986,94755 Rowland Trail,QA +VN2020_911,Natividad Bennit,19/08/1991,80 Bunting Place,MOBILE +VN2020_912,Madalena Tiffney,19/02/1996,1 Village Circle,QA +VN2020_913,Saba Gallifont,19/01/1994,4528 Farmco Place,WEB +VN2020_914,Jervis Tickle,30/09/1998,13089 Oak Circle,QA +VN2020_915,Myriam Antao,16/08/1987,76 Valley Edge Circle,MOBILE +VN2020_916,Truman Pledge,3/3/1992,3190 Waywood Lane,WEB +VN2020_917,Merlina McCann,2/5/1984,80899 Roth Center,ADMIN +VN2020_918,Hugues Ivashov,30/12/1985,327 Swallow Road,SYSTEM +VN2020_919,Sauveur MacCartan,6/3/1982,9171 Vahlen Pass,WEB +VN2020_920,Marlene Fleckno,27/04/1992,6059 Dwight Court,MOBILE +VN2020_921,Katleen Barber,10/5/1980,6735 Armistice Point,MOBILE +VN2020_922,Barde Rands,16/01/1987,0 West Crossing,QA +VN2020_923,Herschel Karlowicz,22/05/1998,905 Warrior Place,MOBILE +VN2020_924,Jonathon Fitchell,16/10/1997,77581 Mcguire Road,QA +VN2020_925,Janene Maughan,27/01/1987,7 Kim Crossing,MOBILE +VN2020_926,Zilvia Grisard,28/06/1982,38520 Maywood Park,MOBILE +VN2020_927,Dav Bilyard,4/5/1992,720 Roth Center,WEB +VN2020_928,Roda Iacovides,7/1/1987,63675 Del Mar Plaza,WEB +VN2020_929,Pierce Deboo,24/08/1992,87495 Bayside Lane,SYSTEM +VN2020_930,Noak Seignior,24/12/1989,8463 Killdeer Drive,ADMIN +VN2020_931,Virginie Tunaclift,14/08/1994,8032 Hayes Terrace,ADMIN +VN2020_932,Amabel Gallant,9/3/1994,91881 Northfield Circle,ADMIN +VN2020_933,Gale Bortolomei,5/12/1986,36431 Homewood Pass,WEB +VN2020_934,Godwin Bygott,27/11/1988,233 Sunfield Circle,WEB +VN2020_935,Berna Gudd,17/09/1992,06 Northridge Circle,MOBILE +VN2020_936,Jemmy Jessep,29/06/1989,5 Fairview Circle,QA +VN2020_937,Ced Budgen,9/2/1981,5 Scofield Park,WEB +VN2020_938,Kipp Oylett,25/03/1990,87 Manley Drive,WEB +VN2020_939,Benn Chupin,16/10/1989,001 Pierstorff Way,WEB +VN2020_940,Chance Bartens,25/03/1997,0902 Kensington Court,QA +VN2020_941,Millard Tynemouth,13/08/1995,39 Prairieview Terrace,WEB +VN2020_942,Elise Fosse,15/04/1984,30 Dryden Trail,ADMIN +VN2020_943,Auroora Dodds,19/09/1994,6135 Arkansas Avenue,WEB +VN2020_944,Curcio Middlemist,23/05/1990,7 Sullivan Junction,MOBILE +VN2020_945,Mathilde Speer,17/11/1981,9 Morning Avenue,WEB +VN2020_946,Adena Mew,23/06/1983,7266 Fuller Alley,WEB +VN2020_947,Rhianon Shepheard,18/11/1987,49088 Merry Alley,QA +VN2020_948,Gloria Kix,18/12/1981,4 Valley Edge Crossing,MOBILE +VN2020_949,Mandie Stapells,2/4/1984,7845 Dunning Crossing,SYSTEM +VN2020_950,Jehanna Feavers,29/11/1993,328 Chinook Avenue,QA +VN2020_951,Susana Andrelli,26/08/1980,92 Daystar Alley,SYSTEM +VN2020_952,Currey McParlin,25/11/1997,17 Del Mar Pass,QA +VN2020_953,Ashton MacCroary,9/5/1983,225 Lakewood Hill,MOBILE +VN2020_954,Sax Starzaker,15/03/1993,1 Talmadge Way,QA +VN2020_955,Zak Pantry,7/6/1996,20 Randy Circle,QA +VN2020_956,Elissa Sapena,22/12/1987,42831 Talmadge Alley,QA +VN2020_957,Francesco Windrass,14/11/1986,01042 Independence Center,QA +VN2020_958,Regan Bourgour,3/8/1999,476 Sherman Court,MOBILE +VN2020_959,Althea Coombs,6/11/1997,2428 Texas Trail,QA +VN2020_960,Ammamaria Heersma,26/01/1997,2730 Clarendon Center,MOBILE +VN2020_961,Gilberte Cumes,19/07/1993,453 8th Lane,SYSTEM +VN2020_962,Richardo Bricham,15/09/1984,28366 Bowman Drive,MOBILE +VN2020_963,Chance Spours,21/06/1982,3337 Helena Trail,MOBILE +VN2020_964,Etti Farndon,21/12/1999,7 Acker Place,ADMIN +VN2020_965,Winne Ciciura,25/07/1994,36 Schlimgen Junction,ADMIN +VN2020_966,Dasha Chmiel,27/06/1996,456 Kings Parkway,WEB +VN2020_967,Jacquelin Salway,12/7/1995,6043 Roxbury Park,WEB +VN2020_968,Wrennie Sewell,17/09/1983,8489 Petterle Pass,SYSTEM +VN2020_969,Essy Owenson,16/06/1982,6 Texas Pass,QA +VN2020_970,Maribeth McGinnell,27/04/1985,620 Arapahoe Plaza,WEB +VN2020_971,Anet Cabral,28/08/1996,27077 Basil Center,MOBILE +VN2020_972,Melinde Taffie,22/01/1998,71 Armistice Circle,ADMIN +VN2020_973,Gray Van Der Weedenburg,1/2/1990,3 Bashford Alley,SYSTEM +VN2020_974,Dyane Iorizzi,18/04/1987,1 Kinsman Street,WEB +VN2020_975,Gretel Eltun,14/08/1984,6655 Gina Circle,ADMIN +VN2020_976,Kliment Baldoni,30/11/1987,1 Heffernan Lane,ADMIN +VN2020_977,Rosabelle Dottrell,7/1/1985,24 Clove Circle,SYSTEM +VN2020_978,Jed Neat,18/07/1988,6064 Kings Avenue,SYSTEM +VN2020_979,Warde Joselson,22/07/1982,366 Lyons Hill,SYSTEM +VN2020_980,Malachi Meys,2/12/1981,7 Acker Court,SYSTEM +VN2020_981,Lory Hawkins,30/08/1991,197 Prairieview Terrace,WEB +VN2020_982,Stinky Gurnell,12/3/1997,29 Bonner Park,ADMIN +VN2020_983,Uri Dorman,5/9/1993,631 Bobwhite Junction,WEB +VN2020_984,Valerye Baskwell,11/1/1985,416 Anderson Pass,QA +VN2020_985,Rip Itzkovsky,7/6/1989,2513 Red Cloud Street,QA +VN2020_986,Loretta Hopewell,24/11/1989,25091 Bluestem Way,MOBILE +VN2020_987,Oliy Summerley,13/02/1999,3670 Tomscot Terrace,QA +VN2020_988,Nikkie Vannar,30/06/1992,1 Fairview Park,QA +VN2020_989,Eachelle Dominey,3/4/1998,93390 Moulton Way,MOBILE +VN2020_990,Mallorie Kleinerman,30/08/1985,224 Fisk Avenue,SYSTEM +VN2020_991,Sheffield Penelli,26/12/1987,494 Marcy Parkway,WEB +VN2020_992,Tab Steffans,21/10/1989,947 Bunting Trail,SYSTEM +VN2020_993,Darell Huggard,11/6/1985,31308 Amoth Trail,QA +VN2020_994,Welbie Treen,5/9/1989,1414 Union Lane,WEB +VN2020_995,Nico Kraft,30/08/1998,779 Burrows Lane,WEB +VN2020_996,Fidelia Penhall,12/8/1993,3 Meadow Valley Center,ADMIN +VN2020_997,Alverta Kennedy,8/7/1990,8 Dawn Hill,MOBILE +VN2020_998,Galen Blagdon,29/08/1981,58622 Amoth Lane,ADMIN +VN2020_999,Tracie Simester,13/04/1982,808 Southridge Hill,MOBILE +VN2020_1000,Herold Davidesco,23/12/1986,76054 Sutteridge Center,ADMIN \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/model/Employee.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/model/Employee.java new file mode 100644 index 0000000..7119d84 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/model/Employee.java @@ -0,0 +1,50 @@ +package com.example.lecture_10.data.model; + +import java.io.Serializable; +import java.time.LocalDate; + +import org.hibernate.annotations.GenericGenerator; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import jakarta.validation.constraints.Email; +import jakarta.validation.constraints.NotEmpty; +import jakarta.validation.constraints.Pattern; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; + +@Getter +@Setter +@Entity +@NoArgsConstructor +@AllArgsConstructor +public class Employee implements Serializable { + + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(generator = "UUID", strategy = GenerationType.AUTO) + @GenericGenerator(name = "UUID", strategy = "org.hibernate.id.UUIDGenerator") + private String id; + + @NotEmpty(message = "Name is required") + private String name; + + private LocalDate dob; + + private String address; + + private String department; + + @Email(message = "Email should be valid") + @NotEmpty(message = "Email is required") + private String email; + + @Pattern(regexp = "^\\+62[0-9]{9,12}$", message = "Phone number should be valid and start with +62") + @NotEmpty(message = "Phone is required") + private String phone; +} diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/repository/EmployeeRepository.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/repository/EmployeeRepository.java new file mode 100644 index 0000000..ee0f778 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/data/repository/EmployeeRepository.java @@ -0,0 +1,17 @@ +package com.example.lecture_10.data.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import com.example.lecture_10.data.model.Employee; + +@Repository +public interface EmployeeRepository extends JpaRepository { + + @Query("SELECT e FROM Employee e WHERE e.department LIKE %:department%") + List findByDepartmentId(@Param("department") String department); +} \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/dto/EmployeeDTO.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/dto/EmployeeDTO.java new file mode 100644 index 0000000..638c648 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/dto/EmployeeDTO.java @@ -0,0 +1,16 @@ +package com.example.lecture_10.dto; + +import java.time.LocalDate; + +import lombok.Data; + +@Data +public class EmployeeDTO { + private String id; + private String name; + private LocalDate dob; + private String address; + private String department; + private String email; + private String phone; +} \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/exception/GlobalExceptionHandler.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..37e5b32 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/exception/GlobalExceptionHandler.java @@ -0,0 +1,23 @@ +package com.example.lecture_10.exception; + +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.MethodArgumentNotValidException; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestControllerAdvice; +import org.springframework.web.context.request.WebRequest; + +import java.util.HashMap; +import java.util.Map; + +@RestControllerAdvice +public class GlobalExceptionHandler { + + @ExceptionHandler(MethodArgumentNotValidException.class) + public ResponseEntity> handleValidationExceptions(MethodArgumentNotValidException ex, WebRequest request) { + Map errors = new HashMap<>(); + ex.getBindingResult().getFieldErrors().forEach(error -> errors.put(error.getField(), error.getDefaultMessage())); + return new ResponseEntity<>(errors, HttpStatus.BAD_REQUEST); + } +} + diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/mapper/EmployeeMapper.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/mapper/EmployeeMapper.java new file mode 100644 index 0000000..3a87d67 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/mapper/EmployeeMapper.java @@ -0,0 +1,20 @@ +package com.example.lecture_10.mapper; + +import org.mapstruct.Mapper; +import org.mapstruct.factory.Mappers; + +import com.example.lecture_10.data.model.Employee; +import com.example.lecture_10.dto.EmployeeDTO; + +@Mapper(componentModel = "spring") +public interface EmployeeMapper { + + // Mapper instance + EmployeeMapper INSTANCE = Mappers.getMapper(EmployeeMapper.class); + + // Mapper to Employee DTO + EmployeeDTO toEmployeeDTO(Employee employee); + + // Mappet to Employee model + Employee toEmployee(EmployeeDTO employeeDTO); +} diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/DateUtils.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/DateUtils.java new file mode 100644 index 0000000..dec6ab3 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/DateUtils.java @@ -0,0 +1,35 @@ +package com.example.lecture_10.util; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.time.format.DateTimeParseException; + +public class DateUtils { + private static final DateTimeFormatter DATE_FORMATER = DateTimeFormatter.ofPattern("d/M/yyyy"); + + /** + * Parses a date string in the format "d/M/yyyy" and returns a LocalDate object. + * + * @param dateString the date string to be parsed + * @return the parsed LocalDate object + * @throws IllegalArgumentException if the date string cannot be parsed + */ + public static LocalDate parseDate(String dateStr) { + try { + return LocalDate.parse(dateStr, DATE_FORMATER); + } catch (DateTimeParseException e) { + System.out.println("Error parsing date: " + dateStr); + throw e; + } + } + + /** + * Formats the given LocalDate object into a string in the format "d/M/yyyy". + * + * @param date the LocalDate object to be formatted + * @return the formatted string in the specified format + */ + public static String formatDate(LocalDate date) { + return date.format(DATE_FORMATER); + } +} \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/FileUtils.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/FileUtils.java new file mode 100644 index 0000000..8124057 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/java/com/example/lecture_10/util/FileUtils.java @@ -0,0 +1,55 @@ +package com.example.lecture_10.util; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; + +import org.springframework.web.multipart.MultipartFile; + +import com.example.lecture_10.data.model.Employee; + +public class FileUtils { + /** + * Reads employees from a CSV file using manual parsing. + * + * @param file The CSV file containing employee data. + * @return A list of {@link Employee} objects read from the CSV file. + * @throws IOException If an error occurs while reading the file. + */ + public static List readEmployeesFromCSV(MultipartFile file) throws IOException { + List employees = new ArrayList<>(); + try (BufferedReader br = new BufferedReader(new InputStreamReader(file.getInputStream()))) { + String line; + br.readLine(); // Skip header + while ((line = br.readLine()) != null) { + String[] attributes = line.split(","); + Employee employee = fromCSV(attributes); + employees.add(employee); + } + } catch (IOException e) { + throw new IOException("Error reading employee (Manual) " + e); + } + return employees; + } + + /** + * Parses an array of attributes into an Employee object. + * + * @param attributes an array of strings representing the employee's id, name, date of birth, address, and others. + * @return an Employee object created from the provided attributes. + */ + public static Employee fromCSV(String[] attributes) { + String id = attributes[0]; + String name = attributes[1]; + LocalDate dob = DateUtils.parseDate(attributes[2]); + String address = attributes[3]; + String department = attributes[4]; + String email = attributes[5]; + String phone = attributes[6]; + + return new Employee(id, name, dob, address, department, email, phone); + } +} \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/resources/application.properties b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/resources/application.properties new file mode 100644 index 0000000..ac92c45 --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/main/resources/application.properties @@ -0,0 +1,6 @@ +spring.application.name=lecture_10 + +spring.datasource.driver-class-name=com.mysql.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3308/week5_lecture10?allowPublicKeyRetrieval=true&useSSL=false +spring.datasource.username=root +spring.datasource.password=Michaeleon16606_ \ No newline at end of file diff --git a/Week 05/Lecture 10/Assignment 01/lecture_10/src/test/java/com/example/lecture_10/Lecture10ApplicationTests.java b/Week 05/Lecture 10/Assignment 01/lecture_10/src/test/java/com/example/lecture_10/Lecture10ApplicationTests.java new file mode 100644 index 0000000..ab3119d --- /dev/null +++ b/Week 05/Lecture 10/Assignment 01/lecture_10/src/test/java/com/example/lecture_10/Lecture10ApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.lecture_10; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class Lecture10ApplicationTests { + + @Test + void contextLoads() { + } + +}