Commit 0afbc48d by Nelson Ruiz

primer commit en Roshka

parents
# para ejecutar
#python3 toro_vaca.py
#hshah@roshka.com
#Funcion para validar el numero ingresado tanto para el jugador A como para el jugador B
def numero_valido(numero):
#Verifica que el valor de entrada sea un valor valido
if(not numero.isdigit()):
print("Entrada con dato incorrecto")
return False
#verifica que el numero sea de 4 cifras
elif ((int(numero) < 1000 or int(numero) > 9999)):
print("El numero debe tener 4 digitos, ingrese de nuevo")
return False
#verifica que el numero no tenga valores repetidos
#el tipo set es una clase que elimina los elementos repetidos en un cojunto
else:
if ( not (len(numero)==len(set(numero)))):
print("El numero no debe tener digitos repetidos, ingrese de nuevo")
return False
return True
numero = (input("Ingrese el numero a adivinar: "))
# Verifica si es valido el numero si no lo es se debe volver a introducir el numero
lista=[]
while(not numero_valido(numero)):
numero = (input("Ingrese el numero a adivinar: "))
vacas=0
toros=0
intentos=0
while(intentos<=12):
intentos=intentos+1#contador de intentos
#si el intento es mas de 12 gana el jugador A y termina el programa
if(intentos==13):
print ("FIN DEL JUEGO - GANÓ A")
break
#se ingrese el numero elegido por el jugador B
print("Intento B ",intentos,": ",end=" ")
numero_B=input()
#se valida el numero elegido por el jugador B
while(not numero_valido(numero_B)):
numero_B = (input("Ingrese numero del jugador B: "))
#compara los digitos con sus respectivas posiciones para contar la cantidad de toros
lista.append(numero)
for i in range(4):
if(numero[i]==numero_B[i]):
toros=toros+1
#compara los digitos de numero y numero_B para contar la cantidad de vacas
for i in range(4):
for j in range(4):
if (numero[i]==numero_B[j] and numero[j]!=numero_B[j]):
vacas=vacas+1
#va imprimiendo los resultados en pantalla
print("RESPUESTA A: ",toros," TOROS, ", vacas," VACAS")
#si el numero elegido por B es igual al numero elegido por A antes de pasar los 12 intentos,entonces gana B
if(numero==numero_B):
print ("FIN DEL JUEGO - GANÓ B en ",intentos," INTENTOS")
break
toros=0
vacas=0
public class Bisiesto {
//Son bisiestos todos los años múltiplos de 4, excepto aquellos que
//son múltiplos de 100 pero no de 400. Por ejemplo, años múltiplos de 4 son:
public static void main(String[] args) {
for(int anio=1996; anio<=2021;anio++){//años bisiestos desde 1996 al 2021
if ( anio % 4 == 0 && anio % 100 != 0 || anio % 400 == 0){
System.out.println("Anio: "+anio);
}
}
}
}
//practica de set y get
class Boxx {
public float ancho;
public float largo;
public float profundidad;
public float volumen;
/* public Boxx(int anch,int larg,int prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
*/
public void setDatos(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public void calcularVolumen(){
this.volumen=ancho*largo*profundidad;
}
public float getDatos(){
return this.volumen;
}
}
public class Box{
public static void main(String[] args) {
Boxx obj= new Boxx();
obj.setDatos(2,3,5);
obj.calcularVolumen();
System.out.println("Volumen= "+obj.getDatos()+" m2");
}
}
class Pila{
private int top;
private int []s;
private int capacidad;
public Pila(int cap){
this.top=-1;
this.capacidad=cap;
this.s=new int[this.capacidad];
}
public int longitud(){//obtiene la logitud de la pila
return this.top+1;
}
public boolean esVacia(){//verifica si la pila está vacia si el contador top es meor a 0
if(this.top<0){
return true;
}else{
return false;
}
}
public void push(int numero){//agreaga elementos a la pila
if (longitud()<this.capacidad){
s[++this.top]=numero;
}
}
public int pop(){//quita un elemento de la pila y lo reemplaza con 0 , es decir 0 significa que no tiene elmentos en ese lugar
int aux;
if(esVacia()) return 0;
aux=s[top];
s[top--]=0;
return aux;
}
public void imprimir(){//imprime la pila
for(int i=0;i<this.capacidad;i++){
System.out.println(this.s[i]);
}
}
}
public class ClassPila {
public static void main(String[] args) {
Pila pila=new Pila(5);
pila.push(2);
pila.push(1);
pila.push(3);
pila.push(4);
pila.push(6);
pila.pop();
pila.imprimir();
}
}
class Estaciones {
public static void main(String[] args) {
int numero = 11;//el valor del mes
switch(numero)
{
case 12:
System.out.println("Es verano");
break;
case 1:
System.out.println("Es verano");
break;
case 2:
System.out.println("Es verano");
break;
case 3:
System.out.println("Es otonio");
break;
case 4:
System.out.println("Es otonio");
break;
case 5:
System.out.println("Es otonio");
break;
case 6:
System.out.println("Es invierno");
break;
case 7:
System.out.println("Es invierno");
break;
case 8:
System.out.println("Es invierno");
break;
case 9:
System.out.println("Es primavera");
break;
case 10:
System.out.println("Es primavera");
break;
case 11:
System.out.println("Es primavera");
break;
default:
System.out.println("numero no es valido");
break;
}
}
}
import java.util.Scanner;
class Lenguajes{
public static void main(String[] args) {
int numero;
Scanner read=new Scanner(System.in);
do{
System.out.println("1-PHP");
System.out.println("2-JAVA");
System.out.println("3-PYTHON");
System.out.println("4-C");
System.out.println("5-R");
System.out.println("6-RUBY");
System.out.println("7-Salir");
numero=read.nextInt();
System.out.println("\n");
switch(numero)
{
case 1:
System.out.println("PHP (acrónimo recursivo de PHP: Hypertext Preprocessor )");
System.out.println("\n");
break;
case 2:
System.out.println("Java es un lenguaje de programación una plataforma informática comercializada por primera vez en 1995 por Sun Microsystems");
System.out.println("\n");
break;
case 3:
System.out.println("Python es un lenguaje sencillo de leer y escribir debido a su alta similitud con el lenguaje humano");
System.out.println("\n");
break;
case 4:
System.out.println("C se utiliza, entre otras cosas, para el desarrollo de sistemas operativos");
System.out.println("\n");
break;
case 5:
System.out.println("R es un entorno de programación libre que se utiliza para el procesamiento y análisis estadístico");
System.out.println("\n");
break;
case 6:
System.out.println("El lenguaje Ruby se utiliza principalmente en el desarrollo de aplicaciones web");
System.out.println("\n");
break;
default:
break;
}
}while(numero!=7);
}
}
#include <stdio.h>
int numero=3;
int main(){
switch (numero){
case 12:
printf("Es verano");
break;
case 1:
printf("Es verano");
break;
case 2:
printf("Es verano");
break;
case 3:
printf("Es otoño");
break;
case 4:
printf("Es Otoño");
break;
case 5:
printf("Es otoño");
break;
case 6:
printf("Es invierno");
break;
case 7:
printf("Es invierno");
break;
case 8:
printf ("Es invierno");
break;
case 9:
printf("Es primavera");
break;
case 10:
printf("Es primavera");
break;
case 11:
printf("Es primavera");
break;
default:
printf("Numero no valido");
break;
}
return 0;
}
\ No newline at end of file
class Notas{
public int notas[];
public int n;
public int contador;
public Notas (int dim){//constructor
this.notas= new int[dim];
this.contador=0;
}
public void setNotas(int notas){//agrega las notas al array
this.notas[this.contador]=notas;
this.contador++;
}
}
class Estudiante{
Notas nota;
int cantidad;
public Estudiante(int cantidad){
this.cantidad=cantidad;
nota=new Notas(this.cantidad);//crea un objeto Notas
}
public void getNotas(){//imprime las notas
for(int i=0;i<this.cantidad;i++)
System.out.println(nota.notas[i]);
}
public void setNnotas(int notas){//carga las notas invocando al objeto notas
nota.setNotas(notas);
}
}
public class ClaseNotas {
public static void main(String[] args) {
Estudiante estudiante=new Estudiante(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.getNotas();
}
}
//ejemplo de herencia
class Cliente{
String nombre;
public Cliente(String nombre){
this.nombre=nombre;
}
public String getNombre(){
return this.nombre;
}
}
class ClientePlata extends Cliente{
String servicios;
public ClientePlata(String nombre,String servicios){
super(nombre);
this.servicios=servicios;
}
public String getServicios(){
return this.servicios;
}
/* @Override
public String getNombre() {
return super.getNombre();
}*/
}
class ClienteOro extends ClientePlata{
String beneficios;
public ClienteOro(String nombre,String servicios,String beneficios){
super(nombre, servicios);
this.beneficios=beneficios;
}
public String getBeneficios(){
return this.beneficios;
}
}
class ClientePremium extends ClienteOro{
String premio;
public ClientePremium(String nombre,String servicios,String beneficios,String premio){
super(nombre, servicios, beneficios);
this.premio=premio;
}
}
public class Herencia {
public static void main(String[] args) {
ClientePlata cp=new ClientePlata("nelson","masaje");//creo un objeto ClientePlata e instancio
System.out.println("nombre: "+cp.getNombre());
System.out.println("servicio: "+cp.getServicios());
}
}
//practica de polimorfismo
class Boxx {
public float ancho;
public float largo;
public float profundidad;
public Boxx(float anch,float larg){
this.ancho=anch;
this.largo=larg;
this.profundidad=1;
}
public Boxx(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public void setDatos(int ancho,int largo,int profundidad){
this.ancho=ancho;
this.largo=largo;
this.profundidad=profundidad;
}
public void setDatos(float ancho,float largo,float profundidad){
this.ancho=ancho;
this.largo=largo;
this.profundidad=profundidad;
}
public float getVolumen(){
float volumen=this.ancho*this.largo*this.profundidad;
return volumen;
}
}
public class Operaciones{
public static void main(String[] args) {
Boxx obj= new Boxx(2,3);
Boxx obj2=new Boxx(2,2,3);
System.out.println("Volumen obj: "+obj.getVolumen());
System.out.println("Volumen obj2: "+obj2.getVolumen());
}
}
class Factura{
private static float iva1;
public Factura(int n){
iva1=n;
}
public static float getIva(){//solo puede retornar variables estaticas
return iva1;//si iva1 no es static va a dar un error
}
}
public class PruebaStatic {
public static void main(String[] args) {
Factura f1=new Factura(5);
Factura f2=new Factura(4);
System.out.println(f1.getIva());
System.out.println(f2.getIva());
}
}
class Pila{
private int top;
private int []s;
private int capacidad;
public Pila(int cap){
this.top=-1;
this.capacidad=cap;
this.s=new int[this.capacidad];
}
public int longitud(){//obtiene la logitud de la pila
return this.top+1;
}
public boolean esVacia(){//verifica si la pila está vacia si el contador top es meor a 0
if(this.top<0){
return true;
}else{
return false;
}
}
public void push(int numero){//agreaga elementos a la pila
if (longitud()<this.capacidad){
s[++this.top]=numero;
}
}
public int pop(){//quita un elemento de la pila y lo reemplaza con 0 , es decir 0 significa que no tiene elmentos en ese lugar
int aux;
if(esVacia()) return 0;
aux=s[top];
s[top--]=0;
return aux;
}
public void imprimir(){//imprime la pila
for(int i=0;i<this.capacidad;i++){
System.out.println(this.s[i]);
}
}
public void sortStack(){
int temp;
if ( !(esVacia())){
temp = pop();
sortStack();
sortedInsert(temp);
}
}
public void sortedInsert( int element){
int temp;
if (esVacia() || element > s[this.top] ){
push(element);
}
else{
temp = pop();
sortedInsert(element);
push (temp);
}
}
}
public class SortPila {
public static void main(String[] args) {
Pila pila=new Pila(5);
pila.push(2);
pila.push(1);
pila.push(3);
pila.push(4);
pila.push(6);
pila.sortStack();
pila.imprimir();
}
}
/*● Consultar todas las películas(film).
● Consultar todas las filas de film_actor donde actor_id es de Johnny(join)
● Consultar todas las filas de film_actor donde actor_id es de Johnny or Penelope(join)
● Consultar todas las filas de film_actor donde actor_id es de Johnny and Penelope(join)
● Consultar todas las filas de film_category donde category_id es en (Action, Comedy)
● Consultar todas las filas de film donde titlle se empieza con A
● Consultar todas las filas de film donde titlle se termina con B
● Consultar todas las filas de payment donde amount es entre 0 y 5.
● Consultar todas las filas de film donde title no es "Analyze Hoosiers"
*/
/*muestra las columnas de title y description
ordenando de forma alfabetica con las columna title */
SELECT title,description FROM film
ORDER BY title;
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny';
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny' OR first_name='Penelope';
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny' AND first_name='Penelope';
SELECT last_update from film_category
JOIN category ON film_category.category_id=film_category.category_id
WHERE category.name='Action' OR category.name='Comedy';
SELECT title FROM film WHERE title LIKE 'A%';
SELECT title FROM film WHERE title LIKE '%b';
SELECT DISTINCT staff_id,amount FROM payment WHERE amount>=0 AND amount<=5 ;
SELECT DISTINCT title FROM film WHERE NOT title='Analyze Hoosiers';
class Box {
public float ancho;
public float largo;
public float profundidad;
public float volumen;
public Box(){ }
public Box(Box b){
this.ancho=b.ancho;
this.largo=b.largo;
this.profundidad=b.profundidad;
}
public Box(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public Box(float cubo){
this.ancho=cubo;
this.largo=cubo;
this.profundidad=cubo;
}
public void calcularVolumen(){
this.volumen=this.largo*this.ancho*this.profundidad;
}
public float getVolumen(){
return this.volumen;
}
}
class BoxPeso extends Box{
float peso;
public BoxPeso(){
super();
}
public BoxPeso(Box b){
super(b);
}
public BoxPeso(float ancho,float largo,float profundidad){
super(ancho,largo,profundidad);
}
public BoxPeso(float cubo,float peso){
super(cubo);
this.peso=peso;
}
public float getPeso(){
return this.peso;
}
}
class Envio extends BoxPeso {
float ancho;
float largo;
float profundidad;
public Envio(){
super();
}
public Envio(Box b){
super(b);
}
public Envio(float ancho,float largo,float profundidad){
super(ancho,largo,profundidad);
}
public Envio(float cubo,float peso){
super(cubo,peso);
}
}
public class polimorfismo{
public static void main(String[] args) {
Envio obj1= new Envio(2,3);//envio los atribuo lado de un cubo y el peso
Box box1=new Box(1,2,3);//crea un objeto Box
Envio obj2= new Envio(box1);//envia el objeto box e inicializa con sus datos
obj1.calcularVolumen();
obj2.calcularVolumen();
System.out.println("Volumen del objeto 1= "+obj1.getVolumen());//imprime el volumen
System.out.println("Peso del objeto1= "+obj1.getPeso());//obtiene el peso
System.out.println("Volumen del objeto 2= "+obj2.getVolumen());//obtiene el volumen del objeto 2
}
}
CREATE TABLE Local (
id_local SERIAL PRIMARY KEY,
direccion varchar
);
CREATE TABLE Transporte_Articulo (
id_transporte_articulo SERIAL PRIMARY KEY
);
CREATE TABLE Transporte (
id_transporte SERIAL PRIMARY KEY,
tipo_transporte varchar,
ruta varchar,
id_transporte_articulo int
);
CREATE TABLE Articulo (
id_articulo SERIAL PRIMARY KEY,
peso int,
dimesion float,
importe float,
destino varchar,
fecha_entrega date,
id_local int,
id_transporte_articulo int
);
ALTER TABLE Transporte ADD FOREIGN KEY (id_transporte_articulo) REFERENCES Transporte_Articulo (id_transporte_articulo);
ALTER TABLE Articulo ADD FOREIGN KEY (id_local) REFERENCES Local (id_local);
ALTER TABLE Articulo ADD FOREIGN KEY (id_transporte_articulo) REFERENCES Transporte_Articulo (id_transporte_articulo);
INSERT INTO Local(direccion) Values('Ypane');
INSERT INTO Local(direccion) Values('Ñemby');
INSERT INTO Transporte_Articulo Values(1);
INSERT INTO Transporte_Articulo Values(2);
INSERT INTO Transporte(tipo_transporte,ruta,id_transporte_articulo) Values('Avion','ACCESO',1);
INSERT INTO Transporte(tipo_transporte,ruta,id_transporte_articulo) Values('Avion','ACCESO',2;
INSERT INTO Articulo(peso,dimesion,importe,destino,fecha_entrega,id_local,id_transporte_articulo)
VALUES(1,2,12,'ÑEMBY',NULL,1,1);
INSERT INTO Articulo(peso,dimesion,importe,destino,fecha_entrega,id_local,id_transporte_articulo)
VALUES(12,1,2,'Ypane',NULL,2,2);
SELECT Articulo.id_articulo from Articulo
join Local ON Articulo.id_local=Local.id_local;
interface Formas{
boolean cuadraTexto();
}
class Circulo implements Formas{
float area;
float radio;
String color;
String letras;
public Circulo(float radio,String color,String letras){
this.radio=radio;
this.color=color;
this.letras=letras;
}
public boolean cuadraTexto(){
if(this.letras.length()<=this.radio){
return true;
}
return false;
}
}
class Rectangulo implements Formas{
float largo;
float ancho;
float area;
String color;
String letras;
public Rectangulo(float largo,float ancho,String color,String letras){
this.largo=largo;
this.ancho=ancho;
this.color=color;
this.letras=letras;
}
public boolean cuadraTexto(){
if(this.letras.length()<=this.largo){
return true;
}
return false;
}
}
public class InterfacesDia3 {
public static void main(String[] args) {
Rectangulo cartelRectangulo=new Rectangulo(5,2,"ROJO","HOLA");
System.out.println("Es la dimension correcta para la forma de un rectangulo?: "+cartelRectangulo.cuadraTexto());
Circulo cartelCirculo=new Circulo(4, "ROJO", "PALABRA");
System.out.println("Es la dimension correcta para la forma de un circulo?: "+cartelCirculo.cuadraTexto());
}
}
/*● Consulta todos los clientes que han alquilado películas
● Obtenga todos los clientes que hayan vencido la fecha de vencimiento de pago.
Muestra también por qué películas vencen sus pagos.
● ¿Cuáles son las categorías más alquiladas?
● Cuales son las categorías más alquiladas agrupadas por cliente.
● Cual es el lenguaje más alquilado
● Cuál empleados son los mejores. Significa cual empleados se alquila maximo películas.
● Quién es el actor más famoso. Significa películas de cual actor se alquila maximo.
● Quien es el mejor cliente. ¿Significa quien alquila máximo?*/
SELECT first_name From customer
JOIN rental ON customer.customer_id=rental.customer_id;
select DISTINCT f.film_id, f.title, first_name from customer c
join rental r on c.customer_id=r.customer_id
JOIN payment p ON p.rental_id=r.rental_id
JOIN inventory i ON i.inventory_id=r.inventory_id
JOIN film f ON f.film_id=i.film_id
where r.return_date<current_date
LIMIT 10;
/*¿Cuáles son las categorías más alquiladas?*/
select c.category_id ,c.name, COUNT(r.rental_id) cont FROM category c
JOIN film_category fc ON c.category_id=fc.category_id
JOIN film f ON F.film_id=fc.film_id
JOIN inventory i ON i.film_id=f.film_id
JOIN rental r ON r.inventory_id=i.inventory_id
GROUP BY(c.category_id)
ORDER BY(cont) desc
;
select cus.first_name,c.name, COUNT(r.rental_id) AS cont FROM category c
JOIN film_category fc ON c.category_id=fc.category_id
JOIN film f ON F.film_id=fc.film_id
JOIN inventory i ON i.film_id=f.film_id
JOIN rental r ON r.inventory_id=i.inventory_id
JOIN customer cus ON cus.customer_id=r.customer_id
GROUP BY(c.name,cus.first_name)
ORDER BY(cus.first_name,COUNT(r.rental_id)) DESC
;
SELECT l.name,COUNT(r.rental_id) FROM language l
JOIN film f ON l.language_id=f.language_id
JOIN inventory i ON f.film_id=i.film_id
JOIN rental r ON i.inventory_id=r.inventory_id
GROUP BY(l.name)
ORDER BY(COUNT(r.rental_id)) DESC
LIMIT(1);
;
SELECT s.first_name ,COUNT(r.rental_id) FROM staff s
JOIN payment p ON s.staff_id=p.staff_id
JOIN rental r ON r.rental_id=p.rental_id
GROUP BY (s.first_name)
ORDER BY(COUNT(r.rental_id)) DESC
;
SELECT a.first_name, COUNT(r.rental_id) FROM actor a
JOIN film_actor fa ON a.actor_id=fa.actor_id
JOIN film f ON fa.film_id=f.film_id
JOIN inventory i ON f.film_id=i.film_id
JOIN rental r ON i.inventory_id=r.inventory_id
GROUP BY (a.first_name)
ORDER BY(COUNT(r.rental_id)) DESC
LIMIT(1)
;
SELECT first_name,count (rental.rental_id) From customer
JOIN rental ON customer.customer_id=rental.customer_id
GROUP BY(first_name)
ORDER BY(COUNT(rental.rental_id)) DESC
LIMIT (1)
;
\ No newline at end of file
<html>
<head>
<script>
//funcion que muestra lo que se selecciona en la pantalla
function digitos(val)
{
document.getElementById("resultado").value+=val
}
//funcion que evalua la caena de entrada y lo evalua
function resolver()
{
let x = document.getElementById("resultado").value
let y = eval(x)
document.getElementById("resultado").value = y
}
//limpia la pantalla
function clr()
{
document.getElementById("resultado").value = ""
}
</script>
</head>
<body>
<div class = title >Calculadora</div>
<table border="4">
<tr>
<td colspan="5"><input type="text" id="resultado"/></td>
<td><input type="button" value="c" onclick="clr()"/> </td>
</tr>
<tr>
<td><input type="button" value="1" onclick="digitos('1')"/> </td>
<td><input type="button" value="2" onclick="digitos('2')"/> </td>
<td><input type="button" value="3" onclick="digitos('3')"/> </td>
<td><input type="button" value="/" onclick="dis('/')"/> </td>
</tr>
<tr>
<td><input type="button" value="4" onclick="digitos('4')"/> </td>
<td><input type="button" value="5" onclick="digitos('5')"/> </td>
<td><input type="button" value="6" onclick="digitos('6')"/> </td>
<td><input type="button" value="-" onclick="digitos('-')"/> </td>
</tr>
<tr>
<td><input type="button" value="7" onclick="digitos('7')"/> </td>
<td><input type="button" value="8" onclick="digitos('8')"/> </td>
<td><input type="button" value="9" onclick="digitos('9')"/> </td>
<td><input type="button" value="+" onclick="digitos('+')"/> </td>
</tr>
<tr>
<td><input type="button" value="." onclick="digitos('.')"/> </td>
<td><input type="button" value="0" onclick="digitos('0')"/> </td>
<td><input type="button" value="=" onclick="resolver()"/> </td>
<td><input type="button" value="*" onclick="digitos('*')"/> </td>
</tr>
</table>
</body>
</html>
class Usuairo{
String nombreUsuario;
}
public class Twitter {
}
File added
File added
524 1 Jared Ely jared.ely@sakilacustomer.org 530 t 2006-02-14 2013-05-26 14:49:45.738 1
1 1 Mary Smith mary.smith@sakilacustomer.org 5 t 2006-02-14 2013-05-26 14:49:45.738 1
2 1 Patricia Johnson patricia.johnson@sakilacustomer.org 6 t 2006-02-14 2013-05-26 14:49:45.738 1
3 1 Linda Williams linda.williams@sakilacustomer.org 7 t 2006-02-14 2013-05-26 14:49:45.738 1
4 2 Barbara Jones barbara.jones@sakilacustomer.org 8 t 2006-02-14 2013-05-26 14:49:45.738 1
5 1 Elizabeth Brown elizabeth.brown@sakilacustomer.org 9 t 2006-02-14 2013-05-26 14:49:45.738 1
6 2 Jennifer Davis jennifer.davis@sakilacustomer.org 10 t 2006-02-14 2013-05-26 14:49:45.738 1
7 1 Maria Miller maria.miller@sakilacustomer.org 11 t 2006-02-14 2013-05-26 14:49:45.738 1
8 2 Susan Wilson susan.wilson@sakilacustomer.org 12 t 2006-02-14 2013-05-26 14:49:45.738 1
9 2 Margaret Moore margaret.moore@sakilacustomer.org 13 t 2006-02-14 2013-05-26 14:49:45.738 1
10 1 Dorothy Taylor dorothy.taylor@sakilacustomer.org 14 t 2006-02-14 2013-05-26 14:49:45.738 1
11 2 Lisa Anderson lisa.anderson@sakilacustomer.org 15 t 2006-02-14 2013-05-26 14:49:45.738 1
12 1 Nancy Thomas nancy.thomas@sakilacustomer.org 16 t 2006-02-14 2013-05-26 14:49:45.738 1
13 2 Karen Jackson karen.jackson@sakilacustomer.org 17 t 2006-02-14 2013-05-26 14:49:45.738 1
14 2 Betty White betty.white@sakilacustomer.org 18 t 2006-02-14 2013-05-26 14:49:45.738 1
15 1 Helen Harris helen.harris@sakilacustomer.org 19 t 2006-02-14 2013-05-26 14:49:45.738 1
16 2 Sandra Martin sandra.martin@sakilacustomer.org 20 t 2006-02-14 2013-05-26 14:49:45.738 0
17 1 Donna Thompson donna.thompson@sakilacustomer.org 21 t 2006-02-14 2013-05-26 14:49:45.738 1
18 2 Carol Garcia carol.garcia@sakilacustomer.org 22 t 2006-02-14 2013-05-26 14:49:45.738 1
19 1 Ruth Martinez ruth.martinez@sakilacustomer.org 23 t 2006-02-14 2013-05-26 14:49:45.738 1
20 2 Sharon Robinson sharon.robinson@sakilacustomer.org 24 t 2006-02-14 2013-05-26 14:49:45.738 1
21 1 Michelle Clark michelle.clark@sakilacustomer.org 25 t 2006-02-14 2013-05-26 14:49:45.738 1
22 1 Laura Rodriguez laura.rodriguez@sakilacustomer.org 26 t 2006-02-14 2013-05-26 14:49:45.738 1
23 2 Sarah Lewis sarah.lewis@sakilacustomer.org 27 t 2006-02-14 2013-05-26 14:49:45.738 1
24 2 Kimberly Lee kimberly.lee@sakilacustomer.org 28 t 2006-02-14 2013-05-26 14:49:45.738 1
25 1 Deborah Walker deborah.walker@sakilacustomer.org 29 t 2006-02-14 2013-05-26 14:49:45.738 1
26 2 Jessica Hall jessica.hall@sakilacustomer.org 30 t 2006-02-14 2013-05-26 14:49:45.738 1
27 2 Shirley Allen shirley.allen@sakilacustomer.org 31 t 2006-02-14 2013-05-26 14:49:45.738 1
28 1 Cynthia Young cynthia.young@sakilacustomer.org 32 t 2006-02-14 2013-05-26 14:49:45.738 1
29 2 Angela Hernandez angela.hernandez@sakilacustomer.org 33 t 2006-02-14 2013-05-26 14:49:45.738 1
30 1 Melissa King melissa.king@sakilacustomer.org 34 t 2006-02-14 2013-05-26 14:49:45.738 1
31 2 Brenda Wright brenda.wright@sakilacustomer.org 35 t 2006-02-14 2013-05-26 14:49:45.738 1
32 1 Amy Lopez amy.lopez@sakilacustomer.org 36 t 2006-02-14 2013-05-26 14:49:45.738 1
33 2 Anna Hill anna.hill@sakilacustomer.org 37 t 2006-02-14 2013-05-26 14:49:45.738 1
34 2 Rebecca Scott rebecca.scott@sakilacustomer.org 38 t 2006-02-14 2013-05-26 14:49:45.738 1
35 2 Virginia Green virginia.green@sakilacustomer.org 39 t 2006-02-14 2013-05-26 14:49:45.738 1
36 2 Kathleen Adams kathleen.adams@sakilacustomer.org 40 t 2006-02-14 2013-05-26 14:49:45.738 1
37 1 Pamela Baker pamela.baker@sakilacustomer.org 41 t 2006-02-14 2013-05-26 14:49:45.738 1
38 1 Martha Gonzalez martha.gonzalez@sakilacustomer.org 42 t 2006-02-14 2013-05-26 14:49:45.738 1
39 1 Debra Nelson debra.nelson@sakilacustomer.org 43 t 2006-02-14 2013-05-26 14:49:45.738 1
40 2 Amanda Carter amanda.carter@sakilacustomer.org 44 t 2006-02-14 2013-05-26 14:49:45.738 1
41 1 Stephanie Mitchell stephanie.mitchell@sakilacustomer.org 45 t 2006-02-14 2013-05-26 14:49:45.738 1
42 2 Carolyn Perez carolyn.perez@sakilacustomer.org 46 t 2006-02-14 2013-05-26 14:49:45.738 1
43 2 Christine Roberts christine.roberts@sakilacustomer.org 47 t 2006-02-14 2013-05-26 14:49:45.738 1
44 1 Marie Turner marie.turner@sakilacustomer.org 48 t 2006-02-14 2013-05-26 14:49:45.738 1
45 1 Janet Phillips janet.phillips@sakilacustomer.org 49 t 2006-02-14 2013-05-26 14:49:45.738 1
46 2 Catherine Campbell catherine.campbell@sakilacustomer.org 50 t 2006-02-14 2013-05-26 14:49:45.738 1
47 1 Frances Parker frances.parker@sakilacustomer.org 51 t 2006-02-14 2013-05-26 14:49:45.738 1
48 1 Ann Evans ann.evans@sakilacustomer.org 52 t 2006-02-14 2013-05-26 14:49:45.738 1
49 2 Joyce Edwards joyce.edwards@sakilacustomer.org 53 t 2006-02-14 2013-05-26 14:49:45.738 1
50 1 Diane Collins diane.collins@sakilacustomer.org 54 t 2006-02-14 2013-05-26 14:49:45.738 1
51 1 Alice Stewart alice.stewart@sakilacustomer.org 55 t 2006-02-14 2013-05-26 14:49:45.738 1
52 1 Julie Sanchez julie.sanchez@sakilacustomer.org 56 t 2006-02-14 2013-05-26 14:49:45.738 1
53 1 Heather Morris heather.morris@sakilacustomer.org 57 t 2006-02-14 2013-05-26 14:49:45.738 1
54 1 Teresa Rogers teresa.rogers@sakilacustomer.org 58 t 2006-02-14 2013-05-26 14:49:45.738 1
55 2 Doris Reed doris.reed@sakilacustomer.org 59 t 2006-02-14 2013-05-26 14:49:45.738 1
56 1 Gloria Cook gloria.cook@sakilacustomer.org 60 t 2006-02-14 2013-05-26 14:49:45.738 1
57 2 Evelyn Morgan evelyn.morgan@sakilacustomer.org 61 t 2006-02-14 2013-05-26 14:49:45.738 1
58 1 Jean Bell jean.bell@sakilacustomer.org 62 t 2006-02-14 2013-05-26 14:49:45.738 1
59 1 Cheryl Murphy cheryl.murphy@sakilacustomer.org 63 t 2006-02-14 2013-05-26 14:49:45.738 1
60 1 Mildred Bailey mildred.bailey@sakilacustomer.org 64 t 2006-02-14 2013-05-26 14:49:45.738 1
61 2 Katherine Rivera katherine.rivera@sakilacustomer.org 65 t 2006-02-14 2013-05-26 14:49:45.738 1
62 1 Joan Cooper joan.cooper@sakilacustomer.org 66 t 2006-02-14 2013-05-26 14:49:45.738 1
63 1 Ashley Richardson ashley.richardson@sakilacustomer.org 67 t 2006-02-14 2013-05-26 14:49:45.738 1
64 2 Judith Cox judith.cox@sakilacustomer.org 68 t 2006-02-14 2013-05-26 14:49:45.738 0
65 2 Rose Howard rose.howard@sakilacustomer.org 69 t 2006-02-14 2013-05-26 14:49:45.738 1
66 2 Janice Ward janice.ward@sakilacustomer.org 70 t 2006-02-14 2013-05-26 14:49:45.738 1
67 1 Kelly Torres kelly.torres@sakilacustomer.org 71 t 2006-02-14 2013-05-26 14:49:45.738 1
68 1 Nicole Peterson nicole.peterson@sakilacustomer.org 72 t 2006-02-14 2013-05-26 14:49:45.738 1
69 2 Judy Gray judy.gray@sakilacustomer.org 73 t 2006-02-14 2013-05-26 14:49:45.738 1
70 2 Christina Ramirez christina.ramirez@sakilacustomer.org 74 t 2006-02-14 2013-05-26 14:49:45.738 1
71 1 Kathy James kathy.james@sakilacustomer.org 75 t 2006-02-14 2013-05-26 14:49:45.738 1
72 2 Theresa Watson theresa.watson@sakilacustomer.org 76 t 2006-02-14 2013-05-26 14:49:45.738 1
73 2 Beverly Brooks beverly.brooks@sakilacustomer.org 77 t 2006-02-14 2013-05-26 14:49:45.738 1
74 1 Denise Kelly denise.kelly@sakilacustomer.org 78 t 2006-02-14 2013-05-26 14:49:45.738 1
75 2 Tammy Sanders tammy.sanders@sakilacustomer.org 79 t 2006-02-14 2013-05-26 14:49:45.738 1
76 2 Irene Price irene.price@sakilacustomer.org 80 t 2006-02-14 2013-05-26 14:49:45.738 1
77 2 Jane Bennett jane.bennett@sakilacustomer.org 81 t 2006-02-14 2013-05-26 14:49:45.738 1
78 1 Lori Wood lori.wood@sakilacustomer.org 82 t 2006-02-14 2013-05-26 14:49:45.738 1
79 1 Rachel Barnes rachel.barnes@sakilacustomer.org 83 t 2006-02-14 2013-05-26 14:49:45.738 1
80 1 Marilyn Ross marilyn.ross@sakilacustomer.org 84 t 2006-02-14 2013-05-26 14:49:45.738 1
81 1 Andrea Henderson andrea.henderson@sakilacustomer.org 85 t 2006-02-14 2013-05-26 14:49:45.738 1
82 1 Kathryn Coleman kathryn.coleman@sakilacustomer.org 86 t 2006-02-14 2013-05-26 14:49:45.738 1
83 1 Louise Jenkins louise.jenkins@sakilacustomer.org 87 t 2006-02-14 2013-05-26 14:49:45.738 1
84 2 Sara Perry sara.perry@sakilacustomer.org 88 t 2006-02-14 2013-05-26 14:49:45.738 1
85 2 Anne Powell anne.powell@sakilacustomer.org 89 t 2006-02-14 2013-05-26 14:49:45.738 1
86 2 Jacqueline Long jacqueline.long@sakilacustomer.org 90 t 2006-02-14 2013-05-26 14:49:45.738 1
87 1 Wanda Patterson wanda.patterson@sakilacustomer.org 91 t 2006-02-14 2013-05-26 14:49:45.738 1
88 2 Bonnie Hughes bonnie.hughes@sakilacustomer.org 92 t 2006-02-14 2013-05-26 14:49:45.738 1
89 1 Julia Flores julia.flores@sakilacustomer.org 93 t 2006-02-14 2013-05-26 14:49:45.738 1
90 2 Ruby Washington ruby.washington@sakilacustomer.org 94 t 2006-02-14 2013-05-26 14:49:45.738 1
91 2 Lois Butler lois.butler@sakilacustomer.org 95 t 2006-02-14 2013-05-26 14:49:45.738 1
92 2 Tina Simmons tina.simmons@sakilacustomer.org 96 t 2006-02-14 2013-05-26 14:49:45.738 1
93 1 Phyllis Foster phyllis.foster@sakilacustomer.org 97 t 2006-02-14 2013-05-26 14:49:45.738 1
94 1 Norma Gonzales norma.gonzales@sakilacustomer.org 98 t 2006-02-14 2013-05-26 14:49:45.738 1
95 2 Paula Bryant paula.bryant@sakilacustomer.org 99 t 2006-02-14 2013-05-26 14:49:45.738 1
96 1 Diana Alexander diana.alexander@sakilacustomer.org 100 t 2006-02-14 2013-05-26 14:49:45.738 1
97 2 Annie Russell annie.russell@sakilacustomer.org 101 t 2006-02-14 2013-05-26 14:49:45.738 1
98 1 Lillian Griffin lillian.griffin@sakilacustomer.org 102 t 2006-02-14 2013-05-26 14:49:45.738 1
99 2 Emily Diaz emily.diaz@sakilacustomer.org 103 t 2006-02-14 2013-05-26 14:49:45.738 1
100 1 Robin Hayes robin.hayes@sakilacustomer.org 104 t 2006-02-14 2013-05-26 14:49:45.738 1
101 1 Peggy Myers peggy.myers@sakilacustomer.org 105 t 2006-02-14 2013-05-26 14:49:45.738 1
102 1 Crystal Ford crystal.ford@sakilacustomer.org 106 t 2006-02-14 2013-05-26 14:49:45.738 1
103 1 Gladys Hamilton gladys.hamilton@sakilacustomer.org 107 t 2006-02-14 2013-05-26 14:49:45.738 1
104 1 Rita Graham rita.graham@sakilacustomer.org 108 t 2006-02-14 2013-05-26 14:49:45.738 1
105 1 Dawn Sullivan dawn.sullivan@sakilacustomer.org 109 t 2006-02-14 2013-05-26 14:49:45.738 1
106 1 Connie Wallace connie.wallace@sakilacustomer.org 110 t 2006-02-14 2013-05-26 14:49:45.738 1
107 1 Florence Woods florence.woods@sakilacustomer.org 111 t 2006-02-14 2013-05-26 14:49:45.738 1
108 1 Tracy Cole tracy.cole@sakilacustomer.org 112 t 2006-02-14 2013-05-26 14:49:45.738 1
109 2 Edna West edna.west@sakilacustomer.org 113 t 2006-02-14 2013-05-26 14:49:45.738 1
110 2 Tiffany Jordan tiffany.jordan@sakilacustomer.org 114 t 2006-02-14 2013-05-26 14:49:45.738 1
111 1 Carmen Owens carmen.owens@sakilacustomer.org 115 t 2006-02-14 2013-05-26 14:49:45.738 1
112 2 Rosa Reynolds rosa.reynolds@sakilacustomer.org 116 t 2006-02-14 2013-05-26 14:49:45.738 1
113 2 Cindy Fisher cindy.fisher@sakilacustomer.org 117 t 2006-02-14 2013-05-26 14:49:45.738 1
114 2 Grace Ellis grace.ellis@sakilacustomer.org 118 t 2006-02-14 2013-05-26 14:49:45.738 1
115 1 Wendy Harrison wendy.harrison@sakilacustomer.org 119 t 2006-02-14 2013-05-26 14:49:45.738 1
116 1 Victoria Gibson victoria.gibson@sakilacustomer.org 120 t 2006-02-14 2013-05-26 14:49:45.738 1
117 1 Edith Mcdonald edith.mcdonald@sakilacustomer.org 121 t 2006-02-14 2013-05-26 14:49:45.738 1
118 1 Kim Cruz kim.cruz@sakilacustomer.org 122 t 2006-02-14 2013-05-26 14:49:45.738 1
119 1 Sherry Marshall sherry.marshall@sakilacustomer.org 123 t 2006-02-14 2013-05-26 14:49:45.738 1
120 2 Sylvia Ortiz sylvia.ortiz@sakilacustomer.org 124 t 2006-02-14 2013-05-26 14:49:45.738 1
121 1 Josephine Gomez josephine.gomez@sakilacustomer.org 125 t 2006-02-14 2013-05-26 14:49:45.738 1
122 1 Thelma Murray thelma.murray@sakilacustomer.org 126 t 2006-02-14 2013-05-26 14:49:45.738 1
123 2 Shannon Freeman shannon.freeman@sakilacustomer.org 127 t 2006-02-14 2013-05-26 14:49:45.738 1
124 1 Sheila Wells sheila.wells@sakilacustomer.org 128 t 2006-02-14 2013-05-26 14:49:45.738 0
125 1 Ethel Webb ethel.webb@sakilacustomer.org 129 t 2006-02-14 2013-05-26 14:49:45.738 1
126 1 Ellen Simpson ellen.simpson@sakilacustomer.org 130 t 2006-02-14 2013-05-26 14:49:45.738 1
127 2 Elaine Stevens elaine.stevens@sakilacustomer.org 131 t 2006-02-14 2013-05-26 14:49:45.738 1
128 1 Marjorie Tucker marjorie.tucker@sakilacustomer.org 132 t 2006-02-14 2013-05-26 14:49:45.738 1
129 1 Carrie Porter carrie.porter@sakilacustomer.org 133 t 2006-02-14 2013-05-26 14:49:45.738 1
130 1 Charlotte Hunter charlotte.hunter@sakilacustomer.org 134 t 2006-02-14 2013-05-26 14:49:45.738 1
131 2 Monica Hicks monica.hicks@sakilacustomer.org 135 t 2006-02-14 2013-05-26 14:49:45.738 1
132 2 Esther Crawford esther.crawford@sakilacustomer.org 136 t 2006-02-14 2013-05-26 14:49:45.738 1
133 1 Pauline Henry pauline.henry@sakilacustomer.org 137 t 2006-02-14 2013-05-26 14:49:45.738 1
134 1 Emma Boyd emma.boyd@sakilacustomer.org 138 t 2006-02-14 2013-05-26 14:49:45.738 1
135 2 Juanita Mason juanita.mason@sakilacustomer.org 139 t 2006-02-14 2013-05-26 14:49:45.738 1
136 2 Anita Morales anita.morales@sakilacustomer.org 140 t 2006-02-14 2013-05-26 14:49:45.738 1
137 2 Rhonda Kennedy rhonda.kennedy@sakilacustomer.org 141 t 2006-02-14 2013-05-26 14:49:45.738 1
138 1 Hazel Warren hazel.warren@sakilacustomer.org 142 t 2006-02-14 2013-05-26 14:49:45.738 1
139 1 Amber Dixon amber.dixon@sakilacustomer.org 143 t 2006-02-14 2013-05-26 14:49:45.738 1
140 1 Eva Ramos eva.ramos@sakilacustomer.org 144 t 2006-02-14 2013-05-26 14:49:45.738 1
141 1 Debbie Reyes debbie.reyes@sakilacustomer.org 145 t 2006-02-14 2013-05-26 14:49:45.738 1
142 1 April Burns april.burns@sakilacustomer.org 146 t 2006-02-14 2013-05-26 14:49:45.738 1
143 1 Leslie Gordon leslie.gordon@sakilacustomer.org 147 t 2006-02-14 2013-05-26 14:49:45.738 1
144 1 Clara Shaw clara.shaw@sakilacustomer.org 148 t 2006-02-14 2013-05-26 14:49:45.738 1
145 1 Lucille Holmes lucille.holmes@sakilacustomer.org 149 t 2006-02-14 2013-05-26 14:49:45.738 1
146 1 Jamie Rice jamie.rice@sakilacustomer.org 150 t 2006-02-14 2013-05-26 14:49:45.738 1
147 2 Joanne Robertson joanne.robertson@sakilacustomer.org 151 t 2006-02-14 2013-05-26 14:49:45.738 1
148 1 Eleanor Hunt eleanor.hunt@sakilacustomer.org 152 t 2006-02-14 2013-05-26 14:49:45.738 1
149 1 Valerie Black valerie.black@sakilacustomer.org 153 t 2006-02-14 2013-05-26 14:49:45.738 1
150 2 Danielle Daniels danielle.daniels@sakilacustomer.org 154 t 2006-02-14 2013-05-26 14:49:45.738 1
151 2 Megan Palmer megan.palmer@sakilacustomer.org 155 t 2006-02-14 2013-05-26 14:49:45.738 1
152 1 Alicia Mills alicia.mills@sakilacustomer.org 156 t 2006-02-14 2013-05-26 14:49:45.738 1
153 2 Suzanne Nichols suzanne.nichols@sakilacustomer.org 157 t 2006-02-14 2013-05-26 14:49:45.738 1
154 2 Michele Grant michele.grant@sakilacustomer.org 158 t 2006-02-14 2013-05-26 14:49:45.738 1
155 1 Gail Knight gail.knight@sakilacustomer.org 159 t 2006-02-14 2013-05-26 14:49:45.738 1
156 1 Bertha Ferguson bertha.ferguson@sakilacustomer.org 160 t 2006-02-14 2013-05-26 14:49:45.738 1
157 2 Darlene Rose darlene.rose@sakilacustomer.org 161 t 2006-02-14 2013-05-26 14:49:45.738 1
158 1 Veronica Stone veronica.stone@sakilacustomer.org 162 t 2006-02-14 2013-05-26 14:49:45.738 1
159 1 Jill Hawkins jill.hawkins@sakilacustomer.org 163 t 2006-02-14 2013-05-26 14:49:45.738 1
160 2 Erin Dunn erin.dunn@sakilacustomer.org 164 t 2006-02-14 2013-05-26 14:49:45.738 1
161 1 Geraldine Perkins geraldine.perkins@sakilacustomer.org 165 t 2006-02-14 2013-05-26 14:49:45.738 1
162 2 Lauren Hudson lauren.hudson@sakilacustomer.org 166 t 2006-02-14 2013-05-26 14:49:45.738 1
163 1 Cathy Spencer cathy.spencer@sakilacustomer.org 167 t 2006-02-14 2013-05-26 14:49:45.738 1
164 2 Joann Gardner joann.gardner@sakilacustomer.org 168 t 2006-02-14 2013-05-26 14:49:45.738 1
165 2 Lorraine Stephens lorraine.stephens@sakilacustomer.org 169 t 2006-02-14 2013-05-26 14:49:45.738 1
166 1 Lynn Payne lynn.payne@sakilacustomer.org 170 t 2006-02-14 2013-05-26 14:49:45.738 1
167 2 Sally Pierce sally.pierce@sakilacustomer.org 171 t 2006-02-14 2013-05-26 14:49:45.738 1
168 1 Regina Berry regina.berry@sakilacustomer.org 172 t 2006-02-14 2013-05-26 14:49:45.738 1
169 2 Erica Matthews erica.matthews@sakilacustomer.org 173 t 2006-02-14 2013-05-26 14:49:45.738 0
170 1 Beatrice Arnold beatrice.arnold@sakilacustomer.org 174 t 2006-02-14 2013-05-26 14:49:45.738 1
171 2 Dolores Wagner dolores.wagner@sakilacustomer.org 175 t 2006-02-14 2013-05-26 14:49:45.738 1
172 1 Bernice Willis bernice.willis@sakilacustomer.org 176 t 2006-02-14 2013-05-26 14:49:45.738 1
173 1 Audrey Ray audrey.ray@sakilacustomer.org 177 t 2006-02-14 2013-05-26 14:49:45.738 1
174 2 Yvonne Watkins yvonne.watkins@sakilacustomer.org 178 t 2006-02-14 2013-05-26 14:49:45.738 1
175 1 Annette Olson annette.olson@sakilacustomer.org 179 t 2006-02-14 2013-05-26 14:49:45.738 1
176 1 June Carroll june.carroll@sakilacustomer.org 180 t 2006-02-14 2013-05-26 14:49:45.738 1
177 2 Samantha Duncan samantha.duncan@sakilacustomer.org 181 t 2006-02-14 2013-05-26 14:49:45.738 1
178 2 Marion Snyder marion.snyder@sakilacustomer.org 182 t 2006-02-14 2013-05-26 14:49:45.738 1
179 1 Dana Hart dana.hart@sakilacustomer.org 183 t 2006-02-14 2013-05-26 14:49:45.738 1
180 2 Stacy Cunningham stacy.cunningham@sakilacustomer.org 184 t 2006-02-14 2013-05-26 14:49:45.738 1
181 2 Ana Bradley ana.bradley@sakilacustomer.org 185 t 2006-02-14 2013-05-26 14:49:45.738 1
182 1 Renee Lane renee.lane@sakilacustomer.org 186 t 2006-02-14 2013-05-26 14:49:45.738 1
183 2 Ida Andrews ida.andrews@sakilacustomer.org 187 t 2006-02-14 2013-05-26 14:49:45.738 1
184 1 Vivian Ruiz vivian.ruiz@sakilacustomer.org 188 t 2006-02-14 2013-05-26 14:49:45.738 1
185 1 Roberta Harper roberta.harper@sakilacustomer.org 189 t 2006-02-14 2013-05-26 14:49:45.738 1
186 2 Holly Fox holly.fox@sakilacustomer.org 190 t 2006-02-14 2013-05-26 14:49:45.738 1
187 2 Brittany Riley brittany.riley@sakilacustomer.org 191 t 2006-02-14 2013-05-26 14:49:45.738 1
188 1 Melanie Armstrong melanie.armstrong@sakilacustomer.org 192 t 2006-02-14 2013-05-26 14:49:45.738 1
189 1 Loretta Carpenter loretta.carpenter@sakilacustomer.org 193 t 2006-02-14 2013-05-26 14:49:45.738 1
190 2 Yolanda Weaver yolanda.weaver@sakilacustomer.org 194 t 2006-02-14 2013-05-26 14:49:45.738 1
191 1 Jeanette Greene jeanette.greene@sakilacustomer.org 195 t 2006-02-14 2013-05-26 14:49:45.738 1
192 1 Laurie Lawrence laurie.lawrence@sakilacustomer.org 196 t 2006-02-14 2013-05-26 14:49:45.738 1
193 2 Katie Elliott katie.elliott@sakilacustomer.org 197 t 2006-02-14 2013-05-26 14:49:45.738 1
194 2 Kristen Chavez kristen.chavez@sakilacustomer.org 198 t 2006-02-14 2013-05-26 14:49:45.738 1
195 1 Vanessa Sims vanessa.sims@sakilacustomer.org 199 t 2006-02-14 2013-05-26 14:49:45.738 1
196 1 Alma Austin alma.austin@sakilacustomer.org 200 t 2006-02-14 2013-05-26 14:49:45.738 1
197 2 Sue Peters sue.peters@sakilacustomer.org 201 t 2006-02-14 2013-05-26 14:49:45.738 1
198 2 Elsie Kelley elsie.kelley@sakilacustomer.org 202 t 2006-02-14 2013-05-26 14:49:45.738 1
199 2 Beth Franklin beth.franklin@sakilacustomer.org 203 t 2006-02-14 2013-05-26 14:49:45.738 1
200 2 Jeanne Lawson jeanne.lawson@sakilacustomer.org 204 t 2006-02-14 2013-05-26 14:49:45.738 1
201 1 Vicki Fields vicki.fields@sakilacustomer.org 205 t 2006-02-14 2013-05-26 14:49:45.738 1
202 2 Carla Gutierrez carla.gutierrez@sakilacustomer.org 206 t 2006-02-14 2013-05-26 14:49:45.738 1
203 1 Tara Ryan tara.ryan@sakilacustomer.org 207 t 2006-02-14 2013-05-26 14:49:45.738 1
204 1 Rosemary Schmidt rosemary.schmidt@sakilacustomer.org 208 t 2006-02-14 2013-05-26 14:49:45.738 1
205 2 Eileen Carr eileen.carr@sakilacustomer.org 209 t 2006-02-14 2013-05-26 14:49:45.738 1
206 1 Terri Vasquez terri.vasquez@sakilacustomer.org 210 t 2006-02-14 2013-05-26 14:49:45.738 1
207 1 Gertrude Castillo gertrude.castillo@sakilacustomer.org 211 t 2006-02-14 2013-05-26 14:49:45.738 1
208 1 Lucy Wheeler lucy.wheeler@sakilacustomer.org 212 t 2006-02-14 2013-05-26 14:49:45.738 1
209 2 Tonya Chapman tonya.chapman@sakilacustomer.org 213 t 2006-02-14 2013-05-26 14:49:45.738 1
210 2 Ella Oliver ella.oliver@sakilacustomer.org 214 t 2006-02-14 2013-05-26 14:49:45.738 1
211 1 Stacey Montgomery stacey.montgomery@sakilacustomer.org 215 t 2006-02-14 2013-05-26 14:49:45.738 1
212 2 Wilma Richards wilma.richards@sakilacustomer.org 216 t 2006-02-14 2013-05-26 14:49:45.738 1
213 1 Gina Williamson gina.williamson@sakilacustomer.org 217 t 2006-02-14 2013-05-26 14:49:45.738 1
214 1 Kristin Johnston kristin.johnston@sakilacustomer.org 218 t 2006-02-14 2013-05-26 14:49:45.738 1
215 2 Jessie Banks jessie.banks@sakilacustomer.org 219 t 2006-02-14 2013-05-26 14:49:45.738 1
216 1 Natalie Meyer natalie.meyer@sakilacustomer.org 220 t 2006-02-14 2013-05-26 14:49:45.738 1
217 2 Agnes Bishop agnes.bishop@sakilacustomer.org 221 t 2006-02-14 2013-05-26 14:49:45.738 1
218 1 Vera Mccoy vera.mccoy@sakilacustomer.org 222 t 2006-02-14 2013-05-26 14:49:45.738 1
219 2 Willie Howell willie.howell@sakilacustomer.org 223 t 2006-02-14 2013-05-26 14:49:45.738 1
220 2 Charlene Alvarez charlene.alvarez@sakilacustomer.org 224 t 2006-02-14 2013-05-26 14:49:45.738 1
221 1 Bessie Morrison bessie.morrison@sakilacustomer.org 225 t 2006-02-14 2013-05-26 14:49:45.738 1
222 2 Delores Hansen delores.hansen@sakilacustomer.org 226 t 2006-02-14 2013-05-26 14:49:45.738 1
223 1 Melinda Fernandez melinda.fernandez@sakilacustomer.org 227 t 2006-02-14 2013-05-26 14:49:45.738 1
224 2 Pearl Garza pearl.garza@sakilacustomer.org 228 t 2006-02-14 2013-05-26 14:49:45.738 1
225 1 Arlene Harvey arlene.harvey@sakilacustomer.org 229 t 2006-02-14 2013-05-26 14:49:45.738 1
226 2 Maureen Little maureen.little@sakilacustomer.org 230 t 2006-02-14 2013-05-26 14:49:45.738 1
227 1 Colleen Burton colleen.burton@sakilacustomer.org 231 t 2006-02-14 2013-05-26 14:49:45.738 1
228 2 Allison Stanley allison.stanley@sakilacustomer.org 232 t 2006-02-14 2013-05-26 14:49:45.738 1
229 1 Tamara Nguyen tamara.nguyen@sakilacustomer.org 233 t 2006-02-14 2013-05-26 14:49:45.738 1
230 2 Joy George joy.george@sakilacustomer.org 234 t 2006-02-14 2013-05-26 14:49:45.738 1
231 1 Georgia Jacobs georgia.jacobs@sakilacustomer.org 235 t 2006-02-14 2013-05-26 14:49:45.738 1
232 2 Constance Reid constance.reid@sakilacustomer.org 236 t 2006-02-14 2013-05-26 14:49:45.738 1
233 2 Lillie Kim lillie.kim@sakilacustomer.org 237 t 2006-02-14 2013-05-26 14:49:45.738 1
234 1 Claudia Fuller claudia.fuller@sakilacustomer.org 238 t 2006-02-14 2013-05-26 14:49:45.738 1
235 1 Jackie Lynch jackie.lynch@sakilacustomer.org 239 t 2006-02-14 2013-05-26 14:49:45.738 1
236 1 Marcia Dean marcia.dean@sakilacustomer.org 240 t 2006-02-14 2013-05-26 14:49:45.738 1
237 1 Tanya Gilbert tanya.gilbert@sakilacustomer.org 241 t 2006-02-14 2013-05-26 14:49:45.738 1
238 1 Nellie Garrett nellie.garrett@sakilacustomer.org 242 t 2006-02-14 2013-05-26 14:49:45.738 1
239 2 Minnie Romero minnie.romero@sakilacustomer.org 243 t 2006-02-14 2013-05-26 14:49:45.738 1
240 1 Marlene Welch marlene.welch@sakilacustomer.org 244 t 2006-02-14 2013-05-26 14:49:45.738 1
241 2 Heidi Larson heidi.larson@sakilacustomer.org 245 t 2006-02-14 2013-05-26 14:49:45.738 0
242 1 Glenda Frazier glenda.frazier@sakilacustomer.org 246 t 2006-02-14 2013-05-26 14:49:45.738 1
243 1 Lydia Burke lydia.burke@sakilacustomer.org 247 t 2006-02-14 2013-05-26 14:49:45.738 1
244 2 Viola Hanson viola.hanson@sakilacustomer.org 248 t 2006-02-14 2013-05-26 14:49:45.738 1
245 1 Courtney Day courtney.day@sakilacustomer.org 249 t 2006-02-14 2013-05-26 14:49:45.738 1
246 1 Marian Mendoza marian.mendoza@sakilacustomer.org 250 t 2006-02-14 2013-05-26 14:49:45.738 1
247 1 Stella Moreno stella.moreno@sakilacustomer.org 251 t 2006-02-14 2013-05-26 14:49:45.738 1
248 1 Caroline Bowman caroline.bowman@sakilacustomer.org 252 t 2006-02-14 2013-05-26 14:49:45.738 1
249 2 Dora Medina dora.medina@sakilacustomer.org 253 t 2006-02-14 2013-05-26 14:49:45.738 1
250 2 Jo Fowler jo.fowler@sakilacustomer.org 254 t 2006-02-14 2013-05-26 14:49:45.738 1
251 2 Vickie Brewer vickie.brewer@sakilacustomer.org 255 t 2006-02-14 2013-05-26 14:49:45.738 1
252 2 Mattie Hoffman mattie.hoffman@sakilacustomer.org 256 t 2006-02-14 2013-05-26 14:49:45.738 1
253 1 Terry Carlson terry.carlson@sakilacustomer.org 258 t 2006-02-14 2013-05-26 14:49:45.738 1
254 2 Maxine Silva maxine.silva@sakilacustomer.org 259 t 2006-02-14 2013-05-26 14:49:45.738 1
255 2 Irma Pearson irma.pearson@sakilacustomer.org 260 t 2006-02-14 2013-05-26 14:49:45.738 1
256 2 Mabel Holland mabel.holland@sakilacustomer.org 261 t 2006-02-14 2013-05-26 14:49:45.738 1
257 2 Marsha Douglas marsha.douglas@sakilacustomer.org 262 t 2006-02-14 2013-05-26 14:49:45.738 1
258 1 Myrtle Fleming myrtle.fleming@sakilacustomer.org 263 t 2006-02-14 2013-05-26 14:49:45.738 1
259 2 Lena Jensen lena.jensen@sakilacustomer.org 264 t 2006-02-14 2013-05-26 14:49:45.738 1
260 1 Christy Vargas christy.vargas@sakilacustomer.org 265 t 2006-02-14 2013-05-26 14:49:45.738 1
261 1 Deanna Byrd deanna.byrd@sakilacustomer.org 266 t 2006-02-14 2013-05-26 14:49:45.738 1
262 2 Patsy Davidson patsy.davidson@sakilacustomer.org 267 t 2006-02-14 2013-05-26 14:49:45.738 1
263 1 Hilda Hopkins hilda.hopkins@sakilacustomer.org 268 t 2006-02-14 2013-05-26 14:49:45.738 1
264 1 Gwendolyn May gwendolyn.may@sakilacustomer.org 269 t 2006-02-14 2013-05-26 14:49:45.738 1
265 2 Jennie Terry jennie.terry@sakilacustomer.org 270 t 2006-02-14 2013-05-26 14:49:45.738 1
266 2 Nora Herrera nora.herrera@sakilacustomer.org 271 t 2006-02-14 2013-05-26 14:49:45.738 1
267 1 Margie Wade margie.wade@sakilacustomer.org 272 t 2006-02-14 2013-05-26 14:49:45.738 1
268 1 Nina Soto nina.soto@sakilacustomer.org 273 t 2006-02-14 2013-05-26 14:49:45.738 1
269 1 Cassandra Walters cassandra.walters@sakilacustomer.org 274 t 2006-02-14 2013-05-26 14:49:45.738 1
270 1 Leah Curtis leah.curtis@sakilacustomer.org 275 t 2006-02-14 2013-05-26 14:49:45.738 1
271 1 Penny Neal penny.neal@sakilacustomer.org 276 t 2006-02-14 2013-05-26 14:49:45.738 0
272 1 Kay Caldwell kay.caldwell@sakilacustomer.org 277 t 2006-02-14 2013-05-26 14:49:45.738 1
273 2 Priscilla Lowe priscilla.lowe@sakilacustomer.org 278 t 2006-02-14 2013-05-26 14:49:45.738 1
274 1 Naomi Jennings naomi.jennings@sakilacustomer.org 279 t 2006-02-14 2013-05-26 14:49:45.738 1
275 2 Carole Barnett carole.barnett@sakilacustomer.org 280 t 2006-02-14 2013-05-26 14:49:45.738 1
276 1 Brandy Graves brandy.graves@sakilacustomer.org 281 t 2006-02-14 2013-05-26 14:49:45.738 1
277 2 Olga Jimenez olga.jimenez@sakilacustomer.org 282 t 2006-02-14 2013-05-26 14:49:45.738 1
278 2 Billie Horton billie.horton@sakilacustomer.org 283 t 2006-02-14 2013-05-26 14:49:45.738 1
279 2 Dianne Shelton dianne.shelton@sakilacustomer.org 284 t 2006-02-14 2013-05-26 14:49:45.738 1
280 2 Tracey Barrett tracey.barrett@sakilacustomer.org 285 t 2006-02-14 2013-05-26 14:49:45.738 1
281 2 Leona Obrien leona.obrien@sakilacustomer.org 286 t 2006-02-14 2013-05-26 14:49:45.738 1
282 2 Jenny Castro jenny.castro@sakilacustomer.org 287 t 2006-02-14 2013-05-26 14:49:45.738 1
283 1 Felicia Sutton felicia.sutton@sakilacustomer.org 288 t 2006-02-14 2013-05-26 14:49:45.738 1
284 1 Sonia Gregory sonia.gregory@sakilacustomer.org 289 t 2006-02-14 2013-05-26 14:49:45.738 1
285 1 Miriam Mckinney miriam.mckinney@sakilacustomer.org 290 t 2006-02-14 2013-05-26 14:49:45.738 1
286 1 Velma Lucas velma.lucas@sakilacustomer.org 291 t 2006-02-14 2013-05-26 14:49:45.738 1
287 2 Becky Miles becky.miles@sakilacustomer.org 292 t 2006-02-14 2013-05-26 14:49:45.738 1
288 1 Bobbie Craig bobbie.craig@sakilacustomer.org 293 t 2006-02-14 2013-05-26 14:49:45.738 1
289 1 Violet Rodriquez violet.rodriquez@sakilacustomer.org 294 t 2006-02-14 2013-05-26 14:49:45.738 1
290 1 Kristina Chambers kristina.chambers@sakilacustomer.org 295 t 2006-02-14 2013-05-26 14:49:45.738 1
291 1 Toni Holt toni.holt@sakilacustomer.org 296 t 2006-02-14 2013-05-26 14:49:45.738 1
292 2 Misty Lambert misty.lambert@sakilacustomer.org 297 t 2006-02-14 2013-05-26 14:49:45.738 1
293 2 Mae Fletcher mae.fletcher@sakilacustomer.org 298 t 2006-02-14 2013-05-26 14:49:45.738 1
294 2 Shelly Watts shelly.watts@sakilacustomer.org 299 t 2006-02-14 2013-05-26 14:49:45.738 1
295 1 Daisy Bates daisy.bates@sakilacustomer.org 300 t 2006-02-14 2013-05-26 14:49:45.738 1
296 2 Ramona Hale ramona.hale@sakilacustomer.org 301 t 2006-02-14 2013-05-26 14:49:45.738 1
297 1 Sherri Rhodes sherri.rhodes@sakilacustomer.org 302 t 2006-02-14 2013-05-26 14:49:45.738 1
298 1 Erika Pena erika.pena@sakilacustomer.org 303 t 2006-02-14 2013-05-26 14:49:45.738 1
299 2 James Gannon james.gannon@sakilacustomer.org 304 t 2006-02-14 2013-05-26 14:49:45.738 1
300 1 John Farnsworth john.farnsworth@sakilacustomer.org 305 t 2006-02-14 2013-05-26 14:49:45.738 1
301 2 Robert Baughman robert.baughman@sakilacustomer.org 306 t 2006-02-14 2013-05-26 14:49:45.738 1
302 1 Michael Silverman michael.silverman@sakilacustomer.org 307 t 2006-02-14 2013-05-26 14:49:45.738 1
303 2 William Satterfield william.satterfield@sakilacustomer.org 308 t 2006-02-14 2013-05-26 14:49:45.738 1
304 2 David Royal david.royal@sakilacustomer.org 309 t 2006-02-14 2013-05-26 14:49:45.738 1
305 1 Richard Mccrary richard.mccrary@sakilacustomer.org 310 t 2006-02-14 2013-05-26 14:49:45.738 1
306 1 Charles Kowalski charles.kowalski@sakilacustomer.org 311 t 2006-02-14 2013-05-26 14:49:45.738 1
307 2 Joseph Joy joseph.joy@sakilacustomer.org 312 t 2006-02-14 2013-05-26 14:49:45.738 1
308 1 Thomas Grigsby thomas.grigsby@sakilacustomer.org 313 t 2006-02-14 2013-05-26 14:49:45.738 1
309 1 Christopher Greco christopher.greco@sakilacustomer.org 314 t 2006-02-14 2013-05-26 14:49:45.738 1
310 2 Daniel Cabral daniel.cabral@sakilacustomer.org 315 t 2006-02-14 2013-05-26 14:49:45.738 1
311 2 Paul Trout paul.trout@sakilacustomer.org 316 t 2006-02-14 2013-05-26 14:49:45.738 1
312 2 Mark Rinehart mark.rinehart@sakilacustomer.org 317 t 2006-02-14 2013-05-26 14:49:45.738 1
313 2 Donald Mahon donald.mahon@sakilacustomer.org 318 t 2006-02-14 2013-05-26 14:49:45.738 1
314 1 George Linton george.linton@sakilacustomer.org 319 t 2006-02-14 2013-05-26 14:49:45.738 1
315 2 Kenneth Gooden kenneth.gooden@sakilacustomer.org 320 t 2006-02-14 2013-05-26 14:49:45.738 0
316 1 Steven Curley steven.curley@sakilacustomer.org 321 t 2006-02-14 2013-05-26 14:49:45.738 1
317 2 Edward Baugh edward.baugh@sakilacustomer.org 322 t 2006-02-14 2013-05-26 14:49:45.738 1
318 1 Brian Wyman brian.wyman@sakilacustomer.org 323 t 2006-02-14 2013-05-26 14:49:45.738 1
319 2 Ronald Weiner ronald.weiner@sakilacustomer.org 324 t 2006-02-14 2013-05-26 14:49:45.738 1
320 2 Anthony Schwab anthony.schwab@sakilacustomer.org 325 t 2006-02-14 2013-05-26 14:49:45.738 1
321 1 Kevin Schuler kevin.schuler@sakilacustomer.org 326 t 2006-02-14 2013-05-26 14:49:45.738 1
322 1 Jason Morrissey jason.morrissey@sakilacustomer.org 327 t 2006-02-14 2013-05-26 14:49:45.738 1
323 2 Matthew Mahan matthew.mahan@sakilacustomer.org 328 t 2006-02-14 2013-05-26 14:49:45.738 1
324 2 Gary Coy gary.coy@sakilacustomer.org 329 t 2006-02-14 2013-05-26 14:49:45.738 1
325 1 Timothy Bunn timothy.bunn@sakilacustomer.org 330 t 2006-02-14 2013-05-26 14:49:45.738 1
326 1 Jose Andrew jose.andrew@sakilacustomer.org 331 t 2006-02-14 2013-05-26 14:49:45.738 1
327 2 Larry Thrasher larry.thrasher@sakilacustomer.org 332 t 2006-02-14 2013-05-26 14:49:45.738 1
328 2 Jeffrey Spear jeffrey.spear@sakilacustomer.org 333 t 2006-02-14 2013-05-26 14:49:45.738 1
329 2 Frank Waggoner frank.waggoner@sakilacustomer.org 334 t 2006-02-14 2013-05-26 14:49:45.738 1
330 1 Scott Shelley scott.shelley@sakilacustomer.org 335 t 2006-02-14 2013-05-26 14:49:45.738 1
331 1 Eric Robert eric.robert@sakilacustomer.org 336 t 2006-02-14 2013-05-26 14:49:45.738 1
332 1 Stephen Qualls stephen.qualls@sakilacustomer.org 337 t 2006-02-14 2013-05-26 14:49:45.738 1
333 2 Andrew Purdy andrew.purdy@sakilacustomer.org 338 t 2006-02-14 2013-05-26 14:49:45.738 1
334 2 Raymond Mcwhorter raymond.mcwhorter@sakilacustomer.org 339 t 2006-02-14 2013-05-26 14:49:45.738 1
335 1 Gregory Mauldin gregory.mauldin@sakilacustomer.org 340 t 2006-02-14 2013-05-26 14:49:45.738 1
336 1 Joshua Mark joshua.mark@sakilacustomer.org 341 t 2006-02-14 2013-05-26 14:49:45.738 1
337 1 Jerry Jordon jerry.jordon@sakilacustomer.org 342 t 2006-02-14 2013-05-26 14:49:45.738 1
338 1 Dennis Gilman dennis.gilman@sakilacustomer.org 343 t 2006-02-14 2013-05-26 14:49:45.738 1
339 2 Walter Perryman walter.perryman@sakilacustomer.org 344 t 2006-02-14 2013-05-26 14:49:45.738 1
340 1 Patrick Newsom patrick.newsom@sakilacustomer.org 345 t 2006-02-14 2013-05-26 14:49:45.738 1
341 1 Peter Menard peter.menard@sakilacustomer.org 346 t 2006-02-14 2013-05-26 14:49:45.738 1
342 1 Harold Martino harold.martino@sakilacustomer.org 347 t 2006-02-14 2013-05-26 14:49:45.738 1
343 1 Douglas Graf douglas.graf@sakilacustomer.org 348 t 2006-02-14 2013-05-26 14:49:45.738 1
344 1 Henry Billingsley henry.billingsley@sakilacustomer.org 349 t 2006-02-14 2013-05-26 14:49:45.738 1
345 1 Carl Artis carl.artis@sakilacustomer.org 350 t 2006-02-14 2013-05-26 14:49:45.738 1
346 1 Arthur Simpkins arthur.simpkins@sakilacustomer.org 351 t 2006-02-14 2013-05-26 14:49:45.738 1
347 2 Ryan Salisbury ryan.salisbury@sakilacustomer.org 352 t 2006-02-14 2013-05-26 14:49:45.738 1
348 2 Roger Quintanilla roger.quintanilla@sakilacustomer.org 353 t 2006-02-14 2013-05-26 14:49:45.738 1
349 2 Joe Gilliland joe.gilliland@sakilacustomer.org 354 t 2006-02-14 2013-05-26 14:49:45.738 1
350 1 Juan Fraley juan.fraley@sakilacustomer.org 355 t 2006-02-14 2013-05-26 14:49:45.738 1
351 1 Jack Foust jack.foust@sakilacustomer.org 356 t 2006-02-14 2013-05-26 14:49:45.738 1
352 1 Albert Crouse albert.crouse@sakilacustomer.org 357 t 2006-02-14 2013-05-26 14:49:45.738 1
353 1 Jonathan Scarborough jonathan.scarborough@sakilacustomer.org 358 t 2006-02-14 2013-05-26 14:49:45.738 1
354 2 Justin Ngo justin.ngo@sakilacustomer.org 359 t 2006-02-14 2013-05-26 14:49:45.738 1
355 2 Terry Grissom terry.grissom@sakilacustomer.org 360 t 2006-02-14 2013-05-26 14:49:45.738 1
356 2 Gerald Fultz gerald.fultz@sakilacustomer.org 361 t 2006-02-14 2013-05-26 14:49:45.738 1
357 1 Keith Rico keith.rico@sakilacustomer.org 362 t 2006-02-14 2013-05-26 14:49:45.738 1
358 2 Samuel Marlow samuel.marlow@sakilacustomer.org 363 t 2006-02-14 2013-05-26 14:49:45.738 1
359 2 Willie Markham willie.markham@sakilacustomer.org 364 t 2006-02-14 2013-05-26 14:49:45.738 1
360 2 Ralph Madrigal ralph.madrigal@sakilacustomer.org 365 t 2006-02-14 2013-05-26 14:49:45.738 1
361 2 Lawrence Lawton lawrence.lawton@sakilacustomer.org 366 t 2006-02-14 2013-05-26 14:49:45.738 1
362 1 Nicholas Barfield nicholas.barfield@sakilacustomer.org 367 t 2006-02-14 2013-05-26 14:49:45.738 1
363 2 Roy Whiting roy.whiting@sakilacustomer.org 368 t 2006-02-14 2013-05-26 14:49:45.738 1
364 1 Benjamin Varney benjamin.varney@sakilacustomer.org 369 t 2006-02-14 2013-05-26 14:49:45.738 1
365 2 Bruce Schwarz bruce.schwarz@sakilacustomer.org 370 t 2006-02-14 2013-05-26 14:49:45.738 1
366 1 Brandon Huey brandon.huey@sakilacustomer.org 371 t 2006-02-14 2013-05-26 14:49:45.738 1
367 1 Adam Gooch adam.gooch@sakilacustomer.org 372 t 2006-02-14 2013-05-26 14:49:45.738 1
368 1 Harry Arce harry.arce@sakilacustomer.org 373 t 2006-02-14 2013-05-26 14:49:45.738 0
369 2 Fred Wheat fred.wheat@sakilacustomer.org 374 t 2006-02-14 2013-05-26 14:49:45.738 1
370 2 Wayne Truong wayne.truong@sakilacustomer.org 375 t 2006-02-14 2013-05-26 14:49:45.738 1
371 1 Billy Poulin billy.poulin@sakilacustomer.org 376 t 2006-02-14 2013-05-26 14:49:45.738 1
372 2 Steve Mackenzie steve.mackenzie@sakilacustomer.org 377 t 2006-02-14 2013-05-26 14:49:45.738 1
373 1 Louis Leone louis.leone@sakilacustomer.org 378 t 2006-02-14 2013-05-26 14:49:45.738 1
374 2 Jeremy Hurtado jeremy.hurtado@sakilacustomer.org 379 t 2006-02-14 2013-05-26 14:49:45.738 1
375 2 Aaron Selby aaron.selby@sakilacustomer.org 380 t 2006-02-14 2013-05-26 14:49:45.738 1
376 1 Randy Gaither randy.gaither@sakilacustomer.org 381 t 2006-02-14 2013-05-26 14:49:45.738 1
377 1 Howard Fortner howard.fortner@sakilacustomer.org 382 t 2006-02-14 2013-05-26 14:49:45.738 1
378 1 Eugene Culpepper eugene.culpepper@sakilacustomer.org 383 t 2006-02-14 2013-05-26 14:49:45.738 1
379 1 Carlos Coughlin carlos.coughlin@sakilacustomer.org 384 t 2006-02-14 2013-05-26 14:49:45.738 1
380 1 Russell Brinson russell.brinson@sakilacustomer.org 385 t 2006-02-14 2013-05-26 14:49:45.738 1
381 2 Bobby Boudreau bobby.boudreau@sakilacustomer.org 386 t 2006-02-14 2013-05-26 14:49:45.738 1
382 2 Victor Barkley victor.barkley@sakilacustomer.org 387 t 2006-02-14 2013-05-26 14:49:45.738 1
383 1 Martin Bales martin.bales@sakilacustomer.org 388 t 2006-02-14 2013-05-26 14:49:45.738 1
384 2 Ernest Stepp ernest.stepp@sakilacustomer.org 389 t 2006-02-14 2013-05-26 14:49:45.738 1
385 1 Phillip Holm phillip.holm@sakilacustomer.org 390 t 2006-02-14 2013-05-26 14:49:45.738 1
386 1 Todd Tan todd.tan@sakilacustomer.org 391 t 2006-02-14 2013-05-26 14:49:45.738 1
387 2 Jesse Schilling jesse.schilling@sakilacustomer.org 392 t 2006-02-14 2013-05-26 14:49:45.738 1
388 2 Craig Morrell craig.morrell@sakilacustomer.org 393 t 2006-02-14 2013-05-26 14:49:45.738 1
389 1 Alan Kahn alan.kahn@sakilacustomer.org 394 t 2006-02-14 2013-05-26 14:49:45.738 1
390 1 Shawn Heaton shawn.heaton@sakilacustomer.org 395 t 2006-02-14 2013-05-26 14:49:45.738 1
391 1 Clarence Gamez clarence.gamez@sakilacustomer.org 396 t 2006-02-14 2013-05-26 14:49:45.738 1
392 2 Sean Douglass sean.douglass@sakilacustomer.org 397 t 2006-02-14 2013-05-26 14:49:45.738 1
393 1 Philip Causey philip.causey@sakilacustomer.org 398 t 2006-02-14 2013-05-26 14:49:45.738 1
394 2 Chris Brothers chris.brothers@sakilacustomer.org 399 t 2006-02-14 2013-05-26 14:49:45.738 1
395 2 Johnny Turpin johnny.turpin@sakilacustomer.org 400 t 2006-02-14 2013-05-26 14:49:45.738 1
396 1 Earl Shanks earl.shanks@sakilacustomer.org 401 t 2006-02-14 2013-05-26 14:49:45.738 1
397 1 Jimmy Schrader jimmy.schrader@sakilacustomer.org 402 t 2006-02-14 2013-05-26 14:49:45.738 1
398 1 Antonio Meek antonio.meek@sakilacustomer.org 403 t 2006-02-14 2013-05-26 14:49:45.738 1
399 1 Danny Isom danny.isom@sakilacustomer.org 404 t 2006-02-14 2013-05-26 14:49:45.738 1
400 2 Bryan Hardison bryan.hardison@sakilacustomer.org 405 t 2006-02-14 2013-05-26 14:49:45.738 1
401 2 Tony Carranza tony.carranza@sakilacustomer.org 406 t 2006-02-14 2013-05-26 14:49:45.738 1
402 1 Luis Yanez luis.yanez@sakilacustomer.org 407 t 2006-02-14 2013-05-26 14:49:45.738 1
403 1 Mike Way mike.way@sakilacustomer.org 408 t 2006-02-14 2013-05-26 14:49:45.738 1
404 2 Stanley Scroggins stanley.scroggins@sakilacustomer.org 409 t 2006-02-14 2013-05-26 14:49:45.738 1
405 1 Leonard Schofield leonard.schofield@sakilacustomer.org 410 t 2006-02-14 2013-05-26 14:49:45.738 1
406 1 Nathan Runyon nathan.runyon@sakilacustomer.org 411 t 2006-02-14 2013-05-26 14:49:45.738 0
407 1 Dale Ratcliff dale.ratcliff@sakilacustomer.org 412 t 2006-02-14 2013-05-26 14:49:45.738 1
408 1 Manuel Murrell manuel.murrell@sakilacustomer.org 413 t 2006-02-14 2013-05-26 14:49:45.738 1
409 2 Rodney Moeller rodney.moeller@sakilacustomer.org 414 t 2006-02-14 2013-05-26 14:49:45.738 1
410 2 Curtis Irby curtis.irby@sakilacustomer.org 415 t 2006-02-14 2013-05-26 14:49:45.738 1
411 1 Norman Currier norman.currier@sakilacustomer.org 416 t 2006-02-14 2013-05-26 14:49:45.738 1
412 2 Allen Butterfield allen.butterfield@sakilacustomer.org 417 t 2006-02-14 2013-05-26 14:49:45.738 1
413 2 Marvin Yee marvin.yee@sakilacustomer.org 418 t 2006-02-14 2013-05-26 14:49:45.738 1
414 1 Vincent Ralston vincent.ralston@sakilacustomer.org 419 t 2006-02-14 2013-05-26 14:49:45.738 1
415 1 Glenn Pullen glenn.pullen@sakilacustomer.org 420 t 2006-02-14 2013-05-26 14:49:45.738 1
416 2 Jeffery Pinson jeffery.pinson@sakilacustomer.org 421 t 2006-02-14 2013-05-26 14:49:45.738 1
417 1 Travis Estep travis.estep@sakilacustomer.org 422 t 2006-02-14 2013-05-26 14:49:45.738 1
418 2 Jeff East jeff.east@sakilacustomer.org 423 t 2006-02-14 2013-05-26 14:49:45.738 1
419 1 Chad Carbone chad.carbone@sakilacustomer.org 424 t 2006-02-14 2013-05-26 14:49:45.738 1
420 1 Jacob Lance jacob.lance@sakilacustomer.org 425 t 2006-02-14 2013-05-26 14:49:45.738 1
421 1 Lee Hawks lee.hawks@sakilacustomer.org 426 t 2006-02-14 2013-05-26 14:49:45.738 1
422 1 Melvin Ellington melvin.ellington@sakilacustomer.org 427 t 2006-02-14 2013-05-26 14:49:45.738 1
423 2 Alfred Casillas alfred.casillas@sakilacustomer.org 428 t 2006-02-14 2013-05-26 14:49:45.738 1
424 2 Kyle Spurlock kyle.spurlock@sakilacustomer.org 429 t 2006-02-14 2013-05-26 14:49:45.738 1
425 2 Francis Sikes francis.sikes@sakilacustomer.org 430 t 2006-02-14 2013-05-26 14:49:45.738 1
426 1 Bradley Motley bradley.motley@sakilacustomer.org 431 t 2006-02-14 2013-05-26 14:49:45.738 1
427 2 Jesus Mccartney jesus.mccartney@sakilacustomer.org 432 t 2006-02-14 2013-05-26 14:49:45.738 1
428 2 Herbert Kruger herbert.kruger@sakilacustomer.org 433 t 2006-02-14 2013-05-26 14:49:45.738 1
429 2 Frederick Isbell frederick.isbell@sakilacustomer.org 434 t 2006-02-14 2013-05-26 14:49:45.738 1
430 1 Ray Houle ray.houle@sakilacustomer.org 435 t 2006-02-14 2013-05-26 14:49:45.738 1
431 2 Joel Francisco joel.francisco@sakilacustomer.org 436 t 2006-02-14 2013-05-26 14:49:45.738 1
432 1 Edwin Burk edwin.burk@sakilacustomer.org 437 t 2006-02-14 2013-05-26 14:49:45.738 1
433 1 Don Bone don.bone@sakilacustomer.org 438 t 2006-02-14 2013-05-26 14:49:45.738 1
434 1 Eddie Tomlin eddie.tomlin@sakilacustomer.org 439 t 2006-02-14 2013-05-26 14:49:45.738 1
435 2 Ricky Shelby ricky.shelby@sakilacustomer.org 440 t 2006-02-14 2013-05-26 14:49:45.738 1
436 1 Troy Quigley troy.quigley@sakilacustomer.org 441 t 2006-02-14 2013-05-26 14:49:45.738 1
437 2 Randall Neumann randall.neumann@sakilacustomer.org 442 t 2006-02-14 2013-05-26 14:49:45.738 1
438 1 Barry Lovelace barry.lovelace@sakilacustomer.org 443 t 2006-02-14 2013-05-26 14:49:45.738 1
439 2 Alexander Fennell alexander.fennell@sakilacustomer.org 444 t 2006-02-14 2013-05-26 14:49:45.738 1
440 1 Bernard Colby bernard.colby@sakilacustomer.org 445 t 2006-02-14 2013-05-26 14:49:45.738 1
441 1 Mario Cheatham mario.cheatham@sakilacustomer.org 446 t 2006-02-14 2013-05-26 14:49:45.738 1
442 1 Leroy Bustamante leroy.bustamante@sakilacustomer.org 447 t 2006-02-14 2013-05-26 14:49:45.738 1
443 2 Francisco Skidmore francisco.skidmore@sakilacustomer.org 448 t 2006-02-14 2013-05-26 14:49:45.738 1
444 2 Marcus Hidalgo marcus.hidalgo@sakilacustomer.org 449 t 2006-02-14 2013-05-26 14:49:45.738 1
445 1 Micheal Forman micheal.forman@sakilacustomer.org 450 t 2006-02-14 2013-05-26 14:49:45.738 1
446 2 Theodore Culp theodore.culp@sakilacustomer.org 451 t 2006-02-14 2013-05-26 14:49:45.738 0
447 1 Clifford Bowens clifford.bowens@sakilacustomer.org 452 t 2006-02-14 2013-05-26 14:49:45.738 1
448 1 Miguel Betancourt miguel.betancourt@sakilacustomer.org 453 t 2006-02-14 2013-05-26 14:49:45.738 1
449 2 Oscar Aquino oscar.aquino@sakilacustomer.org 454 t 2006-02-14 2013-05-26 14:49:45.738 1
450 1 Jay Robb jay.robb@sakilacustomer.org 455 t 2006-02-14 2013-05-26 14:49:45.738 1
451 1 Jim Rea jim.rea@sakilacustomer.org 456 t 2006-02-14 2013-05-26 14:49:45.738 1
452 1 Tom Milner tom.milner@sakilacustomer.org 457 t 2006-02-14 2013-05-26 14:49:45.738 1
453 1 Calvin Martel calvin.martel@sakilacustomer.org 458 t 2006-02-14 2013-05-26 14:49:45.738 1
454 2 Alex Gresham alex.gresham@sakilacustomer.org 459 t 2006-02-14 2013-05-26 14:49:45.738 1
455 2 Jon Wiles jon.wiles@sakilacustomer.org 460 t 2006-02-14 2013-05-26 14:49:45.738 1
456 2 Ronnie Ricketts ronnie.ricketts@sakilacustomer.org 461 t 2006-02-14 2013-05-26 14:49:45.738 1
457 2 Bill Gavin bill.gavin@sakilacustomer.org 462 t 2006-02-14 2013-05-26 14:49:45.738 1
458 1 Lloyd Dowd lloyd.dowd@sakilacustomer.org 463 t 2006-02-14 2013-05-26 14:49:45.738 1
459 1 Tommy Collazo tommy.collazo@sakilacustomer.org 464 t 2006-02-14 2013-05-26 14:49:45.738 1
460 1 Leon Bostic leon.bostic@sakilacustomer.org 465 t 2006-02-14 2013-05-26 14:49:45.738 1
461 1 Derek Blakely derek.blakely@sakilacustomer.org 466 t 2006-02-14 2013-05-26 14:49:45.738 1
462 2 Warren Sherrod warren.sherrod@sakilacustomer.org 467 t 2006-02-14 2013-05-26 14:49:45.738 1
463 2 Darrell Power darrell.power@sakilacustomer.org 468 t 2006-02-14 2013-05-26 14:49:45.738 1
464 1 Jerome Kenyon jerome.kenyon@sakilacustomer.org 469 t 2006-02-14 2013-05-26 14:49:45.738 1
465 1 Floyd Gandy floyd.gandy@sakilacustomer.org 470 t 2006-02-14 2013-05-26 14:49:45.738 1
466 1 Leo Ebert leo.ebert@sakilacustomer.org 471 t 2006-02-14 2013-05-26 14:49:45.738 1
467 2 Alvin Deloach alvin.deloach@sakilacustomer.org 472 t 2006-02-14 2013-05-26 14:49:45.738 1
468 1 Tim Cary tim.cary@sakilacustomer.org 473 t 2006-02-14 2013-05-26 14:49:45.738 1
469 2 Wesley Bull wesley.bull@sakilacustomer.org 474 t 2006-02-14 2013-05-26 14:49:45.738 1
470 1 Gordon Allard gordon.allard@sakilacustomer.org 475 t 2006-02-14 2013-05-26 14:49:45.738 1
471 1 Dean Sauer dean.sauer@sakilacustomer.org 476 t 2006-02-14 2013-05-26 14:49:45.738 1
472 1 Greg Robins greg.robins@sakilacustomer.org 477 t 2006-02-14 2013-05-26 14:49:45.738 1
473 2 Jorge Olivares jorge.olivares@sakilacustomer.org 478 t 2006-02-14 2013-05-26 14:49:45.738 1
474 2 Dustin Gillette dustin.gillette@sakilacustomer.org 479 t 2006-02-14 2013-05-26 14:49:45.738 1
475 2 Pedro Chestnut pedro.chestnut@sakilacustomer.org 480 t 2006-02-14 2013-05-26 14:49:45.738 1
476 1 Derrick Bourque derrick.bourque@sakilacustomer.org 481 t 2006-02-14 2013-05-26 14:49:45.738 1
477 1 Dan Paine dan.paine@sakilacustomer.org 482 t 2006-02-14 2013-05-26 14:49:45.738 1
478 1 Lewis Lyman lewis.lyman@sakilacustomer.org 483 t 2006-02-14 2013-05-26 14:49:45.738 1
479 1 Zachary Hite zachary.hite@sakilacustomer.org 484 t 2006-02-14 2013-05-26 14:49:45.738 1
480 1 Corey Hauser corey.hauser@sakilacustomer.org 485 t 2006-02-14 2013-05-26 14:49:45.738 1
481 1 Herman Devore herman.devore@sakilacustomer.org 486 t 2006-02-14 2013-05-26 14:49:45.738 1
482 1 Maurice Crawley maurice.crawley@sakilacustomer.org 487 t 2006-02-14 2013-05-26 14:49:45.738 0
483 2 Vernon Chapa vernon.chapa@sakilacustomer.org 488 t 2006-02-14 2013-05-26 14:49:45.738 1
484 1 Roberto Vu roberto.vu@sakilacustomer.org 489 t 2006-02-14 2013-05-26 14:49:45.738 1
485 1 Clyde Tobias clyde.tobias@sakilacustomer.org 490 t 2006-02-14 2013-05-26 14:49:45.738 1
486 1 Glen Talbert glen.talbert@sakilacustomer.org 491 t 2006-02-14 2013-05-26 14:49:45.738 1
487 2 Hector Poindexter hector.poindexter@sakilacustomer.org 492 t 2006-02-14 2013-05-26 14:49:45.738 1
488 2 Shane Millard shane.millard@sakilacustomer.org 493 t 2006-02-14 2013-05-26 14:49:45.738 1
489 1 Ricardo Meador ricardo.meador@sakilacustomer.org 494 t 2006-02-14 2013-05-26 14:49:45.738 1
490 1 Sam Mcduffie sam.mcduffie@sakilacustomer.org 495 t 2006-02-14 2013-05-26 14:49:45.738 1
491 2 Rick Mattox rick.mattox@sakilacustomer.org 496 t 2006-02-14 2013-05-26 14:49:45.738 1
492 2 Lester Kraus lester.kraus@sakilacustomer.org 497 t 2006-02-14 2013-05-26 14:49:45.738 1
493 1 Brent Harkins brent.harkins@sakilacustomer.org 498 t 2006-02-14 2013-05-26 14:49:45.738 1
494 2 Ramon Choate ramon.choate@sakilacustomer.org 499 t 2006-02-14 2013-05-26 14:49:45.738 1
495 2 Charlie Bess charlie.bess@sakilacustomer.org 500 t 2006-02-14 2013-05-26 14:49:45.738 1
496 2 Tyler Wren tyler.wren@sakilacustomer.org 501 t 2006-02-14 2013-05-26 14:49:45.738 1
497 2 Gilbert Sledge gilbert.sledge@sakilacustomer.org 502 t 2006-02-14 2013-05-26 14:49:45.738 1
498 1 Gene Sanborn gene.sanborn@sakilacustomer.org 503 t 2006-02-14 2013-05-26 14:49:45.738 1
499 2 Marc Outlaw marc.outlaw@sakilacustomer.org 504 t 2006-02-14 2013-05-26 14:49:45.738 1
500 1 Reginald Kinder reginald.kinder@sakilacustomer.org 505 t 2006-02-14 2013-05-26 14:49:45.738 1
501 1 Ruben Geary ruben.geary@sakilacustomer.org 506 t 2006-02-14 2013-05-26 14:49:45.738 1
502 1 Brett Cornwell brett.cornwell@sakilacustomer.org 507 t 2006-02-14 2013-05-26 14:49:45.738 1
503 1 Angel Barclay angel.barclay@sakilacustomer.org 508 t 2006-02-14 2013-05-26 14:49:45.738 1
504 1 Nathaniel Adam nathaniel.adam@sakilacustomer.org 509 t 2006-02-14 2013-05-26 14:49:45.738 1
505 1 Rafael Abney rafael.abney@sakilacustomer.org 510 t 2006-02-14 2013-05-26 14:49:45.738 1
506 2 Leslie Seward leslie.seward@sakilacustomer.org 511 t 2006-02-14 2013-05-26 14:49:45.738 1
507 2 Edgar Rhoads edgar.rhoads@sakilacustomer.org 512 t 2006-02-14 2013-05-26 14:49:45.738 1
508 2 Milton Howland milton.howland@sakilacustomer.org 513 t 2006-02-14 2013-05-26 14:49:45.738 1
509 1 Raul Fortier raul.fortier@sakilacustomer.org 514 t 2006-02-14 2013-05-26 14:49:45.738 1
510 2 Ben Easter ben.easter@sakilacustomer.org 515 t 2006-02-14 2013-05-26 14:49:45.738 0
511 1 Chester Benner chester.benner@sakilacustomer.org 516 t 2006-02-14 2013-05-26 14:49:45.738 1
512 1 Cecil Vines cecil.vines@sakilacustomer.org 517 t 2006-02-14 2013-05-26 14:49:45.738 1
513 2 Duane Tubbs duane.tubbs@sakilacustomer.org 519 t 2006-02-14 2013-05-26 14:49:45.738 1
514 2 Franklin Troutman franklin.troutman@sakilacustomer.org 520 t 2006-02-14 2013-05-26 14:49:45.738 1
515 1 Andre Rapp andre.rapp@sakilacustomer.org 521 t 2006-02-14 2013-05-26 14:49:45.738 1
516 2 Elmer Noe elmer.noe@sakilacustomer.org 522 t 2006-02-14 2013-05-26 14:49:45.738 1
517 2 Brad Mccurdy brad.mccurdy@sakilacustomer.org 523 t 2006-02-14 2013-05-26 14:49:45.738 1
518 1 Gabriel Harder gabriel.harder@sakilacustomer.org 524 t 2006-02-14 2013-05-26 14:49:45.738 1
519 2 Ron Deluca ron.deluca@sakilacustomer.org 525 t 2006-02-14 2013-05-26 14:49:45.738 1
520 2 Mitchell Westmoreland mitchell.westmoreland@sakilacustomer.org 526 t 2006-02-14 2013-05-26 14:49:45.738 1
521 2 Roland South roland.south@sakilacustomer.org 527 t 2006-02-14 2013-05-26 14:49:45.738 1
522 2 Arnold Havens arnold.havens@sakilacustomer.org 528 t 2006-02-14 2013-05-26 14:49:45.738 1
523 1 Harvey Guajardo harvey.guajardo@sakilacustomer.org 529 t 2006-02-14 2013-05-26 14:49:45.738 1
525 2 Adrian Clary adrian.clary@sakilacustomer.org 531 t 2006-02-14 2013-05-26 14:49:45.738 1
526 2 Karl Seal karl.seal@sakilacustomer.org 532 t 2006-02-14 2013-05-26 14:49:45.738 1
527 1 Cory Meehan cory.meehan@sakilacustomer.org 533 t 2006-02-14 2013-05-26 14:49:45.738 1
528 1 Claude Herzog claude.herzog@sakilacustomer.org 534 t 2006-02-14 2013-05-26 14:49:45.738 1
529 2 Erik Guillen erik.guillen@sakilacustomer.org 535 t 2006-02-14 2013-05-26 14:49:45.738 1
530 2 Darryl Ashcraft darryl.ashcraft@sakilacustomer.org 536 t 2006-02-14 2013-05-26 14:49:45.738 1
531 2 Jamie Waugh jamie.waugh@sakilacustomer.org 537 t 2006-02-14 2013-05-26 14:49:45.738 1
532 2 Neil Renner neil.renner@sakilacustomer.org 538 t 2006-02-14 2013-05-26 14:49:45.738 1
533 1 Jessie Milam jessie.milam@sakilacustomer.org 539 t 2006-02-14 2013-05-26 14:49:45.738 1
534 1 Christian Jung christian.jung@sakilacustomer.org 540 t 2006-02-14 2013-05-26 14:49:45.738 0
535 1 Javier Elrod javier.elrod@sakilacustomer.org 541 t 2006-02-14 2013-05-26 14:49:45.738 1
536 2 Fernando Churchill fernando.churchill@sakilacustomer.org 542 t 2006-02-14 2013-05-26 14:49:45.738 1
537 2 Clinton Buford clinton.buford@sakilacustomer.org 543 t 2006-02-14 2013-05-26 14:49:45.738 1
538 2 Ted Breaux ted.breaux@sakilacustomer.org 544 t 2006-02-14 2013-05-26 14:49:45.738 1
539 1 Mathew Bolin mathew.bolin@sakilacustomer.org 545 t 2006-02-14 2013-05-26 14:49:45.738 1
540 1 Tyrone Asher tyrone.asher@sakilacustomer.org 546 t 2006-02-14 2013-05-26 14:49:45.738 1
541 2 Darren Windham darren.windham@sakilacustomer.org 547 t 2006-02-14 2013-05-26 14:49:45.738 1
542 2 Lonnie Tirado lonnie.tirado@sakilacustomer.org 548 t 2006-02-14 2013-05-26 14:49:45.738 1
543 1 Lance Pemberton lance.pemberton@sakilacustomer.org 549 t 2006-02-14 2013-05-26 14:49:45.738 1
544 2 Cody Nolen cody.nolen@sakilacustomer.org 550 t 2006-02-14 2013-05-26 14:49:45.738 1
545 2 Julio Noland julio.noland@sakilacustomer.org 551 t 2006-02-14 2013-05-26 14:49:45.738 1
546 1 Kelly Knott kelly.knott@sakilacustomer.org 552 t 2006-02-14 2013-05-26 14:49:45.738 1
547 1 Kurt Emmons kurt.emmons@sakilacustomer.org 553 t 2006-02-14 2013-05-26 14:49:45.738 1
548 1 Allan Cornish allan.cornish@sakilacustomer.org 554 t 2006-02-14 2013-05-26 14:49:45.738 1
549 1 Nelson Christenson nelson.christenson@sakilacustomer.org 555 t 2006-02-14 2013-05-26 14:49:45.738 1
550 2 Guy Brownlee guy.brownlee@sakilacustomer.org 556 t 2006-02-14 2013-05-26 14:49:45.738 1
551 2 Clayton Barbee clayton.barbee@sakilacustomer.org 557 t 2006-02-14 2013-05-26 14:49:45.738 1
552 2 Hugh Waldrop hugh.waldrop@sakilacustomer.org 558 t 2006-02-14 2013-05-26 14:49:45.738 1
553 1 Max Pitt max.pitt@sakilacustomer.org 559 t 2006-02-14 2013-05-26 14:49:45.738 1
554 1 Dwayne Olvera dwayne.olvera@sakilacustomer.org 560 t 2006-02-14 2013-05-26 14:49:45.738 1
555 1 Dwight Lombardi dwight.lombardi@sakilacustomer.org 561 t 2006-02-14 2013-05-26 14:49:45.738 1
556 2 Armando Gruber armando.gruber@sakilacustomer.org 562 t 2006-02-14 2013-05-26 14:49:45.738 1
557 1 Felix Gaffney felix.gaffney@sakilacustomer.org 563 t 2006-02-14 2013-05-26 14:49:45.738 1
558 1 Jimmie Eggleston jimmie.eggleston@sakilacustomer.org 564 t 2006-02-14 2013-05-26 14:49:45.738 0
559 2 Everett Banda everett.banda@sakilacustomer.org 565 t 2006-02-14 2013-05-26 14:49:45.738 1
560 1 Jordan Archuleta jordan.archuleta@sakilacustomer.org 566 t 2006-02-14 2013-05-26 14:49:45.738 1
561 2 Ian Still ian.still@sakilacustomer.org 567 t 2006-02-14 2013-05-26 14:49:45.738 1
562 1 Wallace Slone wallace.slone@sakilacustomer.org 568 t 2006-02-14 2013-05-26 14:49:45.738 1
563 2 Ken Prewitt ken.prewitt@sakilacustomer.org 569 t 2006-02-14 2013-05-26 14:49:45.738 1
564 2 Bob Pfeiffer bob.pfeiffer@sakilacustomer.org 570 t 2006-02-14 2013-05-26 14:49:45.738 1
565 2 Jaime Nettles jaime.nettles@sakilacustomer.org 571 t 2006-02-14 2013-05-26 14:49:45.738 1
566 1 Casey Mena casey.mena@sakilacustomer.org 572 t 2006-02-14 2013-05-26 14:49:45.738 1
567 2 Alfredo Mcadams alfredo.mcadams@sakilacustomer.org 573 t 2006-02-14 2013-05-26 14:49:45.738 1
568 2 Alberto Henning alberto.henning@sakilacustomer.org 574 t 2006-02-14 2013-05-26 14:49:45.738 1
569 2 Dave Gardiner dave.gardiner@sakilacustomer.org 575 t 2006-02-14 2013-05-26 14:49:45.738 1
570 2 Ivan Cromwell ivan.cromwell@sakilacustomer.org 576 t 2006-02-14 2013-05-26 14:49:45.738 1
571 2 Johnnie Chisholm johnnie.chisholm@sakilacustomer.org 577 t 2006-02-14 2013-05-26 14:49:45.738 1
572 1 Sidney Burleson sidney.burleson@sakilacustomer.org 578 t 2006-02-14 2013-05-26 14:49:45.738 1
573 1 Byron Box byron.box@sakilacustomer.org 579 t 2006-02-14 2013-05-26 14:49:45.738 1
574 2 Julian Vest julian.vest@sakilacustomer.org 580 t 2006-02-14 2013-05-26 14:49:45.738 1
575 2 Isaac Oglesby isaac.oglesby@sakilacustomer.org 581 t 2006-02-14 2013-05-26 14:49:45.738 1
576 2 Morris Mccarter morris.mccarter@sakilacustomer.org 582 t 2006-02-14 2013-05-26 14:49:45.738 1
577 2 Clifton Malcolm clifton.malcolm@sakilacustomer.org 583 t 2006-02-14 2013-05-26 14:49:45.738 1
578 2 Willard Lumpkin willard.lumpkin@sakilacustomer.org 584 t 2006-02-14 2013-05-26 14:49:45.738 1
579 2 Daryl Larue daryl.larue@sakilacustomer.org 585 t 2006-02-14 2013-05-26 14:49:45.738 1
580 1 Ross Grey ross.grey@sakilacustomer.org 586 t 2006-02-14 2013-05-26 14:49:45.738 1
581 1 Virgil Wofford virgil.wofford@sakilacustomer.org 587 t 2006-02-14 2013-05-26 14:49:45.738 1
582 2 Andy Vanhorn andy.vanhorn@sakilacustomer.org 588 t 2006-02-14 2013-05-26 14:49:45.738 1
583 1 Marshall Thorn marshall.thorn@sakilacustomer.org 589 t 2006-02-14 2013-05-26 14:49:45.738 1
584 2 Salvador Teel salvador.teel@sakilacustomer.org 590 t 2006-02-14 2013-05-26 14:49:45.738 1
585 1 Perry Swafford perry.swafford@sakilacustomer.org 591 t 2006-02-14 2013-05-26 14:49:45.738 1
586 1 Kirk Stclair kirk.stclair@sakilacustomer.org 592 t 2006-02-14 2013-05-26 14:49:45.738 1
587 1 Sergio Stanfield sergio.stanfield@sakilacustomer.org 593 t 2006-02-14 2013-05-26 14:49:45.738 1
588 1 Marion Ocampo marion.ocampo@sakilacustomer.org 594 t 2006-02-14 2013-05-26 14:49:45.738 1
589 1 Tracy Herrmann tracy.herrmann@sakilacustomer.org 595 t 2006-02-14 2013-05-26 14:49:45.738 1
590 2 Seth Hannon seth.hannon@sakilacustomer.org 596 t 2006-02-14 2013-05-26 14:49:45.738 1
591 1 Kent Arsenault kent.arsenault@sakilacustomer.org 597 t 2006-02-14 2013-05-26 14:49:45.738 1
592 1 Terrance Roush terrance.roush@sakilacustomer.org 598 t 2006-02-14 2013-05-26 14:49:45.738 0
593 2 Rene Mcalister rene.mcalister@sakilacustomer.org 599 t 2006-02-14 2013-05-26 14:49:45.738 1
594 1 Eduardo Hiatt eduardo.hiatt@sakilacustomer.org 600 t 2006-02-14 2013-05-26 14:49:45.738 1
595 1 Terrence Gunderson terrence.gunderson@sakilacustomer.org 601 t 2006-02-14 2013-05-26 14:49:45.738 1
596 1 Enrique Forsythe enrique.forsythe@sakilacustomer.org 602 t 2006-02-14 2013-05-26 14:49:45.738 1
597 1 Freddie Duggan freddie.duggan@sakilacustomer.org 603 t 2006-02-14 2013-05-26 14:49:45.738 1
598 1 Wade Delvalle wade.delvalle@sakilacustomer.org 604 t 2006-02-14 2013-05-26 14:49:45.738 1
599 2 Austin Cintron austin.cintron@sakilacustomer.org 605 t 2006-02-14 2013-05-26 14:49:45.738 1
\.
1 Penelope Guiness 2013-05-26 14:47:57.62
2 Nick Wahlberg 2013-05-26 14:47:57.62
3 Ed Chase 2013-05-26 14:47:57.62
4 Jennifer Davis 2013-05-26 14:47:57.62
5 Johnny Lollobrigida 2013-05-26 14:47:57.62
6 Bette Nicholson 2013-05-26 14:47:57.62
7 Grace Mostel 2013-05-26 14:47:57.62
8 Matthew Johansson 2013-05-26 14:47:57.62
9 Joe Swank 2013-05-26 14:47:57.62
10 Christian Gable 2013-05-26 14:47:57.62
11 Zero Cage 2013-05-26 14:47:57.62
12 Karl Berry 2013-05-26 14:47:57.62
13 Uma Wood 2013-05-26 14:47:57.62
14 Vivien Bergen 2013-05-26 14:47:57.62
15 Cuba Olivier 2013-05-26 14:47:57.62
16 Fred Costner 2013-05-26 14:47:57.62
17 Helen Voight 2013-05-26 14:47:57.62
18 Dan Torn 2013-05-26 14:47:57.62
19 Bob Fawcett 2013-05-26 14:47:57.62
20 Lucille Tracy 2013-05-26 14:47:57.62
21 Kirsten Paltrow 2013-05-26 14:47:57.62
22 Elvis Marx 2013-05-26 14:47:57.62
23 Sandra Kilmer 2013-05-26 14:47:57.62
24 Cameron Streep 2013-05-26 14:47:57.62
25 Kevin Bloom 2013-05-26 14:47:57.62
26 Rip Crawford 2013-05-26 14:47:57.62
27 Julia Mcqueen 2013-05-26 14:47:57.62
28 Woody Hoffman 2013-05-26 14:47:57.62
29 Alec Wayne 2013-05-26 14:47:57.62
30 Sandra Peck 2013-05-26 14:47:57.62
31 Sissy Sobieski 2013-05-26 14:47:57.62
32 Tim Hackman 2013-05-26 14:47:57.62
33 Milla Peck 2013-05-26 14:47:57.62
34 Audrey Olivier 2013-05-26 14:47:57.62
35 Judy Dean 2013-05-26 14:47:57.62
36 Burt Dukakis 2013-05-26 14:47:57.62
37 Val Bolger 2013-05-26 14:47:57.62
38 Tom Mckellen 2013-05-26 14:47:57.62
39 Goldie Brody 2013-05-26 14:47:57.62
40 Johnny Cage 2013-05-26 14:47:57.62
41 Jodie Degeneres 2013-05-26 14:47:57.62
42 Tom Miranda 2013-05-26 14:47:57.62
43 Kirk Jovovich 2013-05-26 14:47:57.62
44 Nick Stallone 2013-05-26 14:47:57.62
45 Reese Kilmer 2013-05-26 14:47:57.62
46 Parker Goldberg 2013-05-26 14:47:57.62
47 Julia Barrymore 2013-05-26 14:47:57.62
48 Frances Day-Lewis 2013-05-26 14:47:57.62
49 Anne Cronyn 2013-05-26 14:47:57.62
50 Natalie Hopkins 2013-05-26 14:47:57.62
51 Gary Phoenix 2013-05-26 14:47:57.62
52 Carmen Hunt 2013-05-26 14:47:57.62
53 Mena Temple 2013-05-26 14:47:57.62
54 Penelope Pinkett 2013-05-26 14:47:57.62
55 Fay Kilmer 2013-05-26 14:47:57.62
56 Dan Harris 2013-05-26 14:47:57.62
57 Jude Cruise 2013-05-26 14:47:57.62
58 Christian Akroyd 2013-05-26 14:47:57.62
59 Dustin Tautou 2013-05-26 14:47:57.62
60 Henry Berry 2013-05-26 14:47:57.62
61 Christian Neeson 2013-05-26 14:47:57.62
62 Jayne Neeson 2013-05-26 14:47:57.62
63 Cameron Wray 2013-05-26 14:47:57.62
64 Ray Johansson 2013-05-26 14:47:57.62
65 Angela Hudson 2013-05-26 14:47:57.62
66 Mary Tandy 2013-05-26 14:47:57.62
67 Jessica Bailey 2013-05-26 14:47:57.62
68 Rip Winslet 2013-05-26 14:47:57.62
69 Kenneth Paltrow 2013-05-26 14:47:57.62
70 Michelle Mcconaughey 2013-05-26 14:47:57.62
71 Adam Grant 2013-05-26 14:47:57.62
72 Sean Williams 2013-05-26 14:47:57.62
73 Gary Penn 2013-05-26 14:47:57.62
74 Milla Keitel 2013-05-26 14:47:57.62
75 Burt Posey 2013-05-26 14:47:57.62
76 Angelina Astaire 2013-05-26 14:47:57.62
77 Cary Mcconaughey 2013-05-26 14:47:57.62
78 Groucho Sinatra 2013-05-26 14:47:57.62
79 Mae Hoffman 2013-05-26 14:47:57.62
80 Ralph Cruz 2013-05-26 14:47:57.62
81 Scarlett Damon 2013-05-26 14:47:57.62
82 Woody Jolie 2013-05-26 14:47:57.62
83 Ben Willis 2013-05-26 14:47:57.62
84 James Pitt 2013-05-26 14:47:57.62
85 Minnie Zellweger 2013-05-26 14:47:57.62
143 River Dean 2013-05-26 14:47:57.62
86 Greg Chaplin 2013-05-26 14:47:57.62
87 Spencer Peck 2013-05-26 14:47:57.62
88 Kenneth Pesci 2013-05-26 14:47:57.62
89 Charlize Dench 2013-05-26 14:47:57.62
90 Sean Guiness 2013-05-26 14:47:57.62
91 Christopher Berry 2013-05-26 14:47:57.62
92 Kirsten Akroyd 2013-05-26 14:47:57.62
93 Ellen Presley 2013-05-26 14:47:57.62
94 Kenneth Torn 2013-05-26 14:47:57.62
95 Daryl Wahlberg 2013-05-26 14:47:57.62
96 Gene Willis 2013-05-26 14:47:57.62
97 Meg Hawke 2013-05-26 14:47:57.62
98 Chris Bridges 2013-05-26 14:47:57.62
99 Jim Mostel 2013-05-26 14:47:57.62
100 Spencer Depp 2013-05-26 14:47:57.62
101 Susan Davis 2013-05-26 14:47:57.62
102 Walter Torn 2013-05-26 14:47:57.62
103 Matthew Leigh 2013-05-26 14:47:57.62
104 Penelope Cronyn 2013-05-26 14:47:57.62
105 Sidney Crowe 2013-05-26 14:47:57.62
106 Groucho Dunst 2013-05-26 14:47:57.62
107 Gina Degeneres 2013-05-26 14:47:57.62
108 Warren Nolte 2013-05-26 14:47:57.62
109 Sylvester Dern 2013-05-26 14:47:57.62
110 Susan Davis 2013-05-26 14:47:57.62
111 Cameron Zellweger 2013-05-26 14:47:57.62
112 Russell Bacall 2013-05-26 14:47:57.62
113 Morgan Hopkins 2013-05-26 14:47:57.62
114 Morgan Mcdormand 2013-05-26 14:47:57.62
115 Harrison Bale 2013-05-26 14:47:57.62
116 Dan Streep 2013-05-26 14:47:57.62
117 Renee Tracy 2013-05-26 14:47:57.62
118 Cuba Allen 2013-05-26 14:47:57.62
119 Warren Jackman 2013-05-26 14:47:57.62
120 Penelope Monroe 2013-05-26 14:47:57.62
121 Liza Bergman 2013-05-26 14:47:57.62
122 Salma Nolte 2013-05-26 14:47:57.62
123 Julianne Dench 2013-05-26 14:47:57.62
124 Scarlett Bening 2013-05-26 14:47:57.62
125 Albert Nolte 2013-05-26 14:47:57.62
126 Frances Tomei 2013-05-26 14:47:57.62
127 Kevin Garland 2013-05-26 14:47:57.62
128 Cate Mcqueen 2013-05-26 14:47:57.62
129 Daryl Crawford 2013-05-26 14:47:57.62
130 Greta Keitel 2013-05-26 14:47:57.62
131 Jane Jackman 2013-05-26 14:47:57.62
132 Adam Hopper 2013-05-26 14:47:57.62
133 Richard Penn 2013-05-26 14:47:57.62
134 Gene Hopkins 2013-05-26 14:47:57.62
135 Rita Reynolds 2013-05-26 14:47:57.62
136 Ed Mansfield 2013-05-26 14:47:57.62
137 Morgan Williams 2013-05-26 14:47:57.62
138 Lucille Dee 2013-05-26 14:47:57.62
139 Ewan Gooding 2013-05-26 14:47:57.62
140 Whoopi Hurt 2013-05-26 14:47:57.62
141 Cate Harris 2013-05-26 14:47:57.62
142 Jada Ryder 2013-05-26 14:47:57.62
144 Angela Witherspoon 2013-05-26 14:47:57.62
145 Kim Allen 2013-05-26 14:47:57.62
146 Albert Johansson 2013-05-26 14:47:57.62
147 Fay Winslet 2013-05-26 14:47:57.62
148 Emily Dee 2013-05-26 14:47:57.62
149 Russell Temple 2013-05-26 14:47:57.62
150 Jayne Nolte 2013-05-26 14:47:57.62
151 Geoffrey Heston 2013-05-26 14:47:57.62
152 Ben Harris 2013-05-26 14:47:57.62
153 Minnie Kilmer 2013-05-26 14:47:57.62
154 Meryl Gibson 2013-05-26 14:47:57.62
155 Ian Tandy 2013-05-26 14:47:57.62
156 Fay Wood 2013-05-26 14:47:57.62
157 Greta Malden 2013-05-26 14:47:57.62
158 Vivien Basinger 2013-05-26 14:47:57.62
159 Laura Brody 2013-05-26 14:47:57.62
160 Chris Depp 2013-05-26 14:47:57.62
161 Harvey Hope 2013-05-26 14:47:57.62
162 Oprah Kilmer 2013-05-26 14:47:57.62
163 Christopher West 2013-05-26 14:47:57.62
164 Humphrey Willis 2013-05-26 14:47:57.62
165 Al Garland 2013-05-26 14:47:57.62
166 Nick Degeneres 2013-05-26 14:47:57.62
167 Laurence Bullock 2013-05-26 14:47:57.62
168 Will Wilson 2013-05-26 14:47:57.62
169 Kenneth Hoffman 2013-05-26 14:47:57.62
170 Mena Hopper 2013-05-26 14:47:57.62
171 Olympia Pfeiffer 2013-05-26 14:47:57.62
172 Groucho Williams 2013-05-26 14:47:57.62
173 Alan Dreyfuss 2013-05-26 14:47:57.62
174 Michael Bening 2013-05-26 14:47:57.62
175 William Hackman 2013-05-26 14:47:57.62
176 Jon Chase 2013-05-26 14:47:57.62
177 Gene Mckellen 2013-05-26 14:47:57.62
178 Lisa Monroe 2013-05-26 14:47:57.62
179 Ed Guiness 2013-05-26 14:47:57.62
180 Jeff Silverstone 2013-05-26 14:47:57.62
181 Matthew Carrey 2013-05-26 14:47:57.62
182 Debbie Akroyd 2013-05-26 14:47:57.62
183 Russell Close 2013-05-26 14:47:57.62
184 Humphrey Garland 2013-05-26 14:47:57.62
185 Michael Bolger 2013-05-26 14:47:57.62
186 Julia Zellweger 2013-05-26 14:47:57.62
187 Renee Ball 2013-05-26 14:47:57.62
188 Rock Dukakis 2013-05-26 14:47:57.62
189 Cuba Birch 2013-05-26 14:47:57.62
190 Audrey Bailey 2013-05-26 14:47:57.62
191 Gregory Gooding 2013-05-26 14:47:57.62
192 John Suvari 2013-05-26 14:47:57.62
193 Burt Temple 2013-05-26 14:47:57.62
194 Meryl Allen 2013-05-26 14:47:57.62
195 Jayne Silverstone 2013-05-26 14:47:57.62
196 Bela Walken 2013-05-26 14:47:57.62
197 Reese West 2013-05-26 14:47:57.62
198 Mary Keitel 2013-05-26 14:47:57.62
199 Julia Fawcett 2013-05-26 14:47:57.62
200 Thora Temple 2013-05-26 14:47:57.62
\.
1 Action 2006-02-15 09:46:27
2 Animation 2006-02-15 09:46:27
3 Children 2006-02-15 09:46:27
4 Classics 2006-02-15 09:46:27
5 Comedy 2006-02-15 09:46:27
6 Documentary 2006-02-15 09:46:27
7 Drama 2006-02-15 09:46:27
8 Family 2006-02-15 09:46:27
9 Foreign 2006-02-15 09:46:27
10 Games 2006-02-15 09:46:27
11 Horror 2006-02-15 09:46:27
12 Music 2006-02-15 09:46:27
13 New 2006-02-15 09:46:27
14 Sci-Fi 2006-02-15 09:46:27
15 Sports 2006-02-15 09:46:27
16 Travel 2006-02-15 09:46:27
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 6 2006-02-15 10:07:09
2 11 2006-02-15 10:07:09
3 6 2006-02-15 10:07:09
4 11 2006-02-15 10:07:09
5 8 2006-02-15 10:07:09
6 9 2006-02-15 10:07:09
7 5 2006-02-15 10:07:09
8 11 2006-02-15 10:07:09
9 11 2006-02-15 10:07:09
10 15 2006-02-15 10:07:09
11 9 2006-02-15 10:07:09
12 12 2006-02-15 10:07:09
13 11 2006-02-15 10:07:09
14 4 2006-02-15 10:07:09
15 9 2006-02-15 10:07:09
16 9 2006-02-15 10:07:09
17 12 2006-02-15 10:07:09
18 2 2006-02-15 10:07:09
19 1 2006-02-15 10:07:09
20 12 2006-02-15 10:07:09
21 1 2006-02-15 10:07:09
22 13 2006-02-15 10:07:09
23 2 2006-02-15 10:07:09
24 11 2006-02-15 10:07:09
25 13 2006-02-15 10:07:09
26 14 2006-02-15 10:07:09
27 15 2006-02-15 10:07:09
28 5 2006-02-15 10:07:09
29 1 2006-02-15 10:07:09
30 11 2006-02-15 10:07:09
31 8 2006-02-15 10:07:09
32 13 2006-02-15 10:07:09
33 7 2006-02-15 10:07:09
34 11 2006-02-15 10:07:09
35 11 2006-02-15 10:07:09
36 2 2006-02-15 10:07:09
37 4 2006-02-15 10:07:09
38 1 2006-02-15 10:07:09
39 14 2006-02-15 10:07:09
40 6 2006-02-15 10:07:09
41 16 2006-02-15 10:07:09
42 15 2006-02-15 10:07:09
43 8 2006-02-15 10:07:09
44 14 2006-02-15 10:07:09
45 13 2006-02-15 10:07:09
46 10 2006-02-15 10:07:09
47 9 2006-02-15 10:07:09
48 3 2006-02-15 10:07:09
49 14 2006-02-15 10:07:09
50 8 2006-02-15 10:07:09
51 12 2006-02-15 10:07:09
52 9 2006-02-15 10:07:09
53 8 2006-02-15 10:07:09
54 12 2006-02-15 10:07:09
55 14 2006-02-15 10:07:09
56 1 2006-02-15 10:07:09
57 16 2006-02-15 10:07:09
58 6 2006-02-15 10:07:09
59 3 2006-02-15 10:07:09
60 4 2006-02-15 10:07:09
61 7 2006-02-15 10:07:09
62 6 2006-02-15 10:07:09
63 8 2006-02-15 10:07:09
64 7 2006-02-15 10:07:09
65 11 2006-02-15 10:07:09
66 3 2006-02-15 10:07:09
67 1 2006-02-15 10:07:09
68 3 2006-02-15 10:07:09
69 14 2006-02-15 10:07:09
70 2 2006-02-15 10:07:09
71 8 2006-02-15 10:07:09
72 6 2006-02-15 10:07:09
73 14 2006-02-15 10:07:09
74 12 2006-02-15 10:07:09
75 16 2006-02-15 10:07:09
76 12 2006-02-15 10:07:09
77 13 2006-02-15 10:07:09
78 2 2006-02-15 10:07:09
79 7 2006-02-15 10:07:09
80 8 2006-02-15 10:07:09
81 14 2006-02-15 10:07:09
82 8 2006-02-15 10:07:09
83 8 2006-02-15 10:07:09
84 16 2006-02-15 10:07:09
85 6 2006-02-15 10:07:09
86 12 2006-02-15 10:07:09
87 16 2006-02-15 10:07:09
88 16 2006-02-15 10:07:09
89 2 2006-02-15 10:07:09
90 13 2006-02-15 10:07:09
91 4 2006-02-15 10:07:09
92 11 2006-02-15 10:07:09
93 13 2006-02-15 10:07:09
94 8 2006-02-15 10:07:09
95 13 2006-02-15 10:07:09
96 13 2006-02-15 10:07:09
97 1 2006-02-15 10:07:09
98 7 2006-02-15 10:07:09
99 5 2006-02-15 10:07:09
100 9 2006-02-15 10:07:09
101 6 2006-02-15 10:07:09
102 15 2006-02-15 10:07:09
103 16 2006-02-15 10:07:09
104 9 2006-02-15 10:07:09
105 1 2006-02-15 10:07:09
106 10 2006-02-15 10:07:09
107 7 2006-02-15 10:07:09
108 13 2006-02-15 10:07:09
109 13 2006-02-15 10:07:09
110 3 2006-02-15 10:07:09
111 1 2006-02-15 10:07:09
112 9 2006-02-15 10:07:09
113 15 2006-02-15 10:07:09
114 14 2006-02-15 10:07:09
115 1 2006-02-15 10:07:09
116 4 2006-02-15 10:07:09
117 10 2006-02-15 10:07:09
118 2 2006-02-15 10:07:09
119 5 2006-02-15 10:07:09
120 15 2006-02-15 10:07:09
121 2 2006-02-15 10:07:09
122 11 2006-02-15 10:07:09
123 16 2006-02-15 10:07:09
124 3 2006-02-15 10:07:09
125 16 2006-02-15 10:07:09
126 1 2006-02-15 10:07:09
127 5 2006-02-15 10:07:09
128 9 2006-02-15 10:07:09
129 6 2006-02-15 10:07:09
130 1 2006-02-15 10:07:09
131 4 2006-02-15 10:07:09
132 14 2006-02-15 10:07:09
133 12 2006-02-15 10:07:09
134 2 2006-02-15 10:07:09
135 15 2006-02-15 10:07:09
136 13 2006-02-15 10:07:09
137 14 2006-02-15 10:07:09
138 14 2006-02-15 10:07:09
139 8 2006-02-15 10:07:09
140 14 2006-02-15 10:07:09
141 10 2006-02-15 10:07:09
142 6 2006-02-15 10:07:09
143 7 2006-02-15 10:07:09
144 13 2006-02-15 10:07:09
145 8 2006-02-15 10:07:09
146 7 2006-02-15 10:07:09
147 8 2006-02-15 10:07:09
148 9 2006-02-15 10:07:09
149 3 2006-02-15 10:07:09
150 6 2006-02-15 10:07:09
151 14 2006-02-15 10:07:09
152 3 2006-02-15 10:07:09
153 14 2006-02-15 10:07:09
154 2 2006-02-15 10:07:09
155 13 2006-02-15 10:07:09
156 6 2006-02-15 10:07:09
157 3 2006-02-15 10:07:09
158 12 2006-02-15 10:07:09
159 5 2006-02-15 10:07:09
160 2 2006-02-15 10:07:09
161 12 2006-02-15 10:07:09
162 1 2006-02-15 10:07:09
163 13 2006-02-15 10:07:09
164 6 2006-02-15 10:07:09
165 14 2006-02-15 10:07:09
166 4 2006-02-15 10:07:09
167 16 2006-02-15 10:07:09
168 3 2006-02-15 10:07:09
169 16 2006-02-15 10:07:09
170 9 2006-02-15 10:07:09
171 11 2006-02-15 10:07:09
172 7 2006-02-15 10:07:09
173 7 2006-02-15 10:07:09
174 12 2006-02-15 10:07:09
175 8 2006-02-15 10:07:09
176 15 2006-02-15 10:07:09
177 14 2006-02-15 10:07:09
178 5 2006-02-15 10:07:09
179 7 2006-02-15 10:07:09
180 4 2006-02-15 10:07:09
181 16 2006-02-15 10:07:09
182 5 2006-02-15 10:07:09
183 8 2006-02-15 10:07:09
184 4 2006-02-15 10:07:09
185 9 2006-02-15 10:07:09
186 7 2006-02-15 10:07:09
187 15 2006-02-15 10:07:09
188 5 2006-02-15 10:07:09
189 10 2006-02-15 10:07:09
190 4 2006-02-15 10:07:09
191 3 2006-02-15 10:07:09
192 9 2006-02-15 10:07:09
193 2 2006-02-15 10:07:09
194 1 2006-02-15 10:07:09
195 14 2006-02-15 10:07:09
196 4 2006-02-15 10:07:09
197 15 2006-02-15 10:07:09
198 9 2006-02-15 10:07:09
199 6 2006-02-15 10:07:09
200 10 2006-02-15 10:07:09
201 9 2006-02-15 10:07:09
202 5 2006-02-15 10:07:09
203 14 2006-02-15 10:07:09
204 7 2006-02-15 10:07:09
205 1 2006-02-15 10:07:09
206 6 2006-02-15 10:07:09
207 9 2006-02-15 10:07:09
208 2 2006-02-15 10:07:09
209 7 2006-02-15 10:07:09
210 1 2006-02-15 10:07:09
211 10 2006-02-15 10:07:09
212 1 2006-02-15 10:07:09
213 8 2006-02-15 10:07:09
214 3 2006-02-15 10:07:09
215 10 2006-02-15 10:07:09
216 13 2006-02-15 10:07:09
217 10 2006-02-15 10:07:09
218 7 2006-02-15 10:07:09
219 6 2006-02-15 10:07:09
220 12 2006-02-15 10:07:09
221 6 2006-02-15 10:07:09
222 11 2006-02-15 10:07:09
223 2 2006-02-15 10:07:09
224 16 2006-02-15 10:07:09
225 7 2006-02-15 10:07:09
226 13 2006-02-15 10:07:09
227 10 2006-02-15 10:07:09
228 4 2006-02-15 10:07:09
229 1 2006-02-15 10:07:09
230 7 2006-02-15 10:07:09
231 8 2006-02-15 10:07:09
232 10 2006-02-15 10:07:09
233 16 2006-02-15 10:07:09
234 14 2006-02-15 10:07:09
235 14 2006-02-15 10:07:09
236 10 2006-02-15 10:07:09
237 15 2006-02-15 10:07:09
238 3 2006-02-15 10:07:09
239 2 2006-02-15 10:07:09
240 14 2006-02-15 10:07:09
241 2 2006-02-15 10:07:09
242 5 2006-02-15 10:07:09
243 2 2006-02-15 10:07:09
244 12 2006-02-15 10:07:09
245 2 2006-02-15 10:07:09
246 9 2006-02-15 10:07:09
247 5 2006-02-15 10:07:09
248 6 2006-02-15 10:07:09
249 4 2006-02-15 10:07:09
250 1 2006-02-15 10:07:09
251 13 2006-02-15 10:07:09
252 1 2006-02-15 10:07:09
253 1 2006-02-15 10:07:09
254 15 2006-02-15 10:07:09
255 12 2006-02-15 10:07:09
256 15 2006-02-15 10:07:09
257 16 2006-02-15 10:07:09
258 11 2006-02-15 10:07:09
259 2 2006-02-15 10:07:09
260 15 2006-02-15 10:07:09
261 6 2006-02-15 10:07:09
262 8 2006-02-15 10:07:09
263 15 2006-02-15 10:07:09
264 10 2006-02-15 10:07:09
265 5 2006-02-15 10:07:09
266 4 2006-02-15 10:07:09
267 13 2006-02-15 10:07:09
268 2 2006-02-15 10:07:09
269 8 2006-02-15 10:07:09
270 13 2006-02-15 10:07:09
271 1 2006-02-15 10:07:09
272 7 2006-02-15 10:07:09
273 8 2006-02-15 10:07:09
274 6 2006-02-15 10:07:09
275 11 2006-02-15 10:07:09
276 5 2006-02-15 10:07:09
277 11 2006-02-15 10:07:09
278 12 2006-02-15 10:07:09
279 15 2006-02-15 10:07:09
280 3 2006-02-15 10:07:09
281 10 2006-02-15 10:07:09
282 7 2006-02-15 10:07:09
283 13 2006-02-15 10:07:09
284 12 2006-02-15 10:07:09
285 14 2006-02-15 10:07:09
286 16 2006-02-15 10:07:09
287 1 2006-02-15 10:07:09
288 16 2006-02-15 10:07:09
289 13 2006-02-15 10:07:09
290 9 2006-02-15 10:07:09
291 15 2006-02-15 10:07:09
292 1 2006-02-15 10:07:09
293 15 2006-02-15 10:07:09
294 16 2006-02-15 10:07:09
295 6 2006-02-15 10:07:09
296 14 2006-02-15 10:07:09
297 4 2006-02-15 10:07:09
298 14 2006-02-15 10:07:09
299 16 2006-02-15 10:07:09
300 2 2006-02-15 10:07:09
301 11 2006-02-15 10:07:09
302 10 2006-02-15 10:07:09
303 1 2006-02-15 10:07:09
304 3 2006-02-15 10:07:09
305 13 2006-02-15 10:07:09
306 10 2006-02-15 10:07:09
307 16 2006-02-15 10:07:09
308 5 2006-02-15 10:07:09
309 8 2006-02-15 10:07:09
310 10 2006-02-15 10:07:09
311 9 2006-02-15 10:07:09
312 14 2006-02-15 10:07:09
313 11 2006-02-15 10:07:09
314 2 2006-02-15 10:07:09
315 8 2006-02-15 10:07:09
316 10 2006-02-15 10:07:09
317 5 2006-02-15 10:07:09
318 1 2006-02-15 10:07:09
319 14 2006-02-15 10:07:09
320 13 2006-02-15 10:07:09
321 13 2006-02-15 10:07:09
322 15 2006-02-15 10:07:09
323 15 2006-02-15 10:07:09
324 5 2006-02-15 10:07:09
325 2 2006-02-15 10:07:09
326 2 2006-02-15 10:07:09
327 1 2006-02-15 10:07:09
328 3 2006-02-15 10:07:09
329 1 2006-02-15 10:07:09
330 2 2006-02-15 10:07:09
331 10 2006-02-15 10:07:09
332 5 2006-02-15 10:07:09
333 12 2006-02-15 10:07:09
334 11 2006-02-15 10:07:09
335 5 2006-02-15 10:07:09
336 6 2006-02-15 10:07:09
337 9 2006-02-15 10:07:09
338 14 2006-02-15 10:07:09
339 16 2006-02-15 10:07:09
340 13 2006-02-15 10:07:09
341 4 2006-02-15 10:07:09
342 16 2006-02-15 10:07:09
343 3 2006-02-15 10:07:09
344 3 2006-02-15 10:07:09
345 8 2006-02-15 10:07:09
346 4 2006-02-15 10:07:09
347 16 2006-02-15 10:07:09
348 8 2006-02-15 10:07:09
349 2 2006-02-15 10:07:09
350 14 2006-02-15 10:07:09
351 11 2006-02-15 10:07:09
352 10 2006-02-15 10:07:09
353 9 2006-02-15 10:07:09
354 3 2006-02-15 10:07:09
355 2 2006-02-15 10:07:09
356 3 2006-02-15 10:07:09
357 4 2006-02-15 10:07:09
358 4 2006-02-15 10:07:09
359 8 2006-02-15 10:07:09
360 1 2006-02-15 10:07:09
361 15 2006-02-15 10:07:09
362 10 2006-02-15 10:07:09
363 12 2006-02-15 10:07:09
364 13 2006-02-15 10:07:09
365 5 2006-02-15 10:07:09
366 7 2006-02-15 10:07:09
367 14 2006-02-15 10:07:09
368 7 2006-02-15 10:07:09
369 14 2006-02-15 10:07:09
370 3 2006-02-15 10:07:09
371 1 2006-02-15 10:07:09
372 15 2006-02-15 10:07:09
373 3 2006-02-15 10:07:09
374 14 2006-02-15 10:07:09
375 1 2006-02-15 10:07:09
376 9 2006-02-15 10:07:09
377 8 2006-02-15 10:07:09
378 12 2006-02-15 10:07:09
379 7 2006-02-15 10:07:09
380 9 2006-02-15 10:07:09
381 10 2006-02-15 10:07:09
382 10 2006-02-15 10:07:09
383 15 2006-02-15 10:07:09
384 12 2006-02-15 10:07:09
385 5 2006-02-15 10:07:09
386 16 2006-02-15 10:07:09
387 10 2006-02-15 10:07:09
388 5 2006-02-15 10:07:09
389 15 2006-02-15 10:07:09
390 14 2006-02-15 10:07:09
391 8 2006-02-15 10:07:09
392 3 2006-02-15 10:07:09
393 6 2006-02-15 10:07:09
394 14 2006-02-15 10:07:09
395 1 2006-02-15 10:07:09
396 7 2006-02-15 10:07:09
397 14 2006-02-15 10:07:09
398 12 2006-02-15 10:07:09
399 9 2006-02-15 10:07:09
400 6 2006-02-15 10:07:09
401 7 2006-02-15 10:07:09
402 2 2006-02-15 10:07:09
403 7 2006-02-15 10:07:09
404 5 2006-02-15 10:07:09
405 16 2006-02-15 10:07:09
406 10 2006-02-15 10:07:09
407 6 2006-02-15 10:07:09
408 10 2006-02-15 10:07:09
409 3 2006-02-15 10:07:09
410 5 2006-02-15 10:07:09
411 12 2006-02-15 10:07:09
412 6 2006-02-15 10:07:09
413 5 2006-02-15 10:07:09
414 9 2006-02-15 10:07:09
415 11 2006-02-15 10:07:09
416 9 2006-02-15 10:07:09
417 1 2006-02-15 10:07:09
418 7 2006-02-15 10:07:09
419 8 2006-02-15 10:07:09
420 15 2006-02-15 10:07:09
421 9 2006-02-15 10:07:09
422 14 2006-02-15 10:07:09
423 3 2006-02-15 10:07:09
424 3 2006-02-15 10:07:09
425 4 2006-02-15 10:07:09
426 12 2006-02-15 10:07:09
427 6 2006-02-15 10:07:09
428 8 2006-02-15 10:07:09
429 15 2006-02-15 10:07:09
430 2 2006-02-15 10:07:09
431 9 2006-02-15 10:07:09
432 4 2006-02-15 10:07:09
433 2 2006-02-15 10:07:09
434 16 2006-02-15 10:07:09
435 9 2006-02-15 10:07:09
436 13 2006-02-15 10:07:09
437 8 2006-02-15 10:07:09
438 10 2006-02-15 10:07:09
439 7 2006-02-15 10:07:09
440 9 2006-02-15 10:07:09
441 6 2006-02-15 10:07:09
442 8 2006-02-15 10:07:09
443 5 2006-02-15 10:07:09
444 5 2006-02-15 10:07:09
445 4 2006-02-15 10:07:09
446 15 2006-02-15 10:07:09
447 10 2006-02-15 10:07:09
448 13 2006-02-15 10:07:09
449 14 2006-02-15 10:07:09
450 3 2006-02-15 10:07:09
451 16 2006-02-15 10:07:09
452 9 2006-02-15 10:07:09
453 15 2006-02-15 10:07:09
454 12 2006-02-15 10:07:09
455 9 2006-02-15 10:07:09
456 2 2006-02-15 10:07:09
457 6 2006-02-15 10:07:09
458 8 2006-02-15 10:07:09
459 9 2006-02-15 10:07:09
460 9 2006-02-15 10:07:09
461 2 2006-02-15 10:07:09
462 12 2006-02-15 10:07:09
463 15 2006-02-15 10:07:09
464 2 2006-02-15 10:07:09
465 13 2006-02-15 10:07:09
466 6 2006-02-15 10:07:09
467 9 2006-02-15 10:07:09
468 3 2006-02-15 10:07:09
469 4 2006-02-15 10:07:09
470 2 2006-02-15 10:07:09
471 4 2006-02-15 10:07:09
472 16 2006-02-15 10:07:09
473 7 2006-02-15 10:07:09
474 15 2006-02-15 10:07:09
475 11 2006-02-15 10:07:09
476 8 2006-02-15 10:07:09
477 12 2006-02-15 10:07:09
478 5 2006-02-15 10:07:09
479 8 2006-02-15 10:07:09
480 4 2006-02-15 10:07:09
481 13 2006-02-15 10:07:09
482 4 2006-02-15 10:07:09
483 10 2006-02-15 10:07:09
484 4 2006-02-15 10:07:09
485 3 2006-02-15 10:07:09
486 9 2006-02-15 10:07:09
487 4 2006-02-15 10:07:09
488 15 2006-02-15 10:07:09
489 2 2006-02-15 10:07:09
490 13 2006-02-15 10:07:09
491 3 2006-02-15 10:07:09
492 13 2006-02-15 10:07:09
493 9 2006-02-15 10:07:09
494 11 2006-02-15 10:07:09
495 11 2006-02-15 10:07:09
496 16 2006-02-15 10:07:09
497 6 2006-02-15 10:07:09
498 8 2006-02-15 10:07:09
499 8 2006-02-15 10:07:09
500 9 2006-02-15 10:07:09
501 1 2006-02-15 10:07:09
502 5 2006-02-15 10:07:09
503 15 2006-02-15 10:07:09
504 7 2006-02-15 10:07:09
505 3 2006-02-15 10:07:09
506 11 2006-02-15 10:07:09
507 10 2006-02-15 10:07:09
508 10 2006-02-15 10:07:09
509 3 2006-02-15 10:07:09
510 2 2006-02-15 10:07:09
511 1 2006-02-15 10:07:09
512 4 2006-02-15 10:07:09
513 16 2006-02-15 10:07:09
514 7 2006-02-15 10:07:09
515 3 2006-02-15 10:07:09
516 12 2006-02-15 10:07:09
517 15 2006-02-15 10:07:09
518 16 2006-02-15 10:07:09
519 15 2006-02-15 10:07:09
520 14 2006-02-15 10:07:09
521 7 2006-02-15 10:07:09
522 5 2006-02-15 10:07:09
523 4 2006-02-15 10:07:09
524 5 2006-02-15 10:07:09
525 4 2006-02-15 10:07:09
526 16 2006-02-15 10:07:09
527 11 2006-02-15 10:07:09
528 8 2006-02-15 10:07:09
529 5 2006-02-15 10:07:09
530 1 2006-02-15 10:07:09
531 9 2006-02-15 10:07:09
532 15 2006-02-15 10:07:09
533 9 2006-02-15 10:07:09
534 8 2006-02-15 10:07:09
535 11 2006-02-15 10:07:09
536 4 2006-02-15 10:07:09
537 4 2006-02-15 10:07:09
538 13 2006-02-15 10:07:09
539 7 2006-02-15 10:07:09
540 12 2006-02-15 10:07:09
541 2 2006-02-15 10:07:09
542 1 2006-02-15 10:07:09
543 16 2006-02-15 10:07:09
544 6 2006-02-15 10:07:09
545 9 2006-02-15 10:07:09
546 10 2006-02-15 10:07:09
547 3 2006-02-15 10:07:09
548 4 2006-02-15 10:07:09
549 1 2006-02-15 10:07:09
550 8 2006-02-15 10:07:09
551 13 2006-02-15 10:07:09
552 6 2006-02-15 10:07:09
553 3 2006-02-15 10:07:09
554 4 2006-02-15 10:07:09
555 5 2006-02-15 10:07:09
556 10 2006-02-15 10:07:09
557 8 2006-02-15 10:07:09
558 13 2006-02-15 10:07:09
559 14 2006-02-15 10:07:09
560 10 2006-02-15 10:07:09
561 13 2006-02-15 10:07:09
562 12 2006-02-15 10:07:09
563 10 2006-02-15 10:07:09
564 2 2006-02-15 10:07:09
565 9 2006-02-15 10:07:09
566 9 2006-02-15 10:07:09
567 9 2006-02-15 10:07:09
568 5 2006-02-15 10:07:09
569 2 2006-02-15 10:07:09
570 15 2006-02-15 10:07:09
571 6 2006-02-15 10:07:09
572 14 2006-02-15 10:07:09
573 3 2006-02-15 10:07:09
574 1 2006-02-15 10:07:09
575 6 2006-02-15 10:07:09
576 6 2006-02-15 10:07:09
577 15 2006-02-15 10:07:09
578 4 2006-02-15 10:07:09
579 1 2006-02-15 10:07:09
580 13 2006-02-15 10:07:09
581 12 2006-02-15 10:07:09
582 2 2006-02-15 10:07:09
583 2 2006-02-15 10:07:09
584 9 2006-02-15 10:07:09
585 7 2006-02-15 10:07:09
586 1 2006-02-15 10:07:09
587 6 2006-02-15 10:07:09
588 3 2006-02-15 10:07:09
589 6 2006-02-15 10:07:09
590 13 2006-02-15 10:07:09
591 10 2006-02-15 10:07:09
592 12 2006-02-15 10:07:09
593 11 2006-02-15 10:07:09
594 1 2006-02-15 10:07:09
595 9 2006-02-15 10:07:09
596 10 2006-02-15 10:07:09
597 10 2006-02-15 10:07:09
598 15 2006-02-15 10:07:09
599 15 2006-02-15 10:07:09
600 11 2006-02-15 10:07:09
601 16 2006-02-15 10:07:09
602 14 2006-02-15 10:07:09
603 8 2006-02-15 10:07:09
604 5 2006-02-15 10:07:09
605 9 2006-02-15 10:07:09
606 15 2006-02-15 10:07:09
607 9 2006-02-15 10:07:09
608 3 2006-02-15 10:07:09
609 16 2006-02-15 10:07:09
610 8 2006-02-15 10:07:09
611 4 2006-02-15 10:07:09
612 15 2006-02-15 10:07:09
613 5 2006-02-15 10:07:09
614 10 2006-02-15 10:07:09
615 2 2006-02-15 10:07:09
616 6 2006-02-15 10:07:09
617 8 2006-02-15 10:07:09
618 7 2006-02-15 10:07:09
619 15 2006-02-15 10:07:09
620 14 2006-02-15 10:07:09
621 8 2006-02-15 10:07:09
622 6 2006-02-15 10:07:09
623 9 2006-02-15 10:07:09
624 10 2006-02-15 10:07:09
625 14 2006-02-15 10:07:09
626 3 2006-02-15 10:07:09
627 6 2006-02-15 10:07:09
628 15 2006-02-15 10:07:09
629 6 2006-02-15 10:07:09
630 7 2006-02-15 10:07:09
631 15 2006-02-15 10:07:09
632 13 2006-02-15 10:07:09
633 4 2006-02-15 10:07:09
634 8 2006-02-15 10:07:09
635 13 2006-02-15 10:07:09
636 12 2006-02-15 10:07:09
637 14 2006-02-15 10:07:09
638 5 2006-02-15 10:07:09
639 8 2006-02-15 10:07:09
640 9 2006-02-15 10:07:09
641 9 2006-02-15 10:07:09
642 16 2006-02-15 10:07:09
643 7 2006-02-15 10:07:09
644 2 2006-02-15 10:07:09
645 16 2006-02-15 10:07:09
646 10 2006-02-15 10:07:09
647 12 2006-02-15 10:07:09
648 16 2006-02-15 10:07:09
649 2 2006-02-15 10:07:09
650 6 2006-02-15 10:07:09
651 2 2006-02-15 10:07:09
652 4 2006-02-15 10:07:09
653 11 2006-02-15 10:07:09
654 10 2006-02-15 10:07:09
655 14 2006-02-15 10:07:09
656 16 2006-02-15 10:07:09
657 5 2006-02-15 10:07:09
658 11 2006-02-15 10:07:09
659 1 2006-02-15 10:07:09
660 5 2006-02-15 10:07:09
661 9 2006-02-15 10:07:09
662 7 2006-02-15 10:07:09
663 4 2006-02-15 10:07:09
664 1 2006-02-15 10:07:09
665 11 2006-02-15 10:07:09
666 7 2006-02-15 10:07:09
667 15 2006-02-15 10:07:09
668 15 2006-02-15 10:07:09
669 9 2006-02-15 10:07:09
670 6 2006-02-15 10:07:09
671 15 2006-02-15 10:07:09
672 5 2006-02-15 10:07:09
673 12 2006-02-15 10:07:09
674 9 2006-02-15 10:07:09
675 13 2006-02-15 10:07:09
676 15 2006-02-15 10:07:09
677 13 2006-02-15 10:07:09
678 15 2006-02-15 10:07:09
679 8 2006-02-15 10:07:09
680 5 2006-02-15 10:07:09
681 15 2006-02-15 10:07:09
682 8 2006-02-15 10:07:09
683 7 2006-02-15 10:07:09
684 10 2006-02-15 10:07:09
685 13 2006-02-15 10:07:09
686 13 2006-02-15 10:07:09
687 6 2006-02-15 10:07:09
688 3 2006-02-15 10:07:09
689 9 2006-02-15 10:07:09
690 2 2006-02-15 10:07:09
691 15 2006-02-15 10:07:09
692 2 2006-02-15 10:07:09
693 2 2006-02-15 10:07:09
694 4 2006-02-15 10:07:09
695 8 2006-02-15 10:07:09
696 2 2006-02-15 10:07:09
697 1 2006-02-15 10:07:09
698 6 2006-02-15 10:07:09
699 10 2006-02-15 10:07:09
700 8 2006-02-15 10:07:09
701 10 2006-02-15 10:07:09
702 11 2006-02-15 10:07:09
703 2 2006-02-15 10:07:09
704 5 2006-02-15 10:07:09
705 9 2006-02-15 10:07:09
706 7 2006-02-15 10:07:09
707 1 2006-02-15 10:07:09
708 6 2006-02-15 10:07:09
709 7 2006-02-15 10:07:09
710 8 2006-02-15 10:07:09
711 14 2006-02-15 10:07:09
712 6 2006-02-15 10:07:09
713 6 2006-02-15 10:07:09
714 14 2006-02-15 10:07:09
715 8 2006-02-15 10:07:09
716 11 2006-02-15 10:07:09
717 1 2006-02-15 10:07:09
718 12 2006-02-15 10:07:09
719 15 2006-02-15 10:07:09
720 13 2006-02-15 10:07:09
721 12 2006-02-15 10:07:09
722 11 2006-02-15 10:07:09
723 14 2006-02-15 10:07:09
724 8 2006-02-15 10:07:09
725 4 2006-02-15 10:07:09
726 9 2006-02-15 10:07:09
727 8 2006-02-15 10:07:09
728 7 2006-02-15 10:07:09
729 15 2006-02-15 10:07:09
730 13 2006-02-15 10:07:09
731 4 2006-02-15 10:07:09
732 1 2006-02-15 10:07:09
733 15 2006-02-15 10:07:09
734 6 2006-02-15 10:07:09
735 3 2006-02-15 10:07:09
736 8 2006-02-15 10:07:09
737 11 2006-02-15 10:07:09
738 9 2006-02-15 10:07:09
739 7 2006-02-15 10:07:09
740 11 2006-02-15 10:07:09
741 12 2006-02-15 10:07:09
742 10 2006-02-15 10:07:09
743 2 2006-02-15 10:07:09
744 4 2006-02-15 10:07:09
745 15 2006-02-15 10:07:09
746 10 2006-02-15 10:07:09
747 10 2006-02-15 10:07:09
748 1 2006-02-15 10:07:09
749 11 2006-02-15 10:07:09
750 13 2006-02-15 10:07:09
751 13 2006-02-15 10:07:09
752 12 2006-02-15 10:07:09
753 8 2006-02-15 10:07:09
754 5 2006-02-15 10:07:09
755 3 2006-02-15 10:07:09
756 5 2006-02-15 10:07:09
757 6 2006-02-15 10:07:09
758 7 2006-02-15 10:07:09
759 13 2006-02-15 10:07:09
760 13 2006-02-15 10:07:09
761 3 2006-02-15 10:07:09
762 10 2006-02-15 10:07:09
763 15 2006-02-15 10:07:09
764 15 2006-02-15 10:07:09
765 5 2006-02-15 10:07:09
766 7 2006-02-15 10:07:09
767 12 2006-02-15 10:07:09
768 3 2006-02-15 10:07:09
769 9 2006-02-15 10:07:09
770 9 2006-02-15 10:07:09
771 7 2006-02-15 10:07:09
772 7 2006-02-15 10:07:09
773 15 2006-02-15 10:07:09
774 5 2006-02-15 10:07:09
775 7 2006-02-15 10:07:09
776 6 2006-02-15 10:07:09
777 15 2006-02-15 10:07:09
778 8 2006-02-15 10:07:09
779 15 2006-02-15 10:07:09
780 8 2006-02-15 10:07:09
781 10 2006-02-15 10:07:09
782 15 2006-02-15 10:07:09
783 16 2006-02-15 10:07:09
784 16 2006-02-15 10:07:09
785 16 2006-02-15 10:07:09
786 3 2006-02-15 10:07:09
787 16 2006-02-15 10:07:09
788 6 2006-02-15 10:07:09
789 9 2006-02-15 10:07:09
790 7 2006-02-15 10:07:09
791 6 2006-02-15 10:07:09
792 9 2006-02-15 10:07:09
793 1 2006-02-15 10:07:09
794 1 2006-02-15 10:07:09
795 8 2006-02-15 10:07:09
796 15 2006-02-15 10:07:09
797 12 2006-02-15 10:07:09
798 14 2006-02-15 10:07:09
799 11 2006-02-15 10:07:09
800 11 2006-02-15 10:07:09
801 3 2006-02-15 10:07:09
802 1 2006-02-15 10:07:09
803 7 2006-02-15 10:07:09
804 11 2006-02-15 10:07:09
805 2 2006-02-15 10:07:09
806 13 2006-02-15 10:07:09
807 10 2006-02-15 10:07:09
808 4 2006-02-15 10:07:09
809 15 2006-02-15 10:07:09
810 8 2006-02-15 10:07:09
811 16 2006-02-15 10:07:09
812 6 2006-02-15 10:07:09
813 15 2006-02-15 10:07:09
814 5 2006-02-15 10:07:09
815 4 2006-02-15 10:07:09
816 2 2006-02-15 10:07:09
817 14 2006-02-15 10:07:09
818 7 2006-02-15 10:07:09
819 12 2006-02-15 10:07:09
820 2 2006-02-15 10:07:09
821 9 2006-02-15 10:07:09
822 8 2006-02-15 10:07:09
823 1 2006-02-15 10:07:09
824 8 2006-02-15 10:07:09
825 1 2006-02-15 10:07:09
826 16 2006-02-15 10:07:09
827 7 2006-02-15 10:07:09
828 4 2006-02-15 10:07:09
829 8 2006-02-15 10:07:09
830 11 2006-02-15 10:07:09
831 14 2006-02-15 10:07:09
832 8 2006-02-15 10:07:09
833 3 2006-02-15 10:07:09
834 6 2006-02-15 10:07:09
835 10 2006-02-15 10:07:09
836 15 2006-02-15 10:07:09
837 5 2006-02-15 10:07:09
838 1 2006-02-15 10:07:09
839 14 2006-02-15 10:07:09
840 10 2006-02-15 10:07:09
841 15 2006-02-15 10:07:09
842 10 2006-02-15 10:07:09
843 4 2006-02-15 10:07:09
844 15 2006-02-15 10:07:09
845 9 2006-02-15 10:07:09
846 13 2006-02-15 10:07:09
847 13 2006-02-15 10:07:09
848 16 2006-02-15 10:07:09
849 2 2006-02-15 10:07:09
850 1 2006-02-15 10:07:09
851 15 2006-02-15 10:07:09
852 3 2006-02-15 10:07:09
853 3 2006-02-15 10:07:09
854 11 2006-02-15 10:07:09
855 6 2006-02-15 10:07:09
856 11 2006-02-15 10:07:09
857 5 2006-02-15 10:07:09
858 5 2006-02-15 10:07:09
859 2 2006-02-15 10:07:09
860 14 2006-02-15 10:07:09
861 10 2006-02-15 10:07:09
862 4 2006-02-15 10:07:09
863 14 2006-02-15 10:07:09
864 3 2006-02-15 10:07:09
865 2 2006-02-15 10:07:09
866 8 2006-02-15 10:07:09
867 8 2006-02-15 10:07:09
868 16 2006-02-15 10:07:09
869 1 2006-02-15 10:07:09
870 11 2006-02-15 10:07:09
871 5 2006-02-15 10:07:09
872 16 2006-02-15 10:07:09
873 3 2006-02-15 10:07:09
874 4 2006-02-15 10:07:09
875 15 2006-02-15 10:07:09
876 11 2006-02-15 10:07:09
877 12 2006-02-15 10:07:09
878 16 2006-02-15 10:07:09
879 12 2006-02-15 10:07:09
880 2 2006-02-15 10:07:09
881 11 2006-02-15 10:07:09
882 7 2006-02-15 10:07:09
883 3 2006-02-15 10:07:09
884 12 2006-02-15 10:07:09
885 11 2006-02-15 10:07:09
886 2 2006-02-15 10:07:09
887 2 2006-02-15 10:07:09
888 6 2006-02-15 10:07:09
889 3 2006-02-15 10:07:09
890 15 2006-02-15 10:07:09
891 4 2006-02-15 10:07:09
892 2 2006-02-15 10:07:09
893 14 2006-02-15 10:07:09
894 16 2006-02-15 10:07:09
895 4 2006-02-15 10:07:09
896 3 2006-02-15 10:07:09
897 7 2006-02-15 10:07:09
898 15 2006-02-15 10:07:09
899 4 2006-02-15 10:07:09
900 9 2006-02-15 10:07:09
901 2 2006-02-15 10:07:09
902 15 2006-02-15 10:07:09
903 16 2006-02-15 10:07:09
904 11 2006-02-15 10:07:09
905 5 2006-02-15 10:07:09
906 5 2006-02-15 10:07:09
907 7 2006-02-15 10:07:09
908 9 2006-02-15 10:07:09
909 11 2006-02-15 10:07:09
910 7 2006-02-15 10:07:09
911 1 2006-02-15 10:07:09
912 14 2006-02-15 10:07:09
913 13 2006-02-15 10:07:09
914 16 2006-02-15 10:07:09
915 1 2006-02-15 10:07:09
916 2 2006-02-15 10:07:09
917 15 2006-02-15 10:07:09
918 3 2006-02-15 10:07:09
919 10 2006-02-15 10:07:09
920 13 2006-02-15 10:07:09
921 12 2006-02-15 10:07:09
922 11 2006-02-15 10:07:09
923 7 2006-02-15 10:07:09
924 14 2006-02-15 10:07:09
925 6 2006-02-15 10:07:09
926 6 2006-02-15 10:07:09
927 1 2006-02-15 10:07:09
928 3 2006-02-15 10:07:09
929 9 2006-02-15 10:07:09
930 14 2006-02-15 10:07:09
931 16 2006-02-15 10:07:09
932 5 2006-02-15 10:07:09
933 13 2006-02-15 10:07:09
934 10 2006-02-15 10:07:09
935 13 2006-02-15 10:07:09
936 12 2006-02-15 10:07:09
937 13 2006-02-15 10:07:09
938 5 2006-02-15 10:07:09
939 5 2006-02-15 10:07:09
940 15 2006-02-15 10:07:09
941 10 2006-02-15 10:07:09
942 7 2006-02-15 10:07:09
943 6 2006-02-15 10:07:09
944 7 2006-02-15 10:07:09
945 6 2006-02-15 10:07:09
946 8 2006-02-15 10:07:09
947 9 2006-02-15 10:07:09
948 13 2006-02-15 10:07:09
949 10 2006-02-15 10:07:09
950 4 2006-02-15 10:07:09
951 4 2006-02-15 10:07:09
952 6 2006-02-15 10:07:09
953 2 2006-02-15 10:07:09
954 13 2006-02-15 10:07:09
955 3 2006-02-15 10:07:09
956 10 2006-02-15 10:07:09
957 9 2006-02-15 10:07:09
958 7 2006-02-15 10:07:09
959 3 2006-02-15 10:07:09
960 6 2006-02-15 10:07:09
961 9 2006-02-15 10:07:09
962 4 2006-02-15 10:07:09
963 2 2006-02-15 10:07:09
964 1 2006-02-15 10:07:09
965 11 2006-02-15 10:07:09
966 6 2006-02-15 10:07:09
967 14 2006-02-15 10:07:09
968 1 2006-02-15 10:07:09
969 7 2006-02-15 10:07:09
970 4 2006-02-15 10:07:09
971 9 2006-02-15 10:07:09
972 14 2006-02-15 10:07:09
973 6 2006-02-15 10:07:09
974 13 2006-02-15 10:07:09
975 8 2006-02-15 10:07:09
976 10 2006-02-15 10:07:09
977 16 2006-02-15 10:07:09
978 5 2006-02-15 10:07:09
979 7 2006-02-15 10:07:09
980 12 2006-02-15 10:07:09
981 16 2006-02-15 10:07:09
982 1 2006-02-15 10:07:09
983 12 2006-02-15 10:07:09
984 9 2006-02-15 10:07:09
985 14 2006-02-15 10:07:09
986 2 2006-02-15 10:07:09
987 12 2006-02-15 10:07:09
988 16 2006-02-15 10:07:09
989 16 2006-02-15 10:07:09
990 11 2006-02-15 10:07:09
991 1 2006-02-15 10:07:09
992 6 2006-02-15 10:07:09
993 3 2006-02-15 10:07:09
994 13 2006-02-15 10:07:09
995 11 2006-02-15 10:07:09
996 6 2006-02-15 10:07:09
997 12 2006-02-15 10:07:09
998 11 2006-02-15 10:07:09
999 3 2006-02-15 10:07:09
1000 5 2006-02-15 10:07:09
\.
1 47 MySakila Drive \N Alberta 300 2006-02-15 09:45:30
2 28 MySQL Boulevard \N QLD 576 2006-02-15 09:45:30
3 23 Workhaven Lane \N Alberta 300 14033335568 2006-02-15 09:45:30
4 1411 Lillydale Drive \N QLD 576 6172235589 2006-02-15 09:45:30
5 1913 Hanoi Way Nagasaki 463 35200 28303384290 2006-02-15 09:45:30
6 1121 Loja Avenue California 449 17886 838635286649 2006-02-15 09:45:30
7 692 Joliet Street Attika 38 83579 448477190408 2006-02-15 09:45:30
8 1566 Inegl Manor Mandalay 349 53561 705814003527 2006-02-15 09:45:30
9 53 Idfu Parkway Nantou 361 42399 10655648674 2006-02-15 09:45:30
10 1795 Santiago de Compostela Way Texas 295 18743 860452626434 2006-02-15 09:45:30
11 900 Santiago de Compostela Parkway Central Serbia 280 93896 716571220373 2006-02-15 09:45:30
12 478 Joliet Way Hamilton 200 77948 657282285970 2006-02-15 09:45:30
13 613 Korolev Drive Masqat 329 45844 380657522649 2006-02-15 09:45:30
14 1531 Sal Drive Esfahan 162 53628 648856936185 2006-02-15 09:45:30
15 1542 Tarlac Parkway Kanagawa 440 1027 635297277345 2006-02-15 09:45:30
16 808 Bhopal Manor Haryana 582 10672 465887807014 2006-02-15 09:45:30
17 270 Amroha Parkway Osmaniye 384 29610 695479687538 2006-02-15 09:45:30
18 770 Bydgoszcz Avenue California 120 16266 517338314235 2006-02-15 09:45:30
19 419 Iligan Lane Madhya Pradesh 76 72878 990911107354 2006-02-15 09:45:30
20 360 Toulouse Parkway England 495 54308 949312333307 2006-02-15 09:45:30
21 270 Toulon Boulevard Kalmykia 156 81766 407752414682 2006-02-15 09:45:30
22 320 Brest Avenue Kaduna 252 43331 747791594069 2006-02-15 09:45:30
23 1417 Lancaster Avenue Northern Cape 267 72192 272572357893 2006-02-15 09:45:30
24 1688 Okara Way Nothwest Border Prov 327 21954 144453869132 2006-02-15 09:45:30
25 262 A Corua (La Corua) Parkway Dhaka 525 34418 892775750063 2006-02-15 09:45:30
26 28 Charlotte Amalie Street Rabat-Sal-Zammour-Z 443 37551 161968374323 2006-02-15 09:45:30
27 1780 Hino Boulevard Liepaja 303 7716 902731229323 2006-02-15 09:45:30
28 96 Tafuna Way Crdoba 128 99865 934730187245 2006-02-15 09:45:30
29 934 San Felipe de Puerto Plata Street Sind 472 99780 196495945706 2006-02-15 09:45:30
30 18 Duisburg Boulevard 121 58327 998009777982 2006-02-15 09:45:30
31 217 Botshabelo Place Southern Mindanao 138 49521 665356572025 2006-02-15 09:45:30
32 1425 Shikarpur Manor Bihar 346 65599 678220867005 2006-02-15 09:45:30
33 786 Aurora Avenue Yamaguchi 474 65750 18461860151 2006-02-15 09:45:30
34 1668 Anpolis Street Taipei 316 50199 525255540978 2006-02-15 09:45:30
35 33 Gorontalo Way West Bengali 257 30348 745994947458 2006-02-15 09:45:30
36 176 Mandaluyong Place Uttar Pradesh 239 65213 627705991774 2006-02-15 09:45:30
37 127 Purnea (Purnia) Manor Piemonte 17 79388 911872220378 2006-02-15 09:45:30
38 61 Tama Street Okayama 284 94065 708403338270 2006-02-15 09:45:30
39 391 Callao Drive Midi-Pyrnes 544 34021 440512153169 2006-02-15 09:45:30
40 334 Munger (Monghyr) Lane Markazi 31 38145 481183273622 2006-02-15 09:45:30
41 1440 Fukuyama Loop Henan 362 47929 912257250465 2006-02-15 09:45:30
42 269 Cam Ranh Parkway Chisinau 115 34689 489783829737 2006-02-15 09:45:30
43 306 Antofagasta Place Esprito Santo 569 3989 378318851631 2006-02-15 09:45:30
44 671 Graz Street Oriental 353 94399 680768868518 2006-02-15 09:45:30
45 42 Brindisi Place Yerevan 586 16744 42384721397 2006-02-15 09:45:30
46 1632 Bislig Avenue Nonthaburi 394 61117 471675840679 2006-02-15 09:45:30
47 1447 Imus Way Tahiti 167 48942 539758313890 2006-02-15 09:45:30
48 1998 Halifax Drive Lipetsk 308 76022 177727722820 2006-02-15 09:45:30
49 1718 Valencia Street Antofagasta 27 37359 675292816413 2006-02-15 09:45:30
50 46 Pjatigorsk Lane Moscow (City) 343 23616 262076994845 2006-02-15 09:45:30
51 686 Garland Manor Cear 247 52535 69493378813 2006-02-15 09:45:30
52 909 Garland Manor Tatarstan 367 69367 705800322606 2006-02-15 09:45:30
53 725 Isesaki Place Mekka 237 74428 876295323994 2006-02-15 09:45:30
54 115 Hidalgo Parkway Khartum 379 80168 307703950263 2006-02-15 09:45:30
55 1135 Izumisano Parkway California 171 48150 171822533480 2006-02-15 09:45:30
56 939 Probolinggo Loop Galicia 1 4166 680428310138 2006-02-15 09:45:30
57 17 Kabul Boulevard Chiba 355 38594 697760867968 2006-02-15 09:45:30
58 1964 Allappuzha (Alleppey) Street Yamaguchi 227 48980 920811325222 2006-02-15 09:45:30
59 1697 Kowloon and New Kowloon Loop Moskova 49 57807 499352017190 2006-02-15 09:45:30
60 1668 Saint Louis Place Tahiti 397 39072 347487831378 2006-02-15 09:45:30
61 943 Tokat Street Vaduz 560 45428 889318963672 2006-02-15 09:45:30
62 1114 Liepaja Street Sarawak 282 69226 212869228936 2006-02-15 09:45:30
63 1213 Ranchi Parkway Karnataka 350 94352 800024380485 2006-02-15 09:45:30
64 81 Hodeida Way Rajasthan 231 55561 250767749542 2006-02-15 09:45:30
65 915 Ponce Place Basel-Stadt 56 83980 1395251317 2006-02-15 09:45:30
66 1717 Guadalajara Lane Missouri 441 85505 914090181665 2006-02-15 09:45:30
67 1214 Hanoi Way Nebraska 306 67055 491001136577 2006-02-15 09:45:30
68 1966 Amroha Avenue Sichuan 139 70385 333489324603 2006-02-15 09:45:30
69 698 Otsu Street Cayenne 105 71110 409983924481 2006-02-15 09:45:30
70 1150 Kimchon Manor Skne ln 321 96109 663449333709 2006-02-15 09:45:30
71 1586 Guaruj Place Hunan 579 5135 947233365992 2006-02-15 09:45:30
72 57 Arlington Manor Madhya Pradesh 475 48960 990214419142 2006-02-15 09:45:30
73 1031 Daugavpils Parkway Bchar 63 59025 107137400143 2006-02-15 09:45:30
74 1124 Buenaventura Drive Mekka 13 6856 407733804223 2006-02-15 09:45:30
75 492 Cam Ranh Street Eastern Visayas 61 50805 565018274456 2006-02-15 09:45:30
76 89 Allappuzha (Alleppey) Manor National Capital Reg 517 75444 255800440636 2006-02-15 09:45:30
77 1947 Poos de Caldas Boulevard Chiayi 114 60951 427454485876 2006-02-15 09:45:30
78 1206 Dos Quebradas Place So Paulo 431 20207 241832790687 2006-02-15 09:45:30
79 1551 Rampur Lane Changhwa 108 72394 251164340471 2006-02-15 09:45:30
80 602 Paarl Street Pavlodar 402 98889 896314772871 2006-02-15 09:45:30
81 1692 Ede Loop So Paulo 30 9223 918711376618 2006-02-15 09:45:30
82 936 Salzburg Lane Uttar Pradesh 425 96709 875756771675 2006-02-15 09:45:30
83 586 Tete Way Kanagawa 256 1079 18581624103 2006-02-15 09:45:30
84 1888 Kabul Drive Oyo & Osun 217 20936 701457319790 2006-02-15 09:45:30
85 320 Baiyin Parkway Mahajanga 319 37307 223664661973 2006-02-15 09:45:30
86 927 Baha Blanca Parkway Krim 479 9495 821972242086 2006-02-15 09:45:30
87 929 Tallahassee Loop Gauteng 497 74671 800716535041 2006-02-15 09:45:30
88 125 Citt del Vaticano Boulevard Puebla 40 67912 48417642933 2006-02-15 09:45:30
89 1557 Ktahya Boulevard England 88 88002 720998247660 2006-02-15 09:45:30
90 870 Ashqelon Loop Songkhla 489 84931 135117278909 2006-02-15 09:45:30
91 1740 Portoviejo Avenue Sucre 480 29932 198123170793 2006-02-15 09:45:30
92 1942 Ciparay Parkway Cheju 113 82624 978987363654 2006-02-15 09:45:30
93 1926 El Alto Avenue Buenos Aires 289 75543 846225459260 2006-02-15 09:45:30
94 1952 Chatsworth Drive Guangdong 332 25958 991562402283 2006-02-15 09:45:30
95 1370 Le Mans Avenue Brunei and Muara 53 52163 345679835036 2006-02-15 09:45:30
96 984 Effon-Alaiye Avenue Gois 183 17119 132986892228 2006-02-15 09:45:30
97 832 Nakhon Sawan Manor Inner Mongolia 592 49021 275595571388 2006-02-15 09:45:30
98 152 Kitwe Parkway Caraga 82 53182 835433605312 2006-02-15 09:45:30
99 1697 Tanauan Lane Punjab 399 22870 4764773857 2006-02-15 09:45:30
100 1308 Arecibo Way Georgia 41 30695 6171054059 2006-02-15 09:45:30
101 1599 Plock Drive Tete 534 71986 817248913162 2006-02-15 09:45:30
102 669 Firozabad Loop Abu Dhabi 12 92265 412903167998 2006-02-15 09:45:30
103 588 Vila Velha Manor Kyongsangbuk 268 51540 333339908719 2006-02-15 09:45:30
104 1913 Kamakura Place Lipetsk 238 97287 942570536750 2006-02-15 09:45:30
105 733 Mandaluyong Place Asir 2 77459 196568435814 2006-02-15 09:45:30
106 659 Vaduz Drive Ha Darom 34 49708 709935135487 2006-02-15 09:45:30
107 1177 Jelets Way Kwara & Kogi 220 3305 484292626944 2006-02-15 09:45:30
108 1386 Yangor Avenue Provence-Alpes-Cte 543 80720 449216226468 2006-02-15 09:45:30
109 454 Nakhon Sawan Boulevard Funafuti 173 76383 963887147572 2006-02-15 09:45:30
110 1867 San Juan Bautista Tuxtepec Avenue Ivanovo 225 78311 547003310357 2006-02-15 09:45:30
111 1532 Dzerzinsk Way Buenos Aires 334 9599 330838016880 2006-02-15 09:45:30
112 1002 Ahmadnagar Manor Mxico 213 93026 371490777743 2006-02-15 09:45:30
113 682 Junan Way North West 273 30418 622255216127 2006-02-15 09:45:30
114 804 Elista Drive Hubei 159 61069 379804592943 2006-02-15 09:45:30
115 1378 Alvorada Avenue Distrito Federal 102 75834 272234298332 2006-02-15 09:45:30
116 793 Cam Ranh Avenue California 292 87057 824370924746 2006-02-15 09:45:30
117 1079 Tel Aviv-Jaffa Boulevard Sucre 132 10885 358178933857 2006-02-15 09:45:30
118 442 Rae Bareli Place Nordrhein-Westfalen 148 24321 886636413768 2006-02-15 09:45:30
119 1107 Nakhon Sawan Avenue Mxico 365 75149 867546627903 2006-02-15 09:45:30
120 544 Malm Parkway Central Java 403 63502 386759646229 2006-02-15 09:45:30
121 1967 Sincelejo Place Gujarat 176 73644 577812616052 2006-02-15 09:45:30
122 333 Goinia Way Texas 185 78625 909029256431 2006-02-15 09:45:30
123 1987 Coacalco de Berriozbal Loop al-Qalyubiya 476 96065 787654415858 2006-02-15 09:45:30
124 241 Mosul Lane Risaralda 147 76157 765345144779 2006-02-15 09:45:30
125 211 Chiayi Drive Uttar Pradesh 164 58186 665993880048 2006-02-15 09:45:30
126 1175 Tanauan Way Lima 305 64615 937222955822 2006-02-15 09:45:30
127 117 Boa Vista Way Uttar Pradesh 566 6804 677976133614 2006-02-15 09:45:30
128 848 Tafuna Manor Ktahya 281 45142 614935229095 2006-02-15 09:45:30
129 569 Baicheng Lane Gauteng 85 60304 490211944645 2006-02-15 09:45:30
130 1666 Qomsheh Drive So Paulo 410 66255 582835362905 2006-02-15 09:45:30
131 801 Hagonoy Drive Smolensk 484 8439 237426099212 2006-02-15 09:45:30
132 1050 Garden Grove Avenue Slaskie 236 4999 973047364353 2006-02-15 09:45:30
133 1854 Tieli Street Shandong 302 15819 509492324775 2006-02-15 09:45:30
134 758 Junan Lane Gois 190 82639 935448624185 2006-02-15 09:45:30
135 1752 So Leopoldo Parkway Taka-Karpatia 345 14014 252265130067 2006-02-15 09:45:30
136 898 Belm Manor Free State 87 49757 707169393853 2006-02-15 09:45:30
137 261 Saint Louis Way Coahuila de Zaragoza 541 83401 321944036800 2006-02-15 09:45:30
138 765 Southampton Drive al-Qalyubiya 421 4285 23712411567 2006-02-15 09:45:30
139 943 Johannesburg Avenue Maharashtra 417 5892 90921003005 2006-02-15 09:45:30
140 788 Atinsk Street Karnataka 211 81691 146497509724 2006-02-15 09:45:30
141 1749 Daxian Place Gelderland 29 11044 963369996279 2006-02-15 09:45:30
142 1587 Sullana Lane Inner Mongolia 207 85769 468060467018 2006-02-15 09:45:30
143 1029 Dzerzinsk Manor Ynlin 542 57519 33173584456 2006-02-15 09:45:30
144 1666 Beni-Mellal Place Tennessee 123 13377 9099941466 2006-02-15 09:45:30
145 928 Jaffna Loop Hiroshima 172 93762 581852137991 2006-02-15 09:45:30
146 483 Ljubertsy Parkway Scotland 149 60562 581174211853 2006-02-15 09:45:30
147 374 Bat Yam Boulevard Kilis 266 97700 923261616249 2006-02-15 09:45:30
148 1027 Songkhla Manor Minsk 340 30861 563660187896 2006-02-15 09:45:30
149 999 Sanaa Loop Gauteng 491 3439 918032330119 2006-02-15 09:45:30
150 879 Newcastle Way Michigan 499 90732 206841104594 2006-02-15 09:45:30
151 1337 Lincoln Parkway Saitama 555 99457 597815221267 2006-02-15 09:45:30
152 1952 Pune Lane Saint-Denis 442 92150 354615066969 2006-02-15 09:45:30
153 782 Mosul Street Massachusetts 94 25545 885899703621 2006-02-15 09:45:30
154 781 Shimonoseki Drive Michoacn de Ocampo 202 95444 632316273199 2006-02-15 09:45:30
155 1560 Jelets Boulevard Shandong 291 77777 189446090264 2006-02-15 09:45:30
156 1963 Moscow Place Assam 354 64863 761379480249 2006-02-15 09:45:30
157 456 Escobar Way Jakarta Raya 232 36061 719202533520 2006-02-15 09:45:30
158 798 Cianjur Avenue Shanxi 590 76990 499408708580 2006-02-15 09:45:30
159 185 Novi Sad Place Bern 72 41778 904253967161 2006-02-15 09:45:30
160 1367 Yantai Manor Ondo & Ekiti 381 21294 889538496300 2006-02-15 09:45:30
161 1386 Nakhon Sawan Boulevard Pyongyang-si 420 53502 368899174225 2006-02-15 09:45:30
162 369 Papeete Way North Carolina 187 66639 170117068815 2006-02-15 09:45:30
163 1440 Compton Place North Austria 307 81037 931059836497 2006-02-15 09:45:30
164 1623 Baha Blanca Manor Moskova 310 81511 149981248346 2006-02-15 09:45:30
165 97 Shimoga Avenue Tel Aviv 533 44660 177167004331 2006-02-15 09:45:30
166 1740 Le Mans Loop Pays de la Loire 297 22853 168476538960 2006-02-15 09:45:30
167 1287 Xiangfan Boulevard Gifu 253 57844 819416131190 2006-02-15 09:45:30
168 842 Salzburg Lane Adana 529 3313 697151428760 2006-02-15 09:45:30
169 154 Tallahassee Loop Xinxiang 199 62250 935508855935 2006-02-15 09:45:30
170 710 San Felipe del Progreso Avenue Lilongwe 304 76901 843801144113 2006-02-15 09:45:30
171 1540 Wroclaw Drive Maharashtra 107 62686 182363341674 2006-02-15 09:45:30
172 475 Atinsk Way Gansu 240 59571 201705577290 2006-02-15 09:45:30
173 1294 Firozabad Drive Jiangxi 407 70618 161801569569 2006-02-15 09:45:30
174 1877 Ezhou Lane Rajasthan 550 63337 264541743403 2006-02-15 09:45:30
175 316 Uruapan Street Perak 223 58194 275788967899 2006-02-15 09:45:30
176 29 Pyongyang Loop Batman 58 47753 734780743462 2006-02-15 09:45:30
177 1010 Klerksdorp Way Steiermark 186 6802 493008546874 2006-02-15 09:45:30
178 1848 Salala Boulevard Miranda 373 25220 48265851133 2006-02-15 09:45:30
179 431 Xiangtan Avenue Kerala 18 4854 230250973122 2006-02-15 09:45:30
180 757 Rustenburg Avenue Skikda 483 89668 506134035434 2006-02-15 09:45:30
181 146 Johannesburg Way Tamaulipas 330 54132 953689007081 2006-02-15 09:45:30
182 1891 Rizhao Boulevard So Paulo 456 47288 391065549876 2006-02-15 09:45:30
183 1089 Iwatsuki Avenue Kirov 270 35109 866092335135 2006-02-15 09:45:30
184 1410 Benin City Parkway Risaralda 405 29747 104150372603 2006-02-15 09:45:30
185 682 Garden Grove Place Tennessee 333 67497 72136330362 2006-02-15 09:45:30
186 533 al-Ayn Boulevard California 126 8862 662227486184 2006-02-15 09:45:30
187 1839 Szkesfehrvr Parkway Gois 317 55709 947468818183 2006-02-15 09:45:30
188 741 Ambattur Manor Noord-Brabant 438 43310 302590383819 2006-02-15 09:45:30
189 927 Barcelona Street Chaharmahal va Bakht 467 65121 951486492670 2006-02-15 09:45:30
190 435 0 Way West Bengali 195 74750 760171523969 2006-02-15 09:45:30
191 140 Chiayi Parkway Sumy 506 38982 855863906434 2006-02-15 09:45:30
192 1166 Changhwa Street Caraga 62 58852 650752094490 2006-02-15 09:45:30
193 891 Novi Sad Manor Ontario 383 5379 247646995453 2006-02-15 09:45:30
194 605 Rio Claro Parkway Tabora 513 49348 352469351088 2006-02-15 09:45:30
195 1077 San Felipe de Puerto Plata Place Rostov-na-Donu 369 65387 812824036424 2006-02-15 09:45:30
196 9 San Miguel de Tucumn Manor Uttar Pradesh 169 90845 956188728558 2006-02-15 09:45:30
197 447 Surakarta Loop Nyanza 271 10428 940830176580 2006-02-15 09:45:30
198 345 Oshawa Boulevard Tokyo-to 204 32114 104491201771 2006-02-15 09:45:30
199 1792 Valle de la Pascua Place Nordrhein-Westfalen 477 15540 419419591240 2006-02-15 09:45:30
200 1074 Binzhou Manor Baden-Wrttemberg 325 36490 331132568928 2006-02-15 09:45:30
201 817 Bradford Loop Jiangsu 109 89459 264286442804 2006-02-15 09:45:30
202 955 Bamenda Way Ondo & Ekiti 218 1545 768481779568 2006-02-15 09:45:30
203 1149 A Corua (La Corua) Boulevard Haiphong 194 95824 470884141195 2006-02-15 09:45:30
204 387 Mwene-Ditu Drive Ahal 35 8073 764477681869 2006-02-15 09:45:30
205 68 Molodetno Manor Nordrhein-Westfalen 575 4662 146640639760 2006-02-15 09:45:30
206 642 Nador Drive Maharashtra 77 3924 369050085652 2006-02-15 09:45:30
207 1688 Nador Lane Sulawesi Utara 184 61613 652218196731 2006-02-15 09:45:30
208 1215 Pyongyang Parkway Usak 557 25238 646237101779 2006-02-15 09:45:30
209 1679 Antofagasta Street Alto Paran 122 86599 905903574913 2006-02-15 09:45:30
210 1304 s-Hertogenbosch Way Santa Catarina 83 10925 90336226227 2006-02-15 09:45:30
211 850 Salala Loop Kitaa 371 10800 403404780639 2006-02-15 09:45:30
212 624 Oshawa Boulevard West Bengali 51 89959 49677664184 2006-02-15 09:45:30
213 43 Dadu Avenue Rajasthan 74 4855 95666951770 2006-02-15 09:45:30
214 751 Lima Loop Aden 7 99405 756460337785 2006-02-15 09:45:30
215 1333 Haldia Street Jilin 174 82161 408304391718 2006-02-15 09:45:30
216 660 Jedda Boulevard Washington 65 25053 168758068397 2006-02-15 09:45:30
217 1001 Miyakonojo Lane Taizz 518 67924 584316724815 2006-02-15 09:45:30
218 226 Brest Manor California 508 2299 785881412500 2006-02-15 09:45:30
219 1229 Valencia Parkway Haskovo 498 99124 352679173732 2006-02-15 09:45:30
220 1201 Qomsheh Manor Gois 28 21464 873492228462 2006-02-15 09:45:30
221 866 Shivapuri Manor Uttar Pradesh 448 22474 778502731092 2006-02-15 09:45:30
222 1168 Najafabad Parkway Kabol 251 40301 886649065861 2006-02-15 09:45:30
223 1244 Allappuzha (Alleppey) Place Buenos Aires 567 20657 991802825778 2006-02-15 09:45:30
224 1842 Luzinia Boulevard Zanzibar West 593 94420 706878974831 2006-02-15 09:45:30
225 1926 Gingoog Street Sisilia 511 22824 469738825391 2006-02-15 09:45:30
226 810 Palghat (Palakkad) Boulevard Jaroslavl 235 73431 516331171356 2006-02-15 09:45:30
227 1820 Maring Parkway Punjab 324 88307 99760893676 2006-02-15 09:45:30
228 60 Poos de Caldas Street Rajasthan 243 82338 963063788669 2006-02-15 09:45:30
229 1014 Loja Manor Tamil Nadu 22 66851 460795526514 2006-02-15 09:45:30
230 201 Effon-Alaiye Way Asuncin 37 64344 684192903087 2006-02-15 09:45:30
231 430 Alessandria Loop Saarland 439 47446 669828224459 2006-02-15 09:45:30
232 754 Valencia Place Phnom Penh 406 87911 594319417514 2006-02-15 09:45:30
233 356 Olomouc Manor Gois 26 93323 22326410776 2006-02-15 09:45:30
234 1256 Bislig Boulevard Botosani 86 50598 479007229460 2006-02-15 09:45:30
235 954 Kimchon Place West Bengali 559 42420 541327526474 2006-02-15 09:45:30
236 885 Yingkou Manor Kaduna 596 31390 588964509072 2006-02-15 09:45:30
237 1736 Cavite Place Qina 216 98775 431770603551 2006-02-15 09:45:30
238 346 Skikda Parkway Hawalli 233 90628 630424482919 2006-02-15 09:45:30
239 98 Stara Zagora Boulevard Valle 96 76448 610173756082 2006-02-15 09:45:30
240 1479 Rustenburg Boulevard Southern Tagalog 527 18727 727785483194 2006-02-15 09:45:30
241 647 A Corua (La Corua) Street Chollanam 357 36971 792557457753 2006-02-15 09:45:30
242 1964 Gijn Manor Karnataka 473 14408 918119601885 2006-02-15 09:45:30
243 47 Syktyvkar Lane West Java 118 22236 63937119031 2006-02-15 09:45:30
244 1148 Saarbrcken Parkway Fukushima 226 1921 137773001988 2006-02-15 09:45:30
245 1103 Bilbays Parkway Hubei 578 87660 279979529227 2006-02-15 09:45:30
246 1246 Boksburg Parkway Hebei 422 28349 890283544295 2006-02-15 09:45:30
247 1483 Pathankot Street Tucumn 454 37288 686015532180 2006-02-15 09:45:30
248 582 Papeete Loop Central Visayas 294 27722 569868543137 2006-02-15 09:45:30
249 300 Junan Street Kyonggi 553 81314 890289150158 2006-02-15 09:45:30
250 829 Grand Prairie Way Paran 328 6461 741070712873 2006-02-15 09:45:30
251 1473 Changhwa Parkway Mxico 124 75933 266798132374 2006-02-15 09:45:30
252 1309 Weifang Street Florida 520 57338 435785045362 2006-02-15 09:45:30
253 1760 Oshawa Manor Tianjin 535 38140 56257502250 2006-02-15 09:45:30
254 786 Stara Zagora Way Oyo & Osun 390 98332 716256596301 2006-02-15 09:45:30
255 1966 Tonghae Street Anhalt Sachsen 198 36481 567359279425 2006-02-15 09:45:30
256 1497 Yuzhou Drive England 312 3433 246810237916 2006-02-15 09:45:30
258 752 Ondo Loop Miyazaki 338 32474 134673576619 2006-02-15 09:45:30
259 1338 Zalantun Lane Minas Gerais 413 45403 840522972766 2006-02-15 09:45:30
260 127 Iwakuni Boulevard Central Luzon 192 20777 987442542471 2006-02-15 09:45:30
261 51 Laredo Avenue Sagaing 342 68146 884536620568 2006-02-15 09:45:30
262 771 Yaound Manor Sofala 64 86768 245477603573 2006-02-15 09:45:30
263 532 Toulon Street Santiago 460 69517 46871694740 2006-02-15 09:45:30
264 1027 Banjul Place West Bengali 197 50390 538241037443 2006-02-15 09:45:30
265 1158 Mandi Bahauddin Parkway Shanxi 136 98484 276555730211 2006-02-15 09:45:30
266 862 Xintai Lane Cagayan Valley 548 30065 265153400632 2006-02-15 09:45:30
267 816 Cayenne Parkway Manab 414 93629 282874611748 2006-02-15 09:45:30
268 1831 Nam Dinh Loop National Capital Reg 323 51990 322888976727 2006-02-15 09:45:30
269 446 Kirovo-Tepetsk Lane Osaka 203 19428 303967439816 2006-02-15 09:45:30
270 682 Halisahar Place Severn Morava 378 20536 475553436330 2006-02-15 09:45:30
271 1587 Loja Manor Salzburg 447 5410 621625204422 2006-02-15 09:45:30
272 1762 Paarl Parkway Hunan 298 53928 192459639410 2006-02-15 09:45:30
273 1519 Ilorin Place Kerala 395 49298 357445645426 2006-02-15 09:45:30
274 920 Kumbakonam Loop California 446 75090 685010736240 2006-02-15 09:45:30
275 906 Goinia Way Wielkopolskie 255 83565 701767622697 2006-02-15 09:45:30
276 1675 Xiangfan Manor Tamil Nadu 283 11763 271149517630 2006-02-15 09:45:30
277 85 San Felipe de Puerto Plata Drive Shandong 584 46063 170739645687 2006-02-15 09:45:30
278 144 South Hill Loop Guanajuato 445 2012 45387294817 2006-02-15 09:45:30
279 1884 Shikarpur Avenue Haryana 263 85548 959949395183 2006-02-15 09:45:30
280 1980 Kamjanets-Podilskyi Street Illinois 404 89502 874337098891 2006-02-15 09:45:30
281 1944 Bamenda Way Michigan 573 24645 75975221996 2006-02-15 09:45:30
282 556 Baybay Manor Oyo & Osun 374 55802 363982224739 2006-02-15 09:45:30
283 457 Tongliao Loop Bursa 222 56254 880756161823 2006-02-15 09:45:30
284 600 Bradford Street East Azerbaidzan 514 96204 117592274996 2006-02-15 09:45:30
285 1006 Santa Brbara dOeste Manor Ondo & Ekiti 389 36229 85059738746 2006-02-15 09:45:30
286 1308 Sumy Loop Fujian 175 30657 583021225407 2006-02-15 09:45:30
287 1405 Chisinau Place Ponce 411 8160 62781725285 2006-02-15 09:45:30
288 226 Halifax Street Xinxiang 277 58492 790651020929 2006-02-15 09:45:30
289 1279 Udine Parkway Edo & Delta 69 75860 195003555232 2006-02-15 09:45:30
290 1336 Benin City Drive Shiga 386 46044 341242939532 2006-02-15 09:45:30
291 1155 Liaocheng Place Oyo & Osun 152 22650 558236142492 2006-02-15 09:45:30
292 1993 Tabuk Lane Tamil Nadu 522 64221 648482415405 2006-02-15 09:45:30
293 86 Higashiosaka Lane Guanajuato 563 33768 957128697225 2006-02-15 09:45:30
294 1912 Allende Manor Kowloon and New Kowl 279 58124 172262454487 2006-02-15 09:45:30
295 544 Tarsus Boulevard Gurico 562 53145 892523334 2006-02-15 09:45:30
296 1936 Cuman Avenue Virginia 433 61195 976798660411 2006-02-15 09:45:30
297 1192 Tongliao Street Sharja 470 19065 350970907017 2006-02-15 09:45:30
298 44 Najafabad Way Baskimaa 146 61391 96604821070 2006-02-15 09:45:30
299 32 Pudukkottai Lane Ohio 140 38834 967274728547 2006-02-15 09:45:30
300 661 Chisinau Lane Pietari 274 8856 816436065431 2006-02-15 09:45:30
301 951 Stara Zagora Manor Punjab 400 98573 429925609431 2006-02-15 09:45:30
302 922 Vila Velha Loop Maharashtra 9 4085 510737228015 2006-02-15 09:45:30
303 898 Jining Lane Pohjois-Pohjanmaa 387 40070 161643343536 2006-02-15 09:45:30
304 1635 Kuwana Boulevard Hiroshima 205 52137 710603868323 2006-02-15 09:45:30
305 41 El Alto Parkway Maharashtra 398 56883 51917807050 2006-02-15 09:45:30
306 1883 Maikop Lane Kaliningrad 254 68469 96110042435 2006-02-15 09:45:30
307 1908 Gaziantep Place Liaoning 536 58979 108053751300 2006-02-15 09:45:30
308 687 Alessandria Parkway Sanaa 455 57587 407218522294 2006-02-15 09:45:30
309 827 Yuncheng Drive Callao 99 79047 504434452842 2006-02-15 09:45:30
310 913 Coacalco de Berriozbal Loop Texas 33 42141 262088367001 2006-02-15 09:45:30
311 715 So Bernardo do Campo Lane Kedah 507 84804 181179321332 2006-02-15 09:45:30
312 1354 Siegen Street Rio de Janeiro 25 80184 573441801529 2006-02-15 09:45:30
313 1191 Sungai Petani Boulevard Missouri 262 9668 983259819766 2006-02-15 09:45:30
314 1224 Huejutla de Reyes Boulevard Lombardia 91 70923 806016930576 2006-02-15 09:45:30
315 543 Bergamo Avenue Minas Gerais 215 59686 103602195112 2006-02-15 09:45:30
316 746 Joliet Lane Kursk 286 94878 688485191923 2006-02-15 09:45:30
317 780 Kimberley Way Tabuk 515 17032 824396883951 2006-02-15 09:45:30
318 1774 Yaound Place Hubei 166 91400 613124286867 2006-02-15 09:45:30
319 1957 Yantai Lane So Paulo 490 59255 704948322302 2006-02-15 09:45:30
320 1542 Lubumbashi Boulevard Tel Aviv 57 62472 508800331065 2006-02-15 09:45:30
321 651 Pathankot Loop Maharashtra 336 59811 139378397418 2006-02-15 09:45:30
322 1359 Zhoushan Parkway Streymoyar 545 29763 46568045367 2006-02-15 09:45:30
323 1769 Iwaki Lane Kujawsko-Pomorskie 97 25787 556100547674 2006-02-15 09:45:30
324 1145 Vilnius Manor Mxico 451 73170 674805712553 2006-02-15 09:45:30
325 1892 Nabereznyje Telny Lane Tutuila 516 28396 478229987054 2006-02-15 09:45:30
326 470 Boksburg Street Central 81 97960 908029859266 2006-02-15 09:45:30
327 1427 A Corua (La Corua) Place Buenos Aires 45 85799 972574862516 2006-02-15 09:45:30
328 479 San Felipe del Progreso Avenue Morelos 130 54949 869051782691 2006-02-15 09:45:30
329 867 Benin City Avenue Henan 591 78543 168884817145 2006-02-15 09:45:30
330 981 Kumbakonam Place Distrito Federal 89 87611 829116184079 2006-02-15 09:45:30
331 1016 Iwakuni Street St George 269 49833 961370847344 2006-02-15 09:45:30
332 663 Baha Blanca Parkway Adana 5 33463 834418779292 2006-02-15 09:45:30
333 1860 Taguig Loop West Java 119 59550 38158430589 2006-02-15 09:45:30
334 1816 Bydgoszcz Loop Dhaka 234 64308 965273813662 2006-02-15 09:45:30
335 587 Benguela Manor Illinois 42 91590 165450987037 2006-02-15 09:45:30
336 430 Kumbakonam Drive Santa F 457 28814 105470691550 2006-02-15 09:45:30
337 1838 Tabriz Lane Dhaka 143 1195 38988715447 2006-02-15 09:45:30
338 431 Szkesfehrvr Avenue Baki 48 57828 119501405123 2006-02-15 09:45:30
339 503 Sogamoso Loop Sumqayit 505 49812 834626715837 2006-02-15 09:45:30
340 507 Smolensk Loop Sousse 492 22971 80303246192 2006-02-15 09:45:30
341 1920 Weifang Avenue Uttar Pradesh 427 15643 869507847714 2006-02-15 09:45:30
342 124 al-Manama Way Hiroshima 382 52368 647899404952 2006-02-15 09:45:30
343 1443 Mardan Street Western Cape 392 31483 231383037471 2006-02-15 09:45:30
344 1909 Benguela Lane Henan 581 19913 624138001031 2006-02-15 09:45:30
345 68 Ponce Parkway Hanoi 201 85926 870635127812 2006-02-15 09:45:30
346 1217 Konotop Avenue Gelderland 151 504 718917251754 2006-02-15 09:45:30
347 1293 Nam Dinh Way Roraima 84 71583 697656479977 2006-02-15 09:45:30
348 785 Vaduz Street Baja California 335 36170 895616862749 2006-02-15 09:45:30
349 1516 Escobar Drive Tongatapu 370 46069 64536069371 2006-02-15 09:45:30
350 1628 Nagareyama Lane Central 453 60079 20064292617 2006-02-15 09:45:30
351 1157 Nyeri Loop Adygea 320 56380 262744791493 2006-02-15 09:45:30
352 1673 Tangail Drive Daugavpils 137 26857 627924259271 2006-02-15 09:45:30
353 381 Kabul Way Taipei 209 87272 55477302294 2006-02-15 09:45:30
354 953 Hodeida Street Southern Tagalog 221 18841 53912826864 2006-02-15 09:45:30
355 469 Nakhon Sawan Street Tuvassia 531 58866 689199636560 2006-02-15 09:45:30
356 1378 Beira Loop Krasnojarsk 597 40792 840957664136 2006-02-15 09:45:30
357 1641 Changhwa Place Nord-Ouest 52 37636 256546485220 2006-02-15 09:45:30
358 1698 Southport Loop Hidalgo 393 49009 754358349853 2006-02-15 09:45:30
359 519 Nyeri Manor So Paulo 461 37650 764680915323 2006-02-15 09:45:30
360 619 Hunuco Avenue Shimane 331 81508 142596392389 2006-02-15 09:45:30
361 45 Aparecida de Goinia Place Madhya Pradesh 464 7431 650496654258 2006-02-15 09:45:30
362 482 Kowloon and New Kowloon Manor Bratislava 90 97056 738968474939 2006-02-15 09:45:30
363 604 Bern Place Jharkhand 429 5373 620719383725 2006-02-15 09:45:30
364 1623 Kingstown Drive Buenos Aires 20 91299 296394569728 2006-02-15 09:45:30
365 1009 Zanzibar Lane Arecibo 32 64875 102396298916 2006-02-15 09:45:30
366 114 Jalib al-Shuyukh Manor Centre 585 60440 845378657301 2006-02-15 09:45:30
367 1163 London Parkway Par 66 6066 675120358494 2006-02-15 09:45:30
368 1658 Jastrzebie-Zdrj Loop Central 372 96584 568367775448 2006-02-15 09:45:30
369 817 Laredo Avenue Jalisco 188 77449 151249681135 2006-02-15 09:45:30
370 1565 Tangail Manor Okinawa 377 45750 634445428822 2006-02-15 09:45:30
371 1912 Emeishan Drive Balikesir 50 33050 99883471275 2006-02-15 09:45:30
372 230 Urawa Drive Andhra Pradesh 8 2738 166898395731 2006-02-15 09:45:30
373 1922 Miraj Way Esfahan 356 13203 320471479776 2006-02-15 09:45:30
374 433 Florencia Street Chihuahua 250 91330 561729882725 2006-02-15 09:45:30
375 1049 Matamoros Parkway Karnataka 191 69640 960505250340 2006-02-15 09:45:30
376 1061 Ede Avenue Southern Tagalog 98 57810 333390595558 2006-02-15 09:45:30
377 154 Oshawa Manor East Java 415 72771 440365973660 2006-02-15 09:45:30
378 1191 Tandil Drive Southern Tagalog 523 6362 45554316010 2006-02-15 09:45:30
379 1133 Rizhao Avenue Pernambuco 572 2800 600264533987 2006-02-15 09:45:30
380 1519 Santiago de los Caballeros Loop East Kasai 348 22025 409315295763 2006-02-15 09:45:30
381 1618 Olomouc Manor Kurgan 285 26385 96846695220 2006-02-15 09:45:30
382 220 Hidalgo Drive Kermanshah 265 45298 342720754566 2006-02-15 09:45:30
383 686 Donostia-San Sebastin Lane Guangdong 471 97390 71857599858 2006-02-15 09:45:30
384 97 Mogiljov Lane Gujarat 73 89294 924815207181 2006-02-15 09:45:30
385 1642 Charlotte Amalie Drive Slaskie 549 75442 821476736117 2006-02-15 09:45:30
386 1368 Maracabo Boulevard 493 32716 934352415130 2006-02-15 09:45:30
387 401 Sucre Boulevard New Hampshire 322 25007 486395999608 2006-02-15 09:45:30
388 368 Hunuco Boulevard Namibe 360 17165 106439158941 2006-02-15 09:45:30
389 500 Lincoln Parkway Jiangsu 210 95509 550306965159 2006-02-15 09:45:30
390 102 Chapra Drive Ibaragi 521 14073 776031833752 2006-02-15 09:45:30
391 1793 Meixian Place Hmelnytskyi 258 33535 619966287415 2006-02-15 09:45:30
392 514 Ife Way Shaba 315 69973 900235712074 2006-02-15 09:45:30
393 717 Changzhou Lane Southern Tagalog 104 21615 426255288071 2006-02-15 09:45:30
394 753 Ilorin Avenue Sichuan 157 3656 464511145118 2006-02-15 09:45:30
395 1337 Mit Ghamr Avenue Nakhon Sawan 358 29810 175283210378 2006-02-15 09:45:30
396 767 Pyongyang Drive Osaka 229 83536 667736124769 2006-02-15 09:45:30
397 614 Pak Kret Street Addis Abeba 6 27796 47808359842 2006-02-15 09:45:30
398 954 Lapu-Lapu Way Moskova 278 8816 737229003916 2006-02-15 09:45:30
399 331 Bydgoszcz Parkway Asturia 181 966 537374465982 2006-02-15 09:45:30
400 1152 Citrus Heights Manor al-Qadarif 15 5239 765957414528 2006-02-15 09:45:30
401 168 Cianjur Manor Saitama 228 73824 679095087143 2006-02-15 09:45:30
402 616 Hagonoy Avenue Krasnojarsk 39 46043 604177838256 2006-02-15 09:45:30
403 1190 0 Place Rio Grande do Sul 44 10417 841876514789 2006-02-15 09:45:30
404 734 Bchar Place Punjab 375 30586 280578750435 2006-02-15 09:45:30
405 530 Lausanne Lane Texas 135 11067 775235029633 2006-02-15 09:45:30
406 454 Patiala Lane Fukushima 276 13496 794553031307 2006-02-15 09:45:30
407 1346 Mysore Drive Bretagne 92 61507 516647474029 2006-02-15 09:45:30
408 990 Etawah Loop Tamil Nadu 564 79940 206169448769 2006-02-15 09:45:30
409 1266 Laredo Parkway Saitama 380 7664 1483365694 2006-02-15 09:45:30
410 88 Nagaon Manor Buenos Aires 524 86868 779461480495 2006-02-15 09:45:30
411 264 Bhimavaram Manor St Thomas 111 54749 302526949177 2006-02-15 09:45:30
412 1639 Saarbrcken Drive North West 437 9827 328494873422 2006-02-15 09:45:30
413 692 Amroha Drive Northern 230 35575 359478883004 2006-02-15 09:45:30
414 1936 Lapu-Lapu Parkway Bauchi & Gombe 141 7122 653436985797 2006-02-15 09:45:30
415 432 Garden Grove Street Ontario 430 65630 615964523510 2006-02-15 09:45:30
416 1445 Carmen Parkway West Java 117 70809 598912394463 2006-02-15 09:45:30
417 791 Salinas Street Punjab 208 40509 129953030512 2006-02-15 09:45:30
418 126 Acua Parkway West Bengali 71 58888 480039662421 2006-02-15 09:45:30
419 397 Sunnyvale Avenue Guanajuato 19 55566 680851640676 2006-02-15 09:45:30
420 992 Klerksdorp Loop Utrecht 23 33711 855290087237 2006-02-15 09:45:30
421 966 Arecibo Loop Sind 134 94018 15273765306 2006-02-15 09:45:30
422 289 Santo Andr Manor al-Sharqiya 16 72410 214976066017 2006-02-15 09:45:30
423 437 Chungho Drive Puerto Plata 450 59489 491271355190 2006-02-15 09:45:30
424 1948 Bayugan Parkway Bihar 264 60622 987306329957 2006-02-15 09:45:30
425 1866 al-Qatif Avenue California 155 89420 546793516940 2006-02-15 09:45:30
426 1661 Abha Drive Tamil Nadu 416 14400 270456873752 2006-02-15 09:45:30
427 1557 Cape Coral Parkway Hubei 293 46875 368284120423 2006-02-15 09:45:30
428 1727 Matamoros Place Sawhaj 465 78813 129673677866 2006-02-15 09:45:30
429 1269 Botosani Manor Guangdong 468 47394 736517327853 2006-02-15 09:45:30
430 355 Vitria de Santo Anto Way Oaxaca 452 81758 548003849552 2006-02-15 09:45:30
431 1596 Acua Parkway Jharkhand 418 70425 157133457169 2006-02-15 09:45:30
432 259 Ipoh Drive So Paulo 189 64964 419009857119 2006-02-15 09:45:30
433 1823 Hoshiarpur Lane Komi 510 33191 307133768620 2006-02-15 09:45:30
434 1404 Taguig Drive Okayama 547 87212 572068624538 2006-02-15 09:45:30
435 740 Udaipur Lane Nizni Novgorod 150 33505 497288595103 2006-02-15 09:45:30
436 287 Cuautla Boulevard Chuquisaca 501 72736 82619513349 2006-02-15 09:45:30
437 1766 Almirante Brown Street KwaZulu-Natal 364 63104 617567598243 2006-02-15 09:45:30
438 596 Huixquilucan Place Nampula 351 65892 342709348083 2006-02-15 09:45:30
439 1351 Aparecida de Goinia Parkway Northern Mindanao 391 41775 959834530529 2006-02-15 09:45:30
440 722 Bradford Lane Shandong 249 90920 746251338300 2006-02-15 09:45:30
441 983 Santa F Way British Colombia 565 47472 145720452260 2006-02-15 09:45:30
442 1245 Ibirit Way La Romana 290 40926 331888642162 2006-02-15 09:45:30
443 1836 Korla Parkway Copperbelt 272 55405 689681677428 2006-02-15 09:45:30
444 231 Kaliningrad Place Lombardia 70 57833 575081026569 2006-02-15 09:45:30
445 495 Bhimavaram Lane Maharashtra 144 3 82088937724 2006-02-15 09:45:30
446 1924 Shimonoseki Drive Batna 59 52625 406784385440 2006-02-15 09:45:30
447 105 Dzerzinsk Manor Inner Mongolia 540 48570 240776414296 2006-02-15 09:45:30
448 614 Denizli Parkway Rio Grande do Sul 486 29444 876491807547 2006-02-15 09:45:30
449 1289 Belm Boulevard Tartumaa 530 88306 237368926031 2006-02-15 09:45:30
450 203 Tambaram Street Buenos Aires 161 73942 411549550611 2006-02-15 09:45:30
451 1704 Tambaram Manor West Bengali 554 2834 39463554936 2006-02-15 09:45:30
452 207 Cuernavaca Loop Tatarstan 352 52671 782900030287 2006-02-15 09:45:30
453 319 Springs Loop Baijeri 160 99552 72524459905 2006-02-15 09:45:30
454 956 Nam Dinh Manor Kerman 481 21872 474047727727 2006-02-15 09:45:30
455 1947 Paarl Way Central Java 509 23636 834061016202 2006-02-15 09:45:30
456 814 Simferopol Loop Sinaloa 154 48745 524567129902 2006-02-15 09:45:30
457 535 Ahmadnagar Manor Abu Dhabi 3 41136 985109775584 2006-02-15 09:45:30
458 138 Caracas Boulevard Zulia 326 16790 974433019532 2006-02-15 09:45:30
459 251 Florencia Drive Michoacn de Ocampo 556 16119 118011831565 2006-02-15 09:45:30
460 659 Gatineau Boulevard La Paz 153 28587 205524798287 2006-02-15 09:45:30
461 1889 Valparai Way Ziguinchor 600 75559 670370974122 2006-02-15 09:45:30
462 1485 Bratislava Place Illinois 435 83183 924663855568 2006-02-15 09:45:30
463 935 Aden Boulevard Central Java 532 64709 335052544020 2006-02-15 09:45:30
464 76 Kermanshah Manor Esfahan 423 23343 762361821578 2006-02-15 09:45:30
465 734 Tanshui Avenue Caquet 170 70664 366776723320 2006-02-15 09:45:30
466 118 Jaffna Loop Northern Mindanao 182 10447 325526730021 2006-02-15 09:45:30
467 1621 Tongliao Avenue Irkutsk 558 22173 209342540247 2006-02-15 09:45:30
468 1844 Usak Avenue Nova Scotia 196 84461 164414772677 2006-02-15 09:45:30
469 1872 Toulon Loop OHiggins 428 7939 928809465153 2006-02-15 09:45:30
470 1088 Ibirit Place Jalisco 595 88502 49084281333 2006-02-15 09:45:30
471 1322 Mosul Parkway Shandong 145 95400 268053970382 2006-02-15 09:45:30
472 1447 Chatsworth Place Chihuahua 129 41545 769370126331 2006-02-15 09:45:30
473 1257 Guadalajara Street Karnataka 78 33599 195337700615 2006-02-15 09:45:30
474 1469 Plock Lane Galicia 388 95835 622884741180 2006-02-15 09:45:30
475 434 Ourense (Orense) Manor Hodeida 206 14122 562370137426 2006-02-15 09:45:30
476 270 Tambaram Parkway Gauteng 244 9668 248446668735 2006-02-15 09:45:30
477 1786 Salinas Place Nam Ha 359 66546 206060652238 2006-02-15 09:45:30
478 1078 Stara Zagora Drive Aceh 301 69221 932992626595 2006-02-15 09:45:30
479 1854 Okara Boulevard Drenthe 158 42123 131912793873 2006-02-15 09:45:30
480 421 Yaound Street Sumy 385 11363 726875628268 2006-02-15 09:45:30
481 1153 Allende Way Qubec 179 20336 856872225376 2006-02-15 09:45:30
482 808 Naala-Porto Parkway England 500 41060 553452430707 2006-02-15 09:45:30
483 632 Usolje-Sibirskoje Parkway Ha Darom 36 73085 667648979883 2006-02-15 09:45:30
484 98 Pyongyang Boulevard Ohio 11 88749 191958435142 2006-02-15 09:45:30
485 984 Novoterkassk Loop Gaziantep 180 28165 435118527255 2006-02-15 09:45:30
486 64 Korla Street Mwanza 347 25145 510383179153 2006-02-15 09:45:30
487 1785 So Bernardo do Campo Street Veracruz 125 71182 684529463244 2006-02-15 09:45:30
488 698 Jelets Boulevard Denizli 142 2596 975185523021 2006-02-15 09:45:30
489 1297 Alvorada Parkway Ningxia 587 11839 508348602835 2006-02-15 09:45:30
490 1909 Dayton Avenue Guangdong 469 88513 702955450528 2006-02-15 09:45:30
491 1789 Saint-Denis Parkway Coahuila de Zaragoza 4 8268 936806643983 2006-02-15 09:45:30
492 185 Mannheim Lane Stavropol 408 23661 589377568313 2006-02-15 09:45:30
493 184 Mandaluyong Street Baja California Sur 288 94239 488425406814 2006-02-15 09:45:30
494 591 Sungai Petani Drive Okayama 376 46400 37247325001 2006-02-15 09:45:30
495 656 Matamoros Drive Boyac 487 19489 17305839123 2006-02-15 09:45:30
496 775 ostka Drive al-Daqahliya 337 22358 171973024401 2006-02-15 09:45:30
497 1013 Tabuk Boulevard West Bengali 261 96203 158399646978 2006-02-15 09:45:30
498 319 Plock Parkway Istanbul 504 26101 854259976812 2006-02-15 09:45:30
499 1954 Kowloon and New Kowloon Way Chimborazo 434 63667 898559280434 2006-02-15 09:45:30
500 362 Rajkot Lane Gansu 47 98030 962020153680 2006-02-15 09:45:30
501 1060 Tandil Lane Shandong 432 72349 211256301880 2006-02-15 09:45:30
502 1515 Korla Way England 589 57197 959467760895 2006-02-15 09:45:30
503 1416 San Juan Bautista Tuxtepec Avenue Zufar 444 50592 144206758053 2006-02-15 09:45:30
504 1 Valle de Santiago Avenue Apulia 93 86208 465897838272 2006-02-15 09:45:30
505 519 Brescia Parkway East Java 318 69504 793996678771 2006-02-15 09:45:30
506 414 Mandaluyong Street Lubelskie 314 16370 52709222667 2006-02-15 09:45:30
507 1197 Sokoto Boulevard West Bengali 478 87687 868602816371 2006-02-15 09:45:30
508 496 Celaya Drive Nagano 552 90797 759586584889 2006-02-15 09:45:30
509 786 Matsue Way Illinois 245 37469 111177206479 2006-02-15 09:45:30
510 48 Maracabo Place Central Luzon 519 1570 82671830126 2006-02-15 09:45:30
511 1152 al-Qatif Lane Kalimantan Barat 412 44816 131370665218 2006-02-15 09:45:30
512 1269 Ipoh Avenue Eskisehir 163 54674 402630109080 2006-02-15 09:45:30
513 758 Korolev Parkway Andhra Pradesh 568 75474 441628280920 2006-02-15 09:45:30
514 1747 Rustenburg Place Bihar 110 51369 442673923363 2006-02-15 09:45:30
515 886 Tonghae Place Volgograd 259 19450 711928348157 2006-02-15 09:45:30
516 1574 Goinia Boulevard Heilongjiang 502 39529 59634255214 2006-02-15 09:45:30
517 548 Uruapan Street Ontario 312 35653 879347453467 2006-02-15 09:45:30
519 962 Tama Loop 583 65952 282667506728 2006-02-15 09:45:30
520 1778 Gijn Manor Hubei 594 35156 288910576761 2006-02-15 09:45:30
521 568 Dhule (Dhulia) Loop Coquimbo 127 92568 602101369463 2006-02-15 09:45:30
522 1768 Udine Loop Battambang 60 32347 448876499197 2006-02-15 09:45:30
523 608 Birgunj Parkway Taipei 116 400 627425618482 2006-02-15 09:45:30
524 680 A Corua (La Corua) Manor Sivas 482 49806 158326114853 2006-02-15 09:45:30
525 1949 Sanya Street Gumma 224 61244 132100972047 2006-02-15 09:45:30
526 617 Klerksdorp Place Khanh Hoa 366 94707 574973479129 2006-02-15 09:45:30
527 1993 0 Loop Liaoning 588 41214 25865528181 2006-02-15 09:45:30
528 1176 Southend-on-Sea Manor Southern Tagalog 458 81651 236679267178 2006-02-15 09:45:30
529 600 Purnea (Purnia) Avenue Nghe An 571 18043 638409958875 2006-02-15 09:45:30
530 1003 Qinhuangdao Street West Java 419 25972 35533115997 2006-02-15 09:45:30
531 1986 Sivas Place Friuli-Venezia Giuli 551 95775 182059202712 2006-02-15 09:45:30
532 1427 Tabuk Place Florida 101 31342 214756839122 2006-02-15 09:45:30
533 556 Asuncin Way Mogiljov 339 35364 338244023543 2006-02-15 09:45:30
534 486 Ondo Parkway Benguela 67 35202 105882218332 2006-02-15 09:45:30
535 635 Brest Manor Andhra Pradesh 75 40899 80593242951 2006-02-15 09:45:30
536 166 Jinchang Street Buenos Aires 165 86760 717566026669 2006-02-15 09:45:30
537 958 Sagamihara Lane Mie 287 88408 427274926505 2006-02-15 09:45:30
538 1817 Livorno Way Khanh Hoa 100 79401 478380208348 2006-02-15 09:45:30
539 1332 Gaziantep Lane Shandong 80 22813 383353187467 2006-02-15 09:45:30
540 949 Allende Lane Uttar Pradesh 24 67521 122981120653 2006-02-15 09:45:30
541 195 Ilorin Street Chari-Baguirmi 363 49250 8912935608 2006-02-15 09:45:30
542 193 Bhusawal Place Kang-won 539 9750 745267607502 2006-02-15 09:45:30
543 43 Vilnius Manor Colorado 42 79814 484500282381 2006-02-15 09:45:30
544 183 Haiphong Street Jilin 46 69953 488600270038 2006-02-15 09:45:30
545 163 Augusta-Richmond County Loop Carabobo 561 33030 754579047924 2006-02-15 09:45:30
546 191 Jos Azueta Parkway Ruse 436 13629 932156667696 2006-02-15 09:45:30
547 379 Lublin Parkway Toscana 309 74568 921960450089 2006-02-15 09:45:30
548 1658 Cuman Loop Sumatera Selatan 396 51309 784907335610 2006-02-15 09:45:30
549 454 Qinhuangdao Drive Tadla-Azilal 68 25866 786270036240 2006-02-15 09:45:30
550 1715 Okayama Street So Paulo 485 55676 169352919175 2006-02-15 09:45:30
551 182 Nukualofa Drive Sumy 275 15414 426346224043 2006-02-15 09:45:30
552 390 Wroclaw Way Hainan 462 5753 357593328658 2006-02-15 09:45:30
553 1421 Quilmes Lane Ishikawa 260 19151 135407755975 2006-02-15 09:45:30
554 947 Trshavn Place Central Luzon 528 841 50898428626 2006-02-15 09:45:30
555 1764 Jalib al-Shuyukh Parkway Galicia 459 77642 84794532510 2006-02-15 09:45:30
556 346 Cam Ranh Avenue Zhejiang 599 39976 978430786151 2006-02-15 09:45:30
557 1407 Pachuca de Soto Place Rio Grande do Sul 21 26284 380077794770 2006-02-15 09:45:30
558 904 Clarksville Drive Zhejiang 193 52234 955349440539 2006-02-15 09:45:30
559 1917 Kumbakonam Parkway Vojvodina 368 11892 698182547686 2006-02-15 09:45:30
560 1447 Imus Place Gujarat 426 12905 62127829280 2006-02-15 09:45:30
561 1497 Fengshan Drive KwaZulu-Natal 112 63022 368738360376 2006-02-15 09:45:30
562 869 Shikarpur Way England 496 57380 590764256785 2006-02-15 09:45:30
563 1059 Yuncheng Avenue Vilna 570 47498 107092893983 2006-02-15 09:45:30
564 505 Madiun Boulevard Dolnoslaskie 577 97271 970638808606 2006-02-15 09:45:30
565 1741 Hoshiarpur Boulevard al-Sharqiya 79 22372 855066328617 2006-02-15 09:45:30
566 1229 Varanasi (Benares) Manor Buenos Aires 43 40195 817740355461 2006-02-15 09:45:30
567 1894 Boa Vista Way Texas 178 77464 239357986667 2006-02-15 09:45:30
568 1342 Sharja Way Sokoto & Kebbi & Zam 488 93655 946114054231 2006-02-15 09:45:30
569 1342 Abha Boulevard Bukarest 95 10714 997453607116 2006-02-15 09:45:30
570 415 Pune Avenue Shandong 580 44274 203202500108 2006-02-15 09:45:30
571 1746 Faaa Way Huanuco 214 32515 863080561151 2006-02-15 09:45:30
572 539 Hami Way Tokat 538 52196 525518075499 2006-02-15 09:45:30
573 1407 Surakarta Manor Moskova 466 33224 324346485054 2006-02-15 09:45:30
574 502 Mandi Bahauddin Parkway Anzotegui 55 15992 618156722572 2006-02-15 09:45:30
575 1052 Pathankot Avenue Sichuan 299 77397 128499386727 2006-02-15 09:45:30
576 1351 Sousse Lane Coahuila de Zaragoza 341 37815 203804046132 2006-02-15 09:45:30
577 1501 Pangkal Pinang Avenue Mazowieckie 409 943 770864062795 2006-02-15 09:45:30
578 1405 Hagonoy Avenue Slaskie 133 86587 867287719310 2006-02-15 09:45:30
579 521 San Juan Bautista Tuxtepec Place Qaraghandy 598 95093 844018348565 2006-02-15 09:45:30
580 923 Tangail Boulevard Tokyo-to 10 33384 315528269898 2006-02-15 09:45:30
581 186 Skikda Lane Morelos 131 89422 14465669789 2006-02-15 09:45:30
582 1568 Celaya Parkway Kaohsiung 168 34750 278669994384 2006-02-15 09:45:30
583 1489 Kakamigahara Lane Taipei 526 98883 29341849811 2006-02-15 09:45:30
584 1819 Alessandria Loop Campeche 103 53829 377633994405 2006-02-15 09:45:30
585 1208 Tama Loop Ninawa 344 73605 954786054144 2006-02-15 09:45:30
586 951 Springs Lane Central Mindanao 219 96115 165164761435 2006-02-15 09:45:30
587 760 Miyakonojo Drive Guerrero 246 64682 294449058179 2006-02-15 09:45:30
588 966 Asuncin Way Hidalgo 212 62703 995527378381 2006-02-15 09:45:30
589 1584 Ljubertsy Lane England 494 22954 285710089439 2006-02-15 09:45:30
590 247 Jining Parkway Banjul 54 53446 170115379190 2006-02-15 09:45:30
591 773 Dallas Manor Buenos Aires 424 12664 914466027044 2006-02-15 09:45:30
592 1923 Stara Zagora Lane Nantou 546 95179 182178609211 2006-02-15 09:45:30
593 1402 Zanzibar Boulevard Guanajuato 106 71102 387448063440 2006-02-15 09:45:30
594 1464 Kursk Parkway Shandong 574 17381 338758048786 2006-02-15 09:45:30
595 1074 Sanaa Parkway Loja 311 22474 154124128457 2006-02-15 09:45:30
596 1759 Niznekamsk Avenue al-Manama 14 39414 864392582257 2006-02-15 09:45:30
597 32 Liaocheng Way Minas Gerais 248 1944 410877354933 2006-02-15 09:45:30
598 42 Fontana Avenue Fejr 512 14684 437829801725 2006-02-15 09:45:30
599 1895 Zhezqazghan Drive California 177 36693 137809746111 2006-02-15 09:45:30
600 1837 Kaduna Parkway Inner Mongolia 241 82580 640843562301 2006-02-15 09:45:30
601 844 Bucuresti Place Liaoning 242 36603 935952366111 2006-02-15 09:45:30
602 1101 Bucuresti Boulevard West Greece 401 97661 199514580428 2006-02-15 09:45:30
603 1103 Quilmes Boulevard Piura 503 52137 644021380889 2006-02-15 09:45:30
604 1331 Usak Boulevard Vaud 296 61960 145308717464 2006-02-15 09:45:30
605 1325 Fukuyama Street Heilongjiang 537 27107 288241215394 2006-02-15 09:45:30
\.
1 A Corua (La Corua) 87 2006-02-15 09:45:25
2 Abha 82 2006-02-15 09:45:25
3 Abu Dhabi 101 2006-02-15 09:45:25
4 Acua 60 2006-02-15 09:45:25
5 Adana 97 2006-02-15 09:45:25
6 Addis Abeba 31 2006-02-15 09:45:25
7 Aden 107 2006-02-15 09:45:25
8 Adoni 44 2006-02-15 09:45:25
9 Ahmadnagar 44 2006-02-15 09:45:25
10 Akishima 50 2006-02-15 09:45:25
11 Akron 103 2006-02-15 09:45:25
12 al-Ayn 101 2006-02-15 09:45:25
13 al-Hawiya 82 2006-02-15 09:45:25
14 al-Manama 11 2006-02-15 09:45:25
15 al-Qadarif 89 2006-02-15 09:45:25
16 al-Qatif 82 2006-02-15 09:45:25
17 Alessandria 49 2006-02-15 09:45:25
18 Allappuzha (Alleppey) 44 2006-02-15 09:45:25
19 Allende 60 2006-02-15 09:45:25
20 Almirante Brown 6 2006-02-15 09:45:25
21 Alvorada 15 2006-02-15 09:45:25
22 Ambattur 44 2006-02-15 09:45:25
23 Amersfoort 67 2006-02-15 09:45:25
24 Amroha 44 2006-02-15 09:45:25
25 Angra dos Reis 15 2006-02-15 09:45:25
26 Anpolis 15 2006-02-15 09:45:25
27 Antofagasta 22 2006-02-15 09:45:25
28 Aparecida de Goinia 15 2006-02-15 09:45:25
29 Apeldoorn 67 2006-02-15 09:45:25
30 Araatuba 15 2006-02-15 09:45:25
31 Arak 46 2006-02-15 09:45:25
32 Arecibo 77 2006-02-15 09:45:25
33 Arlington 103 2006-02-15 09:45:25
34 Ashdod 48 2006-02-15 09:45:25
35 Ashgabat 98 2006-02-15 09:45:25
36 Ashqelon 48 2006-02-15 09:45:25
37 Asuncin 73 2006-02-15 09:45:25
38 Athenai 39 2006-02-15 09:45:25
39 Atinsk 80 2006-02-15 09:45:25
40 Atlixco 60 2006-02-15 09:45:25
41 Augusta-Richmond County 103 2006-02-15 09:45:25
42 Aurora 103 2006-02-15 09:45:25
43 Avellaneda 6 2006-02-15 09:45:25
44 Bag 15 2006-02-15 09:45:25
45 Baha Blanca 6 2006-02-15 09:45:25
46 Baicheng 23 2006-02-15 09:45:25
47 Baiyin 23 2006-02-15 09:45:25
48 Baku 10 2006-02-15 09:45:25
49 Balaiha 80 2006-02-15 09:45:25
50 Balikesir 97 2006-02-15 09:45:25
51 Balurghat 44 2006-02-15 09:45:25
52 Bamenda 19 2006-02-15 09:45:25
53 Bandar Seri Begawan 16 2006-02-15 09:45:25
54 Banjul 37 2006-02-15 09:45:25
55 Barcelona 104 2006-02-15 09:45:25
56 Basel 91 2006-02-15 09:45:25
57 Bat Yam 48 2006-02-15 09:45:25
58 Batman 97 2006-02-15 09:45:25
59 Batna 2 2006-02-15 09:45:25
60 Battambang 18 2006-02-15 09:45:25
61 Baybay 75 2006-02-15 09:45:25
62 Bayugan 75 2006-02-15 09:45:25
63 Bchar 2 2006-02-15 09:45:25
64 Beira 63 2006-02-15 09:45:25
65 Bellevue 103 2006-02-15 09:45:25
66 Belm 15 2006-02-15 09:45:25
67 Benguela 4 2006-02-15 09:45:25
68 Beni-Mellal 62 2006-02-15 09:45:25
69 Benin City 69 2006-02-15 09:45:25
70 Bergamo 49 2006-02-15 09:45:25
71 Berhampore (Baharampur) 44 2006-02-15 09:45:25
72 Bern 91 2006-02-15 09:45:25
73 Bhavnagar 44 2006-02-15 09:45:25
74 Bhilwara 44 2006-02-15 09:45:25
75 Bhimavaram 44 2006-02-15 09:45:25
76 Bhopal 44 2006-02-15 09:45:25
77 Bhusawal 44 2006-02-15 09:45:25
78 Bijapur 44 2006-02-15 09:45:25
79 Bilbays 29 2006-02-15 09:45:25
80 Binzhou 23 2006-02-15 09:45:25
81 Birgunj 66 2006-02-15 09:45:25
82 Bislig 75 2006-02-15 09:45:25
83 Blumenau 15 2006-02-15 09:45:25
84 Boa Vista 15 2006-02-15 09:45:25
85 Boksburg 85 2006-02-15 09:45:25
86 Botosani 78 2006-02-15 09:45:25
87 Botshabelo 85 2006-02-15 09:45:25
88 Bradford 102 2006-02-15 09:45:25
89 Braslia 15 2006-02-15 09:45:25
90 Bratislava 84 2006-02-15 09:45:25
91 Brescia 49 2006-02-15 09:45:25
92 Brest 34 2006-02-15 09:45:25
93 Brindisi 49 2006-02-15 09:45:25
94 Brockton 103 2006-02-15 09:45:25
95 Bucuresti 78 2006-02-15 09:45:25
96 Buenaventura 24 2006-02-15 09:45:25
97 Bydgoszcz 76 2006-02-15 09:45:25
98 Cabuyao 75 2006-02-15 09:45:25
99 Callao 74 2006-02-15 09:45:25
100 Cam Ranh 105 2006-02-15 09:45:25
101 Cape Coral 103 2006-02-15 09:45:25
102 Caracas 104 2006-02-15 09:45:25
103 Carmen 60 2006-02-15 09:45:25
104 Cavite 75 2006-02-15 09:45:25
105 Cayenne 35 2006-02-15 09:45:25
106 Celaya 60 2006-02-15 09:45:25
107 Chandrapur 44 2006-02-15 09:45:25
108 Changhwa 92 2006-02-15 09:45:25
109 Changzhou 23 2006-02-15 09:45:25
110 Chapra 44 2006-02-15 09:45:25
111 Charlotte Amalie 106 2006-02-15 09:45:25
112 Chatsworth 85 2006-02-15 09:45:25
113 Cheju 86 2006-02-15 09:45:25
114 Chiayi 92 2006-02-15 09:45:25
115 Chisinau 61 2006-02-15 09:45:25
116 Chungho 92 2006-02-15 09:45:25
117 Cianjur 45 2006-02-15 09:45:25
118 Ciomas 45 2006-02-15 09:45:25
119 Ciparay 45 2006-02-15 09:45:25
120 Citrus Heights 103 2006-02-15 09:45:25
121 Citt del Vaticano 41 2006-02-15 09:45:25
122 Ciudad del Este 73 2006-02-15 09:45:25
123 Clarksville 103 2006-02-15 09:45:25
124 Coacalco de Berriozbal 60 2006-02-15 09:45:25
125 Coatzacoalcos 60 2006-02-15 09:45:25
126 Compton 103 2006-02-15 09:45:25
127 Coquimbo 22 2006-02-15 09:45:25
128 Crdoba 6 2006-02-15 09:45:25
129 Cuauhtmoc 60 2006-02-15 09:45:25
130 Cuautla 60 2006-02-15 09:45:25
131 Cuernavaca 60 2006-02-15 09:45:25
132 Cuman 104 2006-02-15 09:45:25
133 Czestochowa 76 2006-02-15 09:45:25
134 Dadu 72 2006-02-15 09:45:25
135 Dallas 103 2006-02-15 09:45:25
136 Datong 23 2006-02-15 09:45:25
137 Daugavpils 54 2006-02-15 09:45:25
138 Davao 75 2006-02-15 09:45:25
139 Daxian 23 2006-02-15 09:45:25
140 Dayton 103 2006-02-15 09:45:25
141 Deba Habe 69 2006-02-15 09:45:25
142 Denizli 97 2006-02-15 09:45:25
143 Dhaka 12 2006-02-15 09:45:25
144 Dhule (Dhulia) 44 2006-02-15 09:45:25
145 Dongying 23 2006-02-15 09:45:25
146 Donostia-San Sebastin 87 2006-02-15 09:45:25
147 Dos Quebradas 24 2006-02-15 09:45:25
148 Duisburg 38 2006-02-15 09:45:25
149 Dundee 102 2006-02-15 09:45:25
150 Dzerzinsk 80 2006-02-15 09:45:25
151 Ede 67 2006-02-15 09:45:25
152 Effon-Alaiye 69 2006-02-15 09:45:25
153 El Alto 14 2006-02-15 09:45:25
154 El Fuerte 60 2006-02-15 09:45:25
155 El Monte 103 2006-02-15 09:45:25
156 Elista 80 2006-02-15 09:45:25
157 Emeishan 23 2006-02-15 09:45:25
158 Emmen 67 2006-02-15 09:45:25
159 Enshi 23 2006-02-15 09:45:25
160 Erlangen 38 2006-02-15 09:45:25
161 Escobar 6 2006-02-15 09:45:25
162 Esfahan 46 2006-02-15 09:45:25
163 Eskisehir 97 2006-02-15 09:45:25
164 Etawah 44 2006-02-15 09:45:25
165 Ezeiza 6 2006-02-15 09:45:25
166 Ezhou 23 2006-02-15 09:45:25
167 Faaa 36 2006-02-15 09:45:25
168 Fengshan 92 2006-02-15 09:45:25
169 Firozabad 44 2006-02-15 09:45:25
170 Florencia 24 2006-02-15 09:45:25
171 Fontana 103 2006-02-15 09:45:25
172 Fukuyama 50 2006-02-15 09:45:25
173 Funafuti 99 2006-02-15 09:45:25
174 Fuyu 23 2006-02-15 09:45:25
175 Fuzhou 23 2006-02-15 09:45:25
176 Gandhinagar 44 2006-02-15 09:45:25
177 Garden Grove 103 2006-02-15 09:45:25
178 Garland 103 2006-02-15 09:45:25
179 Gatineau 20 2006-02-15 09:45:25
180 Gaziantep 97 2006-02-15 09:45:25
181 Gijn 87 2006-02-15 09:45:25
182 Gingoog 75 2006-02-15 09:45:25
183 Goinia 15 2006-02-15 09:45:25
184 Gorontalo 45 2006-02-15 09:45:25
185 Grand Prairie 103 2006-02-15 09:45:25
186 Graz 9 2006-02-15 09:45:25
187 Greensboro 103 2006-02-15 09:45:25
188 Guadalajara 60 2006-02-15 09:45:25
189 Guaruj 15 2006-02-15 09:45:25
190 guas Lindas de Gois 15 2006-02-15 09:45:25
191 Gulbarga 44 2006-02-15 09:45:25
192 Hagonoy 75 2006-02-15 09:45:25
193 Haining 23 2006-02-15 09:45:25
194 Haiphong 105 2006-02-15 09:45:25
195 Haldia 44 2006-02-15 09:45:25
196 Halifax 20 2006-02-15 09:45:25
197 Halisahar 44 2006-02-15 09:45:25
198 Halle/Saale 38 2006-02-15 09:45:25
199 Hami 23 2006-02-15 09:45:25
200 Hamilton 68 2006-02-15 09:45:25
201 Hanoi 105 2006-02-15 09:45:25
202 Hidalgo 60 2006-02-15 09:45:25
203 Higashiosaka 50 2006-02-15 09:45:25
204 Hino 50 2006-02-15 09:45:25
205 Hiroshima 50 2006-02-15 09:45:25
206 Hodeida 107 2006-02-15 09:45:25
207 Hohhot 23 2006-02-15 09:45:25
208 Hoshiarpur 44 2006-02-15 09:45:25
209 Hsichuh 92 2006-02-15 09:45:25
210 Huaian 23 2006-02-15 09:45:25
211 Hubli-Dharwad 44 2006-02-15 09:45:25
212 Huejutla de Reyes 60 2006-02-15 09:45:25
213 Huixquilucan 60 2006-02-15 09:45:25
214 Hunuco 74 2006-02-15 09:45:25
215 Ibirit 15 2006-02-15 09:45:25
216 Idfu 29 2006-02-15 09:45:25
217 Ife 69 2006-02-15 09:45:25
218 Ikerre 69 2006-02-15 09:45:25
219 Iligan 75 2006-02-15 09:45:25
220 Ilorin 69 2006-02-15 09:45:25
221 Imus 75 2006-02-15 09:45:25
222 Inegl 97 2006-02-15 09:45:25
223 Ipoh 59 2006-02-15 09:45:25
224 Isesaki 50 2006-02-15 09:45:25
225 Ivanovo 80 2006-02-15 09:45:25
226 Iwaki 50 2006-02-15 09:45:25
227 Iwakuni 50 2006-02-15 09:45:25
228 Iwatsuki 50 2006-02-15 09:45:25
229 Izumisano 50 2006-02-15 09:45:25
230 Jaffna 88 2006-02-15 09:45:25
231 Jaipur 44 2006-02-15 09:45:25
232 Jakarta 45 2006-02-15 09:45:25
233 Jalib al-Shuyukh 53 2006-02-15 09:45:25
234 Jamalpur 12 2006-02-15 09:45:25
235 Jaroslavl 80 2006-02-15 09:45:25
236 Jastrzebie-Zdrj 76 2006-02-15 09:45:25
237 Jedda 82 2006-02-15 09:45:25
238 Jelets 80 2006-02-15 09:45:25
239 Jhansi 44 2006-02-15 09:45:25
240 Jinchang 23 2006-02-15 09:45:25
241 Jining 23 2006-02-15 09:45:25
242 Jinzhou 23 2006-02-15 09:45:25
243 Jodhpur 44 2006-02-15 09:45:25
244 Johannesburg 85 2006-02-15 09:45:25
245 Joliet 103 2006-02-15 09:45:25
246 Jos Azueta 60 2006-02-15 09:45:25
247 Juazeiro do Norte 15 2006-02-15 09:45:25
248 Juiz de Fora 15 2006-02-15 09:45:25
249 Junan 23 2006-02-15 09:45:25
250 Jurez 60 2006-02-15 09:45:25
251 Kabul 1 2006-02-15 09:45:25
252 Kaduna 69 2006-02-15 09:45:25
253 Kakamigahara 50 2006-02-15 09:45:25
254 Kaliningrad 80 2006-02-15 09:45:25
255 Kalisz 76 2006-02-15 09:45:25
256 Kamakura 50 2006-02-15 09:45:25
257 Kamarhati 44 2006-02-15 09:45:25
258 Kamjanets-Podilskyi 100 2006-02-15 09:45:25
259 Kamyin 80 2006-02-15 09:45:25
260 Kanazawa 50 2006-02-15 09:45:25
261 Kanchrapara 44 2006-02-15 09:45:25
262 Kansas City 103 2006-02-15 09:45:25
263 Karnal 44 2006-02-15 09:45:25
264 Katihar 44 2006-02-15 09:45:25
265 Kermanshah 46 2006-02-15 09:45:25
266 Kilis 97 2006-02-15 09:45:25
267 Kimberley 85 2006-02-15 09:45:25
268 Kimchon 86 2006-02-15 09:45:25
269 Kingstown 81 2006-02-15 09:45:25
270 Kirovo-Tepetsk 80 2006-02-15 09:45:25
271 Kisumu 52 2006-02-15 09:45:25
272 Kitwe 109 2006-02-15 09:45:25
273 Klerksdorp 85 2006-02-15 09:45:25
274 Kolpino 80 2006-02-15 09:45:25
275 Konotop 100 2006-02-15 09:45:25
276 Koriyama 50 2006-02-15 09:45:25
277 Korla 23 2006-02-15 09:45:25
278 Korolev 80 2006-02-15 09:45:25
279 Kowloon and New Kowloon 42 2006-02-15 09:45:25
280 Kragujevac 108 2006-02-15 09:45:25
281 Ktahya 97 2006-02-15 09:45:25
282 Kuching 59 2006-02-15 09:45:25
283 Kumbakonam 44 2006-02-15 09:45:25
284 Kurashiki 50 2006-02-15 09:45:25
285 Kurgan 80 2006-02-15 09:45:25
286 Kursk 80 2006-02-15 09:45:25
287 Kuwana 50 2006-02-15 09:45:25
288 La Paz 60 2006-02-15 09:45:25
289 La Plata 6 2006-02-15 09:45:25
290 La Romana 27 2006-02-15 09:45:25
291 Laiwu 23 2006-02-15 09:45:25
292 Lancaster 103 2006-02-15 09:45:25
293 Laohekou 23 2006-02-15 09:45:25
294 Lapu-Lapu 75 2006-02-15 09:45:25
295 Laredo 103 2006-02-15 09:45:25
296 Lausanne 91 2006-02-15 09:45:25
297 Le Mans 34 2006-02-15 09:45:25
298 Lengshuijiang 23 2006-02-15 09:45:25
299 Leshan 23 2006-02-15 09:45:25
300 Lethbridge 20 2006-02-15 09:45:25
301 Lhokseumawe 45 2006-02-15 09:45:25
302 Liaocheng 23 2006-02-15 09:45:25
303 Liepaja 54 2006-02-15 09:45:25
304 Lilongwe 58 2006-02-15 09:45:25
305 Lima 74 2006-02-15 09:45:25
306 Lincoln 103 2006-02-15 09:45:25
307 Linz 9 2006-02-15 09:45:25
308 Lipetsk 80 2006-02-15 09:45:25
309 Livorno 49 2006-02-15 09:45:25
310 Ljubertsy 80 2006-02-15 09:45:25
311 Loja 28 2006-02-15 09:45:25
312 London 102 2006-02-15 09:45:25
313 London 20 2006-02-15 09:45:25
314 Lublin 76 2006-02-15 09:45:25
315 Lubumbashi 25 2006-02-15 09:45:25
316 Lungtan 92 2006-02-15 09:45:25
317 Luzinia 15 2006-02-15 09:45:25
318 Madiun 45 2006-02-15 09:45:25
319 Mahajanga 57 2006-02-15 09:45:25
320 Maikop 80 2006-02-15 09:45:25
321 Malm 90 2006-02-15 09:45:25
322 Manchester 103 2006-02-15 09:45:25
323 Mandaluyong 75 2006-02-15 09:45:25
324 Mandi Bahauddin 72 2006-02-15 09:45:25
325 Mannheim 38 2006-02-15 09:45:25
326 Maracabo 104 2006-02-15 09:45:25
327 Mardan 72 2006-02-15 09:45:25
328 Maring 15 2006-02-15 09:45:25
329 Masqat 71 2006-02-15 09:45:25
330 Matamoros 60 2006-02-15 09:45:25
331 Matsue 50 2006-02-15 09:45:25
332 Meixian 23 2006-02-15 09:45:25
333 Memphis 103 2006-02-15 09:45:25
334 Merlo 6 2006-02-15 09:45:25
335 Mexicali 60 2006-02-15 09:45:25
336 Miraj 44 2006-02-15 09:45:25
337 Mit Ghamr 29 2006-02-15 09:45:25
338 Miyakonojo 50 2006-02-15 09:45:25
339 Mogiljov 13 2006-02-15 09:45:25
340 Molodetno 13 2006-02-15 09:45:25
341 Monclova 60 2006-02-15 09:45:25
342 Monywa 64 2006-02-15 09:45:25
343 Moscow 80 2006-02-15 09:45:25
344 Mosul 47 2006-02-15 09:45:25
345 Mukateve 100 2006-02-15 09:45:25
346 Munger (Monghyr) 44 2006-02-15 09:45:25
347 Mwanza 93 2006-02-15 09:45:25
348 Mwene-Ditu 25 2006-02-15 09:45:25
349 Myingyan 64 2006-02-15 09:45:25
350 Mysore 44 2006-02-15 09:45:25
351 Naala-Porto 63 2006-02-15 09:45:25
352 Nabereznyje Telny 80 2006-02-15 09:45:25
353 Nador 62 2006-02-15 09:45:25
354 Nagaon 44 2006-02-15 09:45:25
355 Nagareyama 50 2006-02-15 09:45:25
356 Najafabad 46 2006-02-15 09:45:25
357 Naju 86 2006-02-15 09:45:25
358 Nakhon Sawan 94 2006-02-15 09:45:25
359 Nam Dinh 105 2006-02-15 09:45:25
360 Namibe 4 2006-02-15 09:45:25
361 Nantou 92 2006-02-15 09:45:25
362 Nanyang 23 2006-02-15 09:45:25
363 NDjamna 21 2006-02-15 09:45:25
364 Newcastle 85 2006-02-15 09:45:25
365 Nezahualcyotl 60 2006-02-15 09:45:25
366 Nha Trang 105 2006-02-15 09:45:25
367 Niznekamsk 80 2006-02-15 09:45:25
368 Novi Sad 108 2006-02-15 09:45:25
369 Novoterkassk 80 2006-02-15 09:45:25
370 Nukualofa 95 2006-02-15 09:45:25
371 Nuuk 40 2006-02-15 09:45:25
372 Nyeri 52 2006-02-15 09:45:25
373 Ocumare del Tuy 104 2006-02-15 09:45:25
374 Ogbomosho 69 2006-02-15 09:45:25
375 Okara 72 2006-02-15 09:45:25
376 Okayama 50 2006-02-15 09:45:25
377 Okinawa 50 2006-02-15 09:45:25
378 Olomouc 26 2006-02-15 09:45:25
379 Omdurman 89 2006-02-15 09:45:25
380 Omiya 50 2006-02-15 09:45:25
381 Ondo 69 2006-02-15 09:45:25
382 Onomichi 50 2006-02-15 09:45:25
383 Oshawa 20 2006-02-15 09:45:25
384 Osmaniye 97 2006-02-15 09:45:25
385 ostka 100 2006-02-15 09:45:25
386 Otsu 50 2006-02-15 09:45:25
387 Oulu 33 2006-02-15 09:45:25
388 Ourense (Orense) 87 2006-02-15 09:45:25
389 Owo 69 2006-02-15 09:45:25
390 Oyo 69 2006-02-15 09:45:25
391 Ozamis 75 2006-02-15 09:45:25
392 Paarl 85 2006-02-15 09:45:25
393 Pachuca de Soto 60 2006-02-15 09:45:25
394 Pak Kret 94 2006-02-15 09:45:25
395 Palghat (Palakkad) 44 2006-02-15 09:45:25
396 Pangkal Pinang 45 2006-02-15 09:45:25
397 Papeete 36 2006-02-15 09:45:25
398 Parbhani 44 2006-02-15 09:45:25
399 Pathankot 44 2006-02-15 09:45:25
400 Patiala 44 2006-02-15 09:45:25
401 Patras 39 2006-02-15 09:45:25
402 Pavlodar 51 2006-02-15 09:45:25
403 Pemalang 45 2006-02-15 09:45:25
404 Peoria 103 2006-02-15 09:45:25
405 Pereira 24 2006-02-15 09:45:25
406 Phnom Penh 18 2006-02-15 09:45:25
407 Pingxiang 23 2006-02-15 09:45:25
408 Pjatigorsk 80 2006-02-15 09:45:25
409 Plock 76 2006-02-15 09:45:25
410 Po 15 2006-02-15 09:45:25
411 Ponce 77 2006-02-15 09:45:25
412 Pontianak 45 2006-02-15 09:45:25
413 Poos de Caldas 15 2006-02-15 09:45:25
414 Portoviejo 28 2006-02-15 09:45:25
415 Probolinggo 45 2006-02-15 09:45:25
416 Pudukkottai 44 2006-02-15 09:45:25
417 Pune 44 2006-02-15 09:45:25
418 Purnea (Purnia) 44 2006-02-15 09:45:25
419 Purwakarta 45 2006-02-15 09:45:25
420 Pyongyang 70 2006-02-15 09:45:25
421 Qalyub 29 2006-02-15 09:45:25
422 Qinhuangdao 23 2006-02-15 09:45:25
423 Qomsheh 46 2006-02-15 09:45:25
424 Quilmes 6 2006-02-15 09:45:25
425 Rae Bareli 44 2006-02-15 09:45:25
426 Rajkot 44 2006-02-15 09:45:25
427 Rampur 44 2006-02-15 09:45:25
428 Rancagua 22 2006-02-15 09:45:25
429 Ranchi 44 2006-02-15 09:45:25
430 Richmond Hill 20 2006-02-15 09:45:25
431 Rio Claro 15 2006-02-15 09:45:25
432 Rizhao 23 2006-02-15 09:45:25
433 Roanoke 103 2006-02-15 09:45:25
434 Robamba 28 2006-02-15 09:45:25
435 Rockford 103 2006-02-15 09:45:25
436 Ruse 17 2006-02-15 09:45:25
437 Rustenburg 85 2006-02-15 09:45:25
438 s-Hertogenbosch 67 2006-02-15 09:45:25
439 Saarbrcken 38 2006-02-15 09:45:25
440 Sagamihara 50 2006-02-15 09:45:25
441 Saint Louis 103 2006-02-15 09:45:25
442 Saint-Denis 79 2006-02-15 09:45:25
443 Sal 62 2006-02-15 09:45:25
444 Salala 71 2006-02-15 09:45:25
445 Salamanca 60 2006-02-15 09:45:25
446 Salinas 103 2006-02-15 09:45:25
447 Salzburg 9 2006-02-15 09:45:25
448 Sambhal 44 2006-02-15 09:45:25
449 San Bernardino 103 2006-02-15 09:45:25
450 San Felipe de Puerto Plata 27 2006-02-15 09:45:25
451 San Felipe del Progreso 60 2006-02-15 09:45:25
452 San Juan Bautista Tuxtepec 60 2006-02-15 09:45:25
453 San Lorenzo 73 2006-02-15 09:45:25
454 San Miguel de Tucumn 6 2006-02-15 09:45:25
455 Sanaa 107 2006-02-15 09:45:25
456 Santa Brbara dOeste 15 2006-02-15 09:45:25
457 Santa F 6 2006-02-15 09:45:25
458 Santa Rosa 75 2006-02-15 09:45:25
459 Santiago de Compostela 87 2006-02-15 09:45:25
460 Santiago de los Caballeros 27 2006-02-15 09:45:25
461 Santo Andr 15 2006-02-15 09:45:25
462 Sanya 23 2006-02-15 09:45:25
463 Sasebo 50 2006-02-15 09:45:25
464 Satna 44 2006-02-15 09:45:25
465 Sawhaj 29 2006-02-15 09:45:25
466 Serpuhov 80 2006-02-15 09:45:25
467 Shahr-e Kord 46 2006-02-15 09:45:25
468 Shanwei 23 2006-02-15 09:45:25
469 Shaoguan 23 2006-02-15 09:45:25
470 Sharja 101 2006-02-15 09:45:25
471 Shenzhen 23 2006-02-15 09:45:25
472 Shikarpur 72 2006-02-15 09:45:25
473 Shimoga 44 2006-02-15 09:45:25
474 Shimonoseki 50 2006-02-15 09:45:25
475 Shivapuri 44 2006-02-15 09:45:25
476 Shubra al-Khayma 29 2006-02-15 09:45:25
477 Siegen 38 2006-02-15 09:45:25
478 Siliguri (Shiliguri) 44 2006-02-15 09:45:25
479 Simferopol 100 2006-02-15 09:45:25
480 Sincelejo 24 2006-02-15 09:45:25
481 Sirjan 46 2006-02-15 09:45:25
482 Sivas 97 2006-02-15 09:45:25
483 Skikda 2 2006-02-15 09:45:25
484 Smolensk 80 2006-02-15 09:45:25
485 So Bernardo do Campo 15 2006-02-15 09:45:25
486 So Leopoldo 15 2006-02-15 09:45:25
487 Sogamoso 24 2006-02-15 09:45:25
488 Sokoto 69 2006-02-15 09:45:25
489 Songkhla 94 2006-02-15 09:45:25
490 Sorocaba 15 2006-02-15 09:45:25
491 Soshanguve 85 2006-02-15 09:45:25
492 Sousse 96 2006-02-15 09:45:25
493 South Hill 5 2006-02-15 09:45:25
494 Southampton 102 2006-02-15 09:45:25
495 Southend-on-Sea 102 2006-02-15 09:45:25
496 Southport 102 2006-02-15 09:45:25
497 Springs 85 2006-02-15 09:45:25
498 Stara Zagora 17 2006-02-15 09:45:25
499 Sterling Heights 103 2006-02-15 09:45:25
500 Stockport 102 2006-02-15 09:45:25
501 Sucre 14 2006-02-15 09:45:25
502 Suihua 23 2006-02-15 09:45:25
503 Sullana 74 2006-02-15 09:45:25
504 Sultanbeyli 97 2006-02-15 09:45:25
505 Sumqayit 10 2006-02-15 09:45:25
506 Sumy 100 2006-02-15 09:45:25
507 Sungai Petani 59 2006-02-15 09:45:25
508 Sunnyvale 103 2006-02-15 09:45:25
509 Surakarta 45 2006-02-15 09:45:25
510 Syktyvkar 80 2006-02-15 09:45:25
511 Syrakusa 49 2006-02-15 09:45:25
512 Szkesfehrvr 43 2006-02-15 09:45:25
513 Tabora 93 2006-02-15 09:45:25
514 Tabriz 46 2006-02-15 09:45:25
515 Tabuk 82 2006-02-15 09:45:25
516 Tafuna 3 2006-02-15 09:45:25
517 Taguig 75 2006-02-15 09:45:25
518 Taizz 107 2006-02-15 09:45:25
519 Talavera 75 2006-02-15 09:45:25
520 Tallahassee 103 2006-02-15 09:45:25
521 Tama 50 2006-02-15 09:45:25
522 Tambaram 44 2006-02-15 09:45:25
523 Tanauan 75 2006-02-15 09:45:25
524 Tandil 6 2006-02-15 09:45:25
525 Tangail 12 2006-02-15 09:45:25
526 Tanshui 92 2006-02-15 09:45:25
527 Tanza 75 2006-02-15 09:45:25
528 Tarlac 75 2006-02-15 09:45:25
529 Tarsus 97 2006-02-15 09:45:25
530 Tartu 30 2006-02-15 09:45:25
531 Teboksary 80 2006-02-15 09:45:25
532 Tegal 45 2006-02-15 09:45:25
533 Tel Aviv-Jaffa 48 2006-02-15 09:45:25
534 Tete 63 2006-02-15 09:45:25
535 Tianjin 23 2006-02-15 09:45:25
536 Tiefa 23 2006-02-15 09:45:25
537 Tieli 23 2006-02-15 09:45:25
538 Tokat 97 2006-02-15 09:45:25
539 Tonghae 86 2006-02-15 09:45:25
540 Tongliao 23 2006-02-15 09:45:25
541 Torren 60 2006-02-15 09:45:25
542 Touliu 92 2006-02-15 09:45:25
543 Toulon 34 2006-02-15 09:45:25
544 Toulouse 34 2006-02-15 09:45:25
545 Trshavn 32 2006-02-15 09:45:25
546 Tsaotun 92 2006-02-15 09:45:25
547 Tsuyama 50 2006-02-15 09:45:25
548 Tuguegarao 75 2006-02-15 09:45:25
549 Tychy 76 2006-02-15 09:45:25
550 Udaipur 44 2006-02-15 09:45:25
551 Udine 49 2006-02-15 09:45:25
552 Ueda 50 2006-02-15 09:45:25
553 Uijongbu 86 2006-02-15 09:45:25
554 Uluberia 44 2006-02-15 09:45:25
555 Urawa 50 2006-02-15 09:45:25
556 Uruapan 60 2006-02-15 09:45:25
557 Usak 97 2006-02-15 09:45:25
558 Usolje-Sibirskoje 80 2006-02-15 09:45:25
559 Uttarpara-Kotrung 44 2006-02-15 09:45:25
560 Vaduz 55 2006-02-15 09:45:25
561 Valencia 104 2006-02-15 09:45:25
562 Valle de la Pascua 104 2006-02-15 09:45:25
563 Valle de Santiago 60 2006-02-15 09:45:25
564 Valparai 44 2006-02-15 09:45:25
565 Vancouver 20 2006-02-15 09:45:25
566 Varanasi (Benares) 44 2006-02-15 09:45:25
567 Vicente Lpez 6 2006-02-15 09:45:25
568 Vijayawada 44 2006-02-15 09:45:25
569 Vila Velha 15 2006-02-15 09:45:25
570 Vilnius 56 2006-02-15 09:45:25
571 Vinh 105 2006-02-15 09:45:25
572 Vitria de Santo Anto 15 2006-02-15 09:45:25
573 Warren 103 2006-02-15 09:45:25
574 Weifang 23 2006-02-15 09:45:25
575 Witten 38 2006-02-15 09:45:25
576 Woodridge 8 2006-02-15 09:45:25
577 Wroclaw 76 2006-02-15 09:45:25
578 Xiangfan 23 2006-02-15 09:45:25
579 Xiangtan 23 2006-02-15 09:45:25
580 Xintai 23 2006-02-15 09:45:25
581 Xinxiang 23 2006-02-15 09:45:25
582 Yamuna Nagar 44 2006-02-15 09:45:25
583 Yangor 65 2006-02-15 09:45:25
584 Yantai 23 2006-02-15 09:45:25
585 Yaound 19 2006-02-15 09:45:25
586 Yerevan 7 2006-02-15 09:45:25
587 Yinchuan 23 2006-02-15 09:45:25
588 Yingkou 23 2006-02-15 09:45:25
589 York 102 2006-02-15 09:45:25
590 Yuncheng 23 2006-02-15 09:45:25
591 Yuzhou 23 2006-02-15 09:45:25
592 Zalantun 23 2006-02-15 09:45:25
593 Zanzibar 93 2006-02-15 09:45:25
594 Zaoyang 23 2006-02-15 09:45:25
595 Zapopan 60 2006-02-15 09:45:25
596 Zaria 69 2006-02-15 09:45:25
597 Zeleznogorsk 80 2006-02-15 09:45:25
598 Zhezqazghan 51 2006-02-15 09:45:25
599 Zhoushan 23 2006-02-15 09:45:25
600 Ziguinchor 83 2006-02-15 09:45:25
\.
1 Afghanistan 2006-02-15 09:44:00
2 Algeria 2006-02-15 09:44:00
3 American Samoa 2006-02-15 09:44:00
4 Angola 2006-02-15 09:44:00
5 Anguilla 2006-02-15 09:44:00
6 Argentina 2006-02-15 09:44:00
7 Armenia 2006-02-15 09:44:00
8 Australia 2006-02-15 09:44:00
9 Austria 2006-02-15 09:44:00
10 Azerbaijan 2006-02-15 09:44:00
11 Bahrain 2006-02-15 09:44:00
12 Bangladesh 2006-02-15 09:44:00
13 Belarus 2006-02-15 09:44:00
14 Bolivia 2006-02-15 09:44:00
15 Brazil 2006-02-15 09:44:00
16 Brunei 2006-02-15 09:44:00
17 Bulgaria 2006-02-15 09:44:00
18 Cambodia 2006-02-15 09:44:00
19 Cameroon 2006-02-15 09:44:00
20 Canada 2006-02-15 09:44:00
21 Chad 2006-02-15 09:44:00
22 Chile 2006-02-15 09:44:00
23 China 2006-02-15 09:44:00
24 Colombia 2006-02-15 09:44:00
25 Congo, The Democratic Republic of the 2006-02-15 09:44:00
26 Czech Republic 2006-02-15 09:44:00
27 Dominican Republic 2006-02-15 09:44:00
28 Ecuador 2006-02-15 09:44:00
29 Egypt 2006-02-15 09:44:00
30 Estonia 2006-02-15 09:44:00
31 Ethiopia 2006-02-15 09:44:00
32 Faroe Islands 2006-02-15 09:44:00
33 Finland 2006-02-15 09:44:00
34 France 2006-02-15 09:44:00
35 French Guiana 2006-02-15 09:44:00
36 French Polynesia 2006-02-15 09:44:00
37 Gambia 2006-02-15 09:44:00
38 Germany 2006-02-15 09:44:00
39 Greece 2006-02-15 09:44:00
40 Greenland 2006-02-15 09:44:00
41 Holy See (Vatican City State) 2006-02-15 09:44:00
42 Hong Kong 2006-02-15 09:44:00
43 Hungary 2006-02-15 09:44:00
44 India 2006-02-15 09:44:00
45 Indonesia 2006-02-15 09:44:00
46 Iran 2006-02-15 09:44:00
47 Iraq 2006-02-15 09:44:00
48 Israel 2006-02-15 09:44:00
49 Italy 2006-02-15 09:44:00
50 Japan 2006-02-15 09:44:00
51 Kazakstan 2006-02-15 09:44:00
52 Kenya 2006-02-15 09:44:00
53 Kuwait 2006-02-15 09:44:00
54 Latvia 2006-02-15 09:44:00
55 Liechtenstein 2006-02-15 09:44:00
56 Lithuania 2006-02-15 09:44:00
57 Madagascar 2006-02-15 09:44:00
58 Malawi 2006-02-15 09:44:00
59 Malaysia 2006-02-15 09:44:00
60 Mexico 2006-02-15 09:44:00
61 Moldova 2006-02-15 09:44:00
62 Morocco 2006-02-15 09:44:00
63 Mozambique 2006-02-15 09:44:00
64 Myanmar 2006-02-15 09:44:00
65 Nauru 2006-02-15 09:44:00
66 Nepal 2006-02-15 09:44:00
67 Netherlands 2006-02-15 09:44:00
68 New Zealand 2006-02-15 09:44:00
69 Nigeria 2006-02-15 09:44:00
70 North Korea 2006-02-15 09:44:00
71 Oman 2006-02-15 09:44:00
72 Pakistan 2006-02-15 09:44:00
73 Paraguay 2006-02-15 09:44:00
74 Peru 2006-02-15 09:44:00
75 Philippines 2006-02-15 09:44:00
76 Poland 2006-02-15 09:44:00
77 Puerto Rico 2006-02-15 09:44:00
78 Romania 2006-02-15 09:44:00
79 Runion 2006-02-15 09:44:00
80 Russian Federation 2006-02-15 09:44:00
81 Saint Vincent and the Grenadines 2006-02-15 09:44:00
82 Saudi Arabia 2006-02-15 09:44:00
83 Senegal 2006-02-15 09:44:00
84 Slovakia 2006-02-15 09:44:00
85 South Africa 2006-02-15 09:44:00
86 South Korea 2006-02-15 09:44:00
87 Spain 2006-02-15 09:44:00
88 Sri Lanka 2006-02-15 09:44:00
89 Sudan 2006-02-15 09:44:00
90 Sweden 2006-02-15 09:44:00
91 Switzerland 2006-02-15 09:44:00
92 Taiwan 2006-02-15 09:44:00
93 Tanzania 2006-02-15 09:44:00
94 Thailand 2006-02-15 09:44:00
95 Tonga 2006-02-15 09:44:00
96 Tunisia 2006-02-15 09:44:00
97 Turkey 2006-02-15 09:44:00
98 Turkmenistan 2006-02-15 09:44:00
99 Tuvalu 2006-02-15 09:44:00
100 Ukraine 2006-02-15 09:44:00
101 United Arab Emirates 2006-02-15 09:44:00
102 United Kingdom 2006-02-15 09:44:00
103 United States 2006-02-15 09:44:00
104 Venezuela 2006-02-15 09:44:00
105 Vietnam 2006-02-15 09:44:00
106 Virgin Islands, U.S. 2006-02-15 09:44:00
107 Yemen 2006-02-15 09:44:00
108 Yugoslavia 2006-02-15 09:44:00
109 Zambia 2006-02-15 09:44:00
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 English 2006-02-15 10:02:19
2 Italian 2006-02-15 10:02:19
3 Japanese 2006-02-15 10:02:19
4 Mandarin 2006-02-15 10:02:19
5 French 2006-02-15 10:02:19
6 German 2006-02-15 10:02:19
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 Mike Hillyer 3 Mike.Hillyer@sakilastaff.com 1 t Mike 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \\x89504e470d0a5a0a
2 Jon Stephens 4 Jon.Stephens@sakilastaff.com 2 t Jon 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \N
\.
1 1 1 2006-02-15 09:57:12
2 2 2 2006-02-15 09:57:12
\.
--
-- NOTE:
--
-- File paths need to be edited. Search for $$PATH$$ and
-- replace it with the path to the directory containing
-- the extracted data files.
--
--
-- PostgreSQL database dump
--
-- Dumped from database version 11.3
-- Dumped by pg_dump version 11.2
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
DROP DATABASE dvdrental;
--
-- Name: dvdrental; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE dvdrental WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'English_United States.1252' LC_CTYPE = 'English_United States.1252';
ALTER DATABASE dvdrental OWNER TO postgres;
\connect dvdrental
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: mpaa_rating; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public.mpaa_rating AS ENUM (
'G',
'PG',
'PG-13',
'R',
'NC-17'
);
ALTER TYPE public.mpaa_rating OWNER TO postgres;
--
-- Name: year; Type: DOMAIN; Schema: public; Owner: postgres
--
CREATE DOMAIN public.year AS integer
CONSTRAINT year_check CHECK (((VALUE >= 1901) AND (VALUE <= 2155)));
ALTER DOMAIN public.year OWNER TO postgres;
--
-- Name: _group_concat(text, text); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public._group_concat(text, text) RETURNS text
LANGUAGE sql IMMUTABLE
AS $_$
SELECT CASE
WHEN $2 IS NULL THEN $1
WHEN $1 IS NULL THEN $2
ELSE $1 || ', ' || $2
END
$_$;
ALTER FUNCTION public._group_concat(text, text) OWNER TO postgres;
--
-- Name: film_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.film_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) RETURNS SETOF integer
LANGUAGE sql
AS $_$
SELECT inventory_id
FROM inventory
WHERE film_id = $1
AND store_id = $2
AND inventory_in_stock(inventory_id);
$_$;
ALTER FUNCTION public.film_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) OWNER TO postgres;
--
-- Name: film_not_in_stock(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.film_not_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) RETURNS SETOF integer
LANGUAGE sql
AS $_$
SELECT inventory_id
FROM inventory
WHERE film_id = $1
AND store_id = $2
AND NOT inventory_in_stock(inventory_id);
$_$;
ALTER FUNCTION public.film_not_in_stock(p_film_id integer, p_store_id integer, OUT p_film_count integer) OWNER TO postgres;
--
-- Name: get_customer_balance(integer, timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.get_customer_balance(p_customer_id integer, p_effective_date timestamp without time zone) RETURNS numeric
LANGUAGE plpgsql
AS $$
--#OK, WE NEED TO CALCULATE THE CURRENT BALANCE GIVEN A CUSTOMER_ID AND A DATE
--#THAT WE WANT THE BALANCE TO BE EFFECTIVE FOR. THE BALANCE IS:
--# 1) RENTAL FEES FOR ALL PREVIOUS RENTALS
--# 2) ONE DOLLAR FOR EVERY DAY THE PREVIOUS RENTALS ARE OVERDUE
--# 3) IF A FILM IS MORE THAN RENTAL_DURATION * 2 OVERDUE, CHARGE THE REPLACEMENT_COST
--# 4) SUBTRACT ALL PAYMENTS MADE BEFORE THE DATE SPECIFIED
DECLARE
v_rentfees DECIMAL(5,2); --#FEES PAID TO RENT THE VIDEOS INITIALLY
v_overfees INTEGER; --#LATE FEES FOR PRIOR RENTALS
v_payments DECIMAL(5,2); --#SUM OF PAYMENTS MADE PREVIOUSLY
BEGIN
SELECT COALESCE(SUM(film.rental_rate),0) INTO v_rentfees
FROM film, inventory, rental
WHERE film.film_id = inventory.film_id
AND inventory.inventory_id = rental.inventory_id
AND rental.rental_date <= p_effective_date
AND rental.customer_id = p_customer_id;
SELECT COALESCE(SUM(IF((rental.return_date - rental.rental_date) > (film.rental_duration * '1 day'::interval),
((rental.return_date - rental.rental_date) - (film.rental_duration * '1 day'::interval)),0)),0) INTO v_overfees
FROM rental, inventory, film
WHERE film.film_id = inventory.film_id
AND inventory.inventory_id = rental.inventory_id
AND rental.rental_date <= p_effective_date
AND rental.customer_id = p_customer_id;
SELECT COALESCE(SUM(payment.amount),0) INTO v_payments
FROM payment
WHERE payment.payment_date <= p_effective_date
AND payment.customer_id = p_customer_id;
RETURN v_rentfees + v_overfees - v_payments;
END
$$;
ALTER FUNCTION public.get_customer_balance(p_customer_id integer, p_effective_date timestamp without time zone) OWNER TO postgres;
--
-- Name: inventory_held_by_customer(integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.inventory_held_by_customer(p_inventory_id integer) RETURNS integer
LANGUAGE plpgsql
AS $$
DECLARE
v_customer_id INTEGER;
BEGIN
SELECT customer_id INTO v_customer_id
FROM rental
WHERE return_date IS NULL
AND inventory_id = p_inventory_id;
RETURN v_customer_id;
END $$;
ALTER FUNCTION public.inventory_held_by_customer(p_inventory_id integer) OWNER TO postgres;
--
-- Name: inventory_in_stock(integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.inventory_in_stock(p_inventory_id integer) RETURNS boolean
LANGUAGE plpgsql
AS $$
DECLARE
v_rentals INTEGER;
v_out INTEGER;
BEGIN
-- AN ITEM IS IN-STOCK IF THERE ARE EITHER NO ROWS IN THE rental TABLE
-- FOR THE ITEM OR ALL ROWS HAVE return_date POPULATED
SELECT count(*) INTO v_rentals
FROM rental
WHERE inventory_id = p_inventory_id;
IF v_rentals = 0 THEN
RETURN TRUE;
END IF;
SELECT COUNT(rental_id) INTO v_out
FROM inventory LEFT JOIN rental USING(inventory_id)
WHERE inventory.inventory_id = p_inventory_id
AND rental.return_date IS NULL;
IF v_out > 0 THEN
RETURN FALSE;
ELSE
RETURN TRUE;
END IF;
END $$;
ALTER FUNCTION public.inventory_in_stock(p_inventory_id integer) OWNER TO postgres;
--
-- Name: last_day(timestamp without time zone); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.last_day(timestamp without time zone) RETURNS date
LANGUAGE sql IMMUTABLE STRICT
AS $_$
SELECT CASE
WHEN EXTRACT(MONTH FROM $1) = 12 THEN
(((EXTRACT(YEAR FROM $1) + 1) operator(pg_catalog.||) '-01-01')::date - INTERVAL '1 day')::date
ELSE
((EXTRACT(YEAR FROM $1) operator(pg_catalog.||) '-' operator(pg_catalog.||) (EXTRACT(MONTH FROM $1) + 1) operator(pg_catalog.||) '-01')::date - INTERVAL '1 day')::date
END
$_$;
ALTER FUNCTION public.last_day(timestamp without time zone) OWNER TO postgres;
--
-- Name: last_updated(); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.last_updated() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
NEW.last_update = CURRENT_TIMESTAMP;
RETURN NEW;
END $$;
ALTER FUNCTION public.last_updated() OWNER TO postgres;
--
-- Name: customer_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.customer_customer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.customer_customer_id_seq OWNER TO postgres;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: customer; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.customer (
customer_id integer DEFAULT nextval('public.customer_customer_id_seq'::regclass) NOT NULL,
store_id smallint NOT NULL,
first_name character varying(45) NOT NULL,
last_name character varying(45) NOT NULL,
email character varying(50),
address_id smallint NOT NULL,
activebool boolean DEFAULT true NOT NULL,
create_date date DEFAULT ('now'::text)::date NOT NULL,
last_update timestamp without time zone DEFAULT now(),
active integer
);
ALTER TABLE public.customer OWNER TO postgres;
--
-- Name: rewards_report(integer, numeric); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION public.rewards_report(min_monthly_purchases integer, min_dollar_amount_purchased numeric) RETURNS SETOF public.customer
LANGUAGE plpgsql SECURITY DEFINER
AS $_$
DECLARE
last_month_start DATE;
last_month_end DATE;
rr RECORD;
tmpSQL TEXT;
BEGIN
/* Some sanity checks... */
IF min_monthly_purchases = 0 THEN
RAISE EXCEPTION 'Minimum monthly purchases parameter must be > 0';
END IF;
IF min_dollar_amount_purchased = 0.00 THEN
RAISE EXCEPTION 'Minimum monthly dollar amount purchased parameter must be > $0.00';
END IF;
last_month_start := CURRENT_DATE - '3 month'::interval;
last_month_start := to_date((extract(YEAR FROM last_month_start) || '-' || extract(MONTH FROM last_month_start) || '-01'),'YYYY-MM-DD');
last_month_end := LAST_DAY(last_month_start);
/*
Create a temporary storage area for Customer IDs.
*/
CREATE TEMPORARY TABLE tmpCustomer (customer_id INTEGER NOT NULL PRIMARY KEY);
/*
Find all customers meeting the monthly purchase requirements
*/
tmpSQL := 'INSERT INTO tmpCustomer (customer_id)
SELECT p.customer_id
FROM payment AS p
WHERE DATE(p.payment_date) BETWEEN '||quote_literal(last_month_start) ||' AND '|| quote_literal(last_month_end) || '
GROUP BY customer_id
HAVING SUM(p.amount) > '|| min_dollar_amount_purchased || '
AND COUNT(customer_id) > ' ||min_monthly_purchases ;
EXECUTE tmpSQL;
/*
Output ALL customer information of matching rewardees.
Customize output as needed.
*/
FOR rr IN EXECUTE 'SELECT c.* FROM tmpCustomer AS t INNER JOIN customer AS c ON t.customer_id = c.customer_id' LOOP
RETURN NEXT rr;
END LOOP;
/* Clean up */
tmpSQL := 'DROP TABLE tmpCustomer';
EXECUTE tmpSQL;
RETURN;
END
$_$;
ALTER FUNCTION public.rewards_report(min_monthly_purchases integer, min_dollar_amount_purchased numeric) OWNER TO postgres;
--
-- Name: group_concat(text); Type: AGGREGATE; Schema: public; Owner: postgres
--
CREATE AGGREGATE public.group_concat(text) (
SFUNC = public._group_concat,
STYPE = text
);
ALTER AGGREGATE public.group_concat(text) OWNER TO postgres;
--
-- Name: actor_actor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.actor_actor_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.actor_actor_id_seq OWNER TO postgres;
--
-- Name: actor; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.actor (
actor_id integer DEFAULT nextval('public.actor_actor_id_seq'::regclass) NOT NULL,
first_name character varying(45) NOT NULL,
last_name character varying(45) NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.actor OWNER TO postgres;
--
-- Name: category_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.category_category_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.category_category_id_seq OWNER TO postgres;
--
-- Name: category; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.category (
category_id integer DEFAULT nextval('public.category_category_id_seq'::regclass) NOT NULL,
name character varying(25) NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.category OWNER TO postgres;
--
-- Name: film_film_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.film_film_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.film_film_id_seq OWNER TO postgres;
--
-- Name: film; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.film (
film_id integer DEFAULT nextval('public.film_film_id_seq'::regclass) NOT NULL,
title character varying(255) NOT NULL,
description text,
release_year public.year,
language_id smallint NOT NULL,
rental_duration smallint DEFAULT 3 NOT NULL,
rental_rate numeric(4,2) DEFAULT 4.99 NOT NULL,
length smallint,
replacement_cost numeric(5,2) DEFAULT 19.99 NOT NULL,
rating public.mpaa_rating DEFAULT 'G'::public.mpaa_rating,
last_update timestamp without time zone DEFAULT now() NOT NULL,
special_features text[],
fulltext tsvector NOT NULL
);
ALTER TABLE public.film OWNER TO postgres;
--
-- Name: film_actor; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.film_actor (
actor_id smallint NOT NULL,
film_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.film_actor OWNER TO postgres;
--
-- Name: film_category; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.film_category (
film_id smallint NOT NULL,
category_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.film_category OWNER TO postgres;
--
-- Name: actor_info; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.actor_info AS
SELECT a.actor_id,
a.first_name,
a.last_name,
public.group_concat(DISTINCT (((c.name)::text || ': '::text) || ( SELECT public.group_concat((f.title)::text) AS group_concat
FROM ((public.film f
JOIN public.film_category fc_1 ON ((f.film_id = fc_1.film_id)))
JOIN public.film_actor fa_1 ON ((f.film_id = fa_1.film_id)))
WHERE ((fc_1.category_id = c.category_id) AND (fa_1.actor_id = a.actor_id))
GROUP BY fa_1.actor_id))) AS film_info
FROM (((public.actor a
LEFT JOIN public.film_actor fa ON ((a.actor_id = fa.actor_id)))
LEFT JOIN public.film_category fc ON ((fa.film_id = fc.film_id)))
LEFT JOIN public.category c ON ((fc.category_id = c.category_id)))
GROUP BY a.actor_id, a.first_name, a.last_name;
ALTER TABLE public.actor_info OWNER TO postgres;
--
-- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.address_address_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.address_address_id_seq OWNER TO postgres;
--
-- Name: address; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.address (
address_id integer DEFAULT nextval('public.address_address_id_seq'::regclass) NOT NULL,
address character varying(50) NOT NULL,
address2 character varying(50),
district character varying(20) NOT NULL,
city_id smallint NOT NULL,
postal_code character varying(10),
phone character varying(20) NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.address OWNER TO postgres;
--
-- Name: city_city_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.city_city_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.city_city_id_seq OWNER TO postgres;
--
-- Name: city; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.city (
city_id integer DEFAULT nextval('public.city_city_id_seq'::regclass) NOT NULL,
city character varying(50) NOT NULL,
country_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.city OWNER TO postgres;
--
-- Name: country_country_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.country_country_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.country_country_id_seq OWNER TO postgres;
--
-- Name: country; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.country (
country_id integer DEFAULT nextval('public.country_country_id_seq'::regclass) NOT NULL,
country character varying(50) NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.country OWNER TO postgres;
--
-- Name: customer_list; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.customer_list AS
SELECT cu.customer_id AS id,
(((cu.first_name)::text || ' '::text) || (cu.last_name)::text) AS name,
a.address,
a.postal_code AS "zip code",
a.phone,
city.city,
country.country,
CASE
WHEN cu.activebool THEN 'active'::text
ELSE ''::text
END AS notes,
cu.store_id AS sid
FROM (((public.customer cu
JOIN public.address a ON ((cu.address_id = a.address_id)))
JOIN public.city ON ((a.city_id = city.city_id)))
JOIN public.country ON ((city.country_id = country.country_id)));
ALTER TABLE public.customer_list OWNER TO postgres;
--
-- Name: film_list; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.film_list AS
SELECT film.film_id AS fid,
film.title,
film.description,
category.name AS category,
film.rental_rate AS price,
film.length,
film.rating,
public.group_concat((((actor.first_name)::text || ' '::text) || (actor.last_name)::text)) AS actors
FROM ((((public.category
LEFT JOIN public.film_category ON ((category.category_id = film_category.category_id)))
LEFT JOIN public.film ON ((film_category.film_id = film.film_id)))
JOIN public.film_actor ON ((film.film_id = film_actor.film_id)))
JOIN public.actor ON ((film_actor.actor_id = actor.actor_id)))
GROUP BY film.film_id, film.title, film.description, category.name, film.rental_rate, film.length, film.rating;
ALTER TABLE public.film_list OWNER TO postgres;
--
-- Name: inventory_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.inventory_inventory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.inventory_inventory_id_seq OWNER TO postgres;
--
-- Name: inventory; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.inventory (
inventory_id integer DEFAULT nextval('public.inventory_inventory_id_seq'::regclass) NOT NULL,
film_id smallint NOT NULL,
store_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.inventory OWNER TO postgres;
--
-- Name: language_language_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.language_language_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.language_language_id_seq OWNER TO postgres;
--
-- Name: language; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.language (
language_id integer DEFAULT nextval('public.language_language_id_seq'::regclass) NOT NULL,
name character(20) NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.language OWNER TO postgres;
--
-- Name: nicer_but_slower_film_list; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.nicer_but_slower_film_list AS
SELECT film.film_id AS fid,
film.title,
film.description,
category.name AS category,
film.rental_rate AS price,
film.length,
film.rating,
public.group_concat((((upper("substring"((actor.first_name)::text, 1, 1)) || lower("substring"((actor.first_name)::text, 2))) || upper("substring"((actor.last_name)::text, 1, 1))) || lower("substring"((actor.last_name)::text, 2)))) AS actors
FROM ((((public.category
LEFT JOIN public.film_category ON ((category.category_id = film_category.category_id)))
LEFT JOIN public.film ON ((film_category.film_id = film.film_id)))
JOIN public.film_actor ON ((film.film_id = film_actor.film_id)))
JOIN public.actor ON ((film_actor.actor_id = actor.actor_id)))
GROUP BY film.film_id, film.title, film.description, category.name, film.rental_rate, film.length, film.rating;
ALTER TABLE public.nicer_but_slower_film_list OWNER TO postgres;
--
-- Name: payment_payment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.payment_payment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.payment_payment_id_seq OWNER TO postgres;
--
-- Name: payment; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.payment (
payment_id integer DEFAULT nextval('public.payment_payment_id_seq'::regclass) NOT NULL,
customer_id smallint NOT NULL,
staff_id smallint NOT NULL,
rental_id integer NOT NULL,
amount numeric(5,2) NOT NULL,
payment_date timestamp without time zone NOT NULL
);
ALTER TABLE public.payment OWNER TO postgres;
--
-- Name: rental_rental_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.rental_rental_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.rental_rental_id_seq OWNER TO postgres;
--
-- Name: rental; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.rental (
rental_id integer DEFAULT nextval('public.rental_rental_id_seq'::regclass) NOT NULL,
rental_date timestamp without time zone NOT NULL,
inventory_id integer NOT NULL,
customer_id smallint NOT NULL,
return_date timestamp without time zone,
staff_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.rental OWNER TO postgres;
--
-- Name: sales_by_film_category; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.sales_by_film_category AS
SELECT c.name AS category,
sum(p.amount) AS total_sales
FROM (((((public.payment p
JOIN public.rental r ON ((p.rental_id = r.rental_id)))
JOIN public.inventory i ON ((r.inventory_id = i.inventory_id)))
JOIN public.film f ON ((i.film_id = f.film_id)))
JOIN public.film_category fc ON ((f.film_id = fc.film_id)))
JOIN public.category c ON ((fc.category_id = c.category_id)))
GROUP BY c.name
ORDER BY (sum(p.amount)) DESC;
ALTER TABLE public.sales_by_film_category OWNER TO postgres;
--
-- Name: staff_staff_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.staff_staff_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.staff_staff_id_seq OWNER TO postgres;
--
-- Name: staff; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.staff (
staff_id integer DEFAULT nextval('public.staff_staff_id_seq'::regclass) NOT NULL,
first_name character varying(45) NOT NULL,
last_name character varying(45) NOT NULL,
address_id smallint NOT NULL,
email character varying(50),
store_id smallint NOT NULL,
active boolean DEFAULT true NOT NULL,
username character varying(16) NOT NULL,
password character varying(40),
last_update timestamp without time zone DEFAULT now() NOT NULL,
picture bytea
);
ALTER TABLE public.staff OWNER TO postgres;
--
-- Name: store_store_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.store_store_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.store_store_id_seq OWNER TO postgres;
--
-- Name: store; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.store (
store_id integer DEFAULT nextval('public.store_store_id_seq'::regclass) NOT NULL,
manager_staff_id smallint NOT NULL,
address_id smallint NOT NULL,
last_update timestamp without time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.store OWNER TO postgres;
--
-- Name: sales_by_store; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.sales_by_store AS
SELECT (((c.city)::text || ','::text) || (cy.country)::text) AS store,
(((m.first_name)::text || ' '::text) || (m.last_name)::text) AS manager,
sum(p.amount) AS total_sales
FROM (((((((public.payment p
JOIN public.rental r ON ((p.rental_id = r.rental_id)))
JOIN public.inventory i ON ((r.inventory_id = i.inventory_id)))
JOIN public.store s ON ((i.store_id = s.store_id)))
JOIN public.address a ON ((s.address_id = a.address_id)))
JOIN public.city c ON ((a.city_id = c.city_id)))
JOIN public.country cy ON ((c.country_id = cy.country_id)))
JOIN public.staff m ON ((s.manager_staff_id = m.staff_id)))
GROUP BY cy.country, c.city, s.store_id, m.first_name, m.last_name
ORDER BY cy.country, c.city;
ALTER TABLE public.sales_by_store OWNER TO postgres;
--
-- Name: staff_list; Type: VIEW; Schema: public; Owner: postgres
--
CREATE VIEW public.staff_list AS
SELECT s.staff_id AS id,
(((s.first_name)::text || ' '::text) || (s.last_name)::text) AS name,
a.address,
a.postal_code AS "zip code",
a.phone,
city.city,
country.country,
s.store_id AS sid
FROM (((public.staff s
JOIN public.address a ON ((s.address_id = a.address_id)))
JOIN public.city ON ((a.city_id = city.city_id)))
JOIN public.country ON ((city.country_id = country.country_id)));
ALTER TABLE public.staff_list OWNER TO postgres;
--
-- Data for Name: actor; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.actor (actor_id, first_name, last_name, last_update) FROM stdin;
\.
COPY public.actor (actor_id, first_name, last_name, last_update) FROM '$$PATH$$/3057.dat';
--
-- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.address (address_id, address, address2, district, city_id, postal_code, phone, last_update) FROM stdin;
\.
COPY public.address (address_id, address, address2, district, city_id, postal_code, phone, last_update) FROM '$$PATH$$/3065.dat';
--
-- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.category (category_id, name, last_update) FROM stdin;
\.
COPY public.category (category_id, name, last_update) FROM '$$PATH$$/3059.dat';
--
-- Data for Name: city; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.city (city_id, city, country_id, last_update) FROM stdin;
\.
COPY public.city (city_id, city, country_id, last_update) FROM '$$PATH$$/3067.dat';
--
-- Data for Name: country; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.country (country_id, country, last_update) FROM stdin;
\.
COPY public.country (country_id, country, last_update) FROM '$$PATH$$/3069.dat';
--
-- Data for Name: customer; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.customer (customer_id, store_id, first_name, last_name, email, address_id, activebool, create_date, last_update, active) FROM stdin;
\.
COPY public.customer (customer_id, store_id, first_name, last_name, email, address_id, activebool, create_date, last_update, active) FROM '$$PATH$$/3055.dat';
--
-- Data for Name: film; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.film (film_id, title, description, release_year, language_id, rental_duration, rental_rate, length, replacement_cost, rating, last_update, special_features, fulltext) FROM stdin;
\.
COPY public.film (film_id, title, description, release_year, language_id, rental_duration, rental_rate, length, replacement_cost, rating, last_update, special_features, fulltext) FROM '$$PATH$$/3061.dat';
--
-- Data for Name: film_actor; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.film_actor (actor_id, film_id, last_update) FROM stdin;
\.
COPY public.film_actor (actor_id, film_id, last_update) FROM '$$PATH$$/3062.dat';
--
-- Data for Name: film_category; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.film_category (film_id, category_id, last_update) FROM stdin;
\.
COPY public.film_category (film_id, category_id, last_update) FROM '$$PATH$$/3063.dat';
--
-- Data for Name: inventory; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.inventory (inventory_id, film_id, store_id, last_update) FROM stdin;
\.
COPY public.inventory (inventory_id, film_id, store_id, last_update) FROM '$$PATH$$/3071.dat';
--
-- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.language (language_id, name, last_update) FROM stdin;
\.
COPY public.language (language_id, name, last_update) FROM '$$PATH$$/3073.dat';
--
-- Data for Name: payment; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) FROM stdin;
\.
COPY public.payment (payment_id, customer_id, staff_id, rental_id, amount, payment_date) FROM '$$PATH$$/3075.dat';
--
-- Data for Name: rental; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) FROM stdin;
\.
COPY public.rental (rental_id, rental_date, inventory_id, customer_id, return_date, staff_id, last_update) FROM '$$PATH$$/3077.dat';
--
-- Data for Name: staff; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.staff (staff_id, first_name, last_name, address_id, email, store_id, active, username, password, last_update, picture) FROM stdin;
\.
COPY public.staff (staff_id, first_name, last_name, address_id, email, store_id, active, username, password, last_update, picture) FROM '$$PATH$$/3079.dat';
--
-- Data for Name: store; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.store (store_id, manager_staff_id, address_id, last_update) FROM stdin;
\.
COPY public.store (store_id, manager_staff_id, address_id, last_update) FROM '$$PATH$$/3081.dat';
--
-- Name: actor_actor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.actor_actor_id_seq', 200, true);
--
-- Name: address_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.address_address_id_seq', 605, true);
--
-- Name: category_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.category_category_id_seq', 16, true);
--
-- Name: city_city_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.city_city_id_seq', 600, true);
--
-- Name: country_country_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.country_country_id_seq', 109, true);
--
-- Name: customer_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.customer_customer_id_seq', 599, true);
--
-- Name: film_film_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.film_film_id_seq', 1000, true);
--
-- Name: inventory_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.inventory_inventory_id_seq', 4581, true);
--
-- Name: language_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.language_language_id_seq', 6, true);
--
-- Name: payment_payment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.payment_payment_id_seq', 32098, true);
--
-- Name: rental_rental_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.rental_rental_id_seq', 16049, true);
--
-- Name: staff_staff_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.staff_staff_id_seq', 2, true);
--
-- Name: store_store_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.store_store_id_seq', 2, true);
--
-- Name: actor actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.actor
ADD CONSTRAINT actor_pkey PRIMARY KEY (actor_id);
--
-- Name: address address_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.address
ADD CONSTRAINT address_pkey PRIMARY KEY (address_id);
--
-- Name: category category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.category
ADD CONSTRAINT category_pkey PRIMARY KEY (category_id);
--
-- Name: city city_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.city
ADD CONSTRAINT city_pkey PRIMARY KEY (city_id);
--
-- Name: country country_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.country
ADD CONSTRAINT country_pkey PRIMARY KEY (country_id);
--
-- Name: customer customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.customer
ADD CONSTRAINT customer_pkey PRIMARY KEY (customer_id);
--
-- Name: film_actor film_actor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_actor
ADD CONSTRAINT film_actor_pkey PRIMARY KEY (actor_id, film_id);
--
-- Name: film_category film_category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_category
ADD CONSTRAINT film_category_pkey PRIMARY KEY (film_id, category_id);
--
-- Name: film film_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film
ADD CONSTRAINT film_pkey PRIMARY KEY (film_id);
--
-- Name: inventory inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.inventory
ADD CONSTRAINT inventory_pkey PRIMARY KEY (inventory_id);
--
-- Name: language language_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.language
ADD CONSTRAINT language_pkey PRIMARY KEY (language_id);
--
-- Name: payment payment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.payment
ADD CONSTRAINT payment_pkey PRIMARY KEY (payment_id);
--
-- Name: rental rental_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rental
ADD CONSTRAINT rental_pkey PRIMARY KEY (rental_id);
--
-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.staff
ADD CONSTRAINT staff_pkey PRIMARY KEY (staff_id);
--
-- Name: store store_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.store
ADD CONSTRAINT store_pkey PRIMARY KEY (store_id);
--
-- Name: film_fulltext_idx; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX film_fulltext_idx ON public.film USING gist (fulltext);
--
-- Name: idx_actor_last_name; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_actor_last_name ON public.actor USING btree (last_name);
--
-- Name: idx_fk_address_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_address_id ON public.customer USING btree (address_id);
--
-- Name: idx_fk_city_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_city_id ON public.address USING btree (city_id);
--
-- Name: idx_fk_country_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_country_id ON public.city USING btree (country_id);
--
-- Name: idx_fk_customer_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_customer_id ON public.payment USING btree (customer_id);
--
-- Name: idx_fk_film_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_film_id ON public.film_actor USING btree (film_id);
--
-- Name: idx_fk_inventory_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_inventory_id ON public.rental USING btree (inventory_id);
--
-- Name: idx_fk_language_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_language_id ON public.film USING btree (language_id);
--
-- Name: idx_fk_rental_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_rental_id ON public.payment USING btree (rental_id);
--
-- Name: idx_fk_staff_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_staff_id ON public.payment USING btree (staff_id);
--
-- Name: idx_fk_store_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_fk_store_id ON public.customer USING btree (store_id);
--
-- Name: idx_last_name; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_last_name ON public.customer USING btree (last_name);
--
-- Name: idx_store_id_film_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_store_id_film_id ON public.inventory USING btree (store_id, film_id);
--
-- Name: idx_title; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX idx_title ON public.film USING btree (title);
--
-- Name: idx_unq_manager_staff_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX idx_unq_manager_staff_id ON public.store USING btree (manager_staff_id);
--
-- Name: idx_unq_rental_rental_date_inventory_id_customer_id; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX idx_unq_rental_rental_date_inventory_id_customer_id ON public.rental USING btree (rental_date, inventory_id, customer_id);
--
-- Name: film film_fulltext_trigger; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER film_fulltext_trigger BEFORE INSERT OR UPDATE ON public.film FOR EACH ROW EXECUTE PROCEDURE tsvector_update_trigger('fulltext', 'pg_catalog.english', 'title', 'description');
--
-- Name: actor last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.actor FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: address last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.address FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: category last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.category FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: city last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.city FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: country last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.country FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: customer last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.customer FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: film last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.film FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: film_actor last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.film_actor FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: film_category last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.film_category FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: inventory last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.inventory FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: language last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.language FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: rental last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.rental FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: staff last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.staff FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: store last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated BEFORE UPDATE ON public.store FOR EACH ROW EXECUTE PROCEDURE public.last_updated();
--
-- Name: customer customer_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.customer
ADD CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: film_actor film_actor_actor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_actor
ADD CONSTRAINT film_actor_actor_id_fkey FOREIGN KEY (actor_id) REFERENCES public.actor(actor_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: film_actor film_actor_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_actor
ADD CONSTRAINT film_actor_film_id_fkey FOREIGN KEY (film_id) REFERENCES public.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: film_category film_category_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_category
ADD CONSTRAINT film_category_category_id_fkey FOREIGN KEY (category_id) REFERENCES public.category(category_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: film_category film_category_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film_category
ADD CONSTRAINT film_category_film_id_fkey FOREIGN KEY (film_id) REFERENCES public.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: film film_language_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.film
ADD CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public.language(language_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: address fk_address_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.address
ADD CONSTRAINT fk_address_city FOREIGN KEY (city_id) REFERENCES public.city(city_id);
--
-- Name: city fk_city; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.city
ADD CONSTRAINT fk_city FOREIGN KEY (country_id) REFERENCES public.country(country_id);
--
-- Name: inventory inventory_film_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.inventory
ADD CONSTRAINT inventory_film_id_fkey FOREIGN KEY (film_id) REFERENCES public.film(film_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: payment payment_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.payment
ADD CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: payment payment_rental_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.payment
ADD CONSTRAINT payment_rental_id_fkey FOREIGN KEY (rental_id) REFERENCES public.rental(rental_id) ON UPDATE CASCADE ON DELETE SET NULL;
--
-- Name: payment payment_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.payment
ADD CONSTRAINT payment_staff_id_fkey FOREIGN KEY (staff_id) REFERENCES public.staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: rental rental_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rental
ADD CONSTRAINT rental_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: rental rental_inventory_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rental
ADD CONSTRAINT rental_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES public.inventory(inventory_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: rental rental_staff_id_key; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rental
ADD CONSTRAINT rental_staff_id_key FOREIGN KEY (staff_id) REFERENCES public.staff(staff_id);
--
-- Name: staff staff_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.staff
ADD CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: store store_address_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.store
ADD CONSTRAINT store_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- Name: store store_manager_staff_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.store
ADD CONSTRAINT store_manager_staff_id_fkey FOREIGN KEY (manager_staff_id) REFERENCES public.staff(staff_id) ON UPDATE CASCADE ON DELETE RESTRICT;
--
-- PostgreSQL database dump complete
--
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment