\! gs_ktool -d all
DELETE ALL

\! gs_ktool -g
GENERATE
1
DROP CLIENT MASTER KEY IF EXISTS MyCMK CASCADE;
NOTICE:  client master key "mycmk" does not exist
CREATE CLIENT MASTER KEY MyCMK WITH ( KEY_STORE = gs_ktool , KEY_PATH = "gs_ktool/1" , ALGORITHM = AES_256_CBC);
CREATE COLUMN ENCRYPTION KEY MyCEK WITH VALUES (CLIENT_MASTER_KEY = MyCMK, ALGORITHM = AEAD_AES_256_CBC_HMAC_SHA256);
DROP TABLE IF EXISTS public.customer CASCADE;
NOTICE:  table "customer" does not exist, skipping
CREATE TABLE public.customer (
    customer_id integer, 
    store_id integer NOT NULL,
    first_name character varying(45) NOT NULL,
    last_name character varying(45) NOT NULL,
    email character varying(50),
    address_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC),
    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
);
DROP TABLE IF EXISTS public.address CASCADE;
NOTICE:  table "address" does not exist, skipping
CREATE TABLE public.address (
    address_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC),
    address character varying(100) NOT NULL,
    address2 character varying(50),
    district character varying(20) NOT NULL,
    city_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC) ,
    postal_code character varying(10),
    phone character varying(20) NOT NULL,
    last_update timestamp without time zone DEFAULT now() NOT NULL
);
DROP TABLE IF EXISTS public.city CASCADE;
NOTICE:  table "city" does not exist, skipping
CREATE TABLE public.city (
    city_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC),
    city character varying(50) NOT NULL,
    country_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC),
    last_update timestamp without time zone DEFAULT now() NOT NULL
);
DROP TABLE IF EXISTS public.country CASCADE;
NOTICE:  table "country" does not exist, skipping
CREATE TABLE public.country (
    country_id integer NOT NULL ENCRYPTED WITH (COLUMN_ENCRYPTION_KEY = MyCEK, ENCRYPTION_TYPE = DETERMINISTIC),
    country character varying(50) NOT NULL,
    last_update timestamp without time zone DEFAULT now() NOT NULL
);
INSERT INTO customer VALUES (524, 1, 'Jared', 'Ely', 'jared.ely@sakilacustomer.org', 530, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (1, 1, 'Mary', 'Smith', 'mary.smith@sakilacustomer.org', 5, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (2, 1, 'Patricia', 'Johnson', 'patricia.johnson@sakilacustomer.org', 6, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (3, 1, 'Linda', 'Williams', 'linda.williams@sakilacustomer.org', 7, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (4, 2, 'Barbara', 'Jones', 'barbara.jones@sakilacustomer.org', 8, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (5, 1, 'Elizabeth', 'Brown', 'elizabeth.brown@sakilacustomer.org', 9, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (6, 2, 'Jennifer', 'Davis', 'jennifer.davis@sakilacustomer.org', 10, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (7, 1, 'Maria', 'Miller', 'maria.miller@sakilacustomer.org', 11, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (8, 2, 'Susan', 'Wilson', 'susan.wilson@sakilacustomer.org', 12, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (9, 2, 'Margaret', 'Moore', 'margaret.moore@sakilacustomer.org', 13, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (10, 1, 'Dorothy', 'Taylor', 'dorothy.taylor@sakilacustomer.org', 14, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (11, 2, 'Lisa', 'Anderson', 'lisa.anderson@sakilacustomer.org', 15, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (12, 1, 'Nancy', 'Thomas', 'nancy.thomas@sakilacustomer.org', 16, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (13, 2, 'Karen', 'Jackson', 'karen.jackson@sakilacustomer.org', 17, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (14, 2, 'Betty', 'White', 'betty.white@sakilacustomer.org', 18, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (15, 1, 'Helen', 'Harris', 'helen.harris@sakilacustomer.org', 19, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (16, 2, 'Sandra', 'Martin', 'sandra.martin@sakilacustomer.org', 20, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (17, 1, 'Donna', 'Thompson', 'donna.thompson@sakilacustomer.org', 21, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (18, 2, 'Carol', 'Garcia', 'carol.garcia@sakilacustomer.org', 22, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (19, 1, 'Ruth', 'Martinez', 'ruth.martinez@sakilacustomer.org', 23, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (20, 2, 'Sharon', 'Robinson', 'sharon.robinson@sakilacustomer.org', 24, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (21, 1, 'Michelle', 'Clark', 'michelle.clark@sakilacustomer.org', 25, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (22, 1, 'Laura', 'Rodriguez', 'laura.rodriguez@sakilacustomer.org', 26, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (23, 2, 'Sarah', 'Lewis', 'sarah.lewis@sakilacustomer.org', 27, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (24, 2, 'Kimberly', 'Lee', 'kimberly.lee@sakilacustomer.org', 28, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (25, 1, 'Deborah', 'Walker', 'deborah.walker@sakilacustomer.org', 29, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (26, 2, 'Jessica', 'Hall', 'jessica.hall@sakilacustomer.org', 30, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (27, 2, 'Shirley', 'Allen', 'shirley.allen@sakilacustomer.org', 31, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (28, 1, 'Cynthia', 'Young', 'cynthia.young@sakilacustomer.org', 32, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (29, 2, 'Angela', 'Hernandez', 'angela.hernandez@sakilacustomer.org', 33, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (30, 1, 'Melissa', 'King', 'melissa.king@sakilacustomer.org', 34, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (31, 2, 'Brenda', 'Wright', 'brenda.wright@sakilacustomer.org', 35, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (32, 1, 'Amy', 'Lopez', 'amy.lopez@sakilacustomer.org', 36, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (33, 2, 'Anna', 'Hill', 'anna.hill@sakilacustomer.org', 37, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (34, 2, 'Rebecca', 'Scott', 'rebecca.scott@sakilacustomer.org', 38, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (35, 2, 'Virginia', 'Green', 'virginia.green@sakilacustomer.org', 39, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (36, 2, 'Kathleen', 'Adams', 'kathleen.adams@sakilacustomer.org', 40, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (37, 1, 'Pamela', 'Baker', 'pamela.baker@sakilacustomer.org', 41, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (38, 1, 'Martha', 'Gonzalez', 'martha.gonzalez@sakilacustomer.org', 42, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (39, 1, 'Debra', 'Nelson', 'debra.nelson@sakilacustomer.org', 43, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (40, 2, 'Amanda', 'Carter', 'amanda.carter@sakilacustomer.org', 44, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (41, 1, 'Stephanie', 'Mitchell', 'stephanie.mitchell@sakilacustomer.org', 45, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (42, 2, 'Carolyn', 'Perez', 'carolyn.perez@sakilacustomer.org', 46, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (43, 2, 'Christine', 'Roberts', 'christine.roberts@sakilacustomer.org', 47, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (44, 1, 'Marie', 'Turner', 'marie.turner@sakilacustomer.org', 48, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (45, 1, 'Janet', 'Phillips', 'janet.phillips@sakilacustomer.org', 49, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (46, 2, 'Catherine', 'Campbell', 'catherine.campbell@sakilacustomer.org', 50, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (47, 1, 'Frances', 'Parker', 'frances.parker@sakilacustomer.org', 51, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (48, 1, 'Ann', 'Evans', 'ann.evans@sakilacustomer.org', 52, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (49, 2, 'Joyce', 'Edwards', 'joyce.edwards@sakilacustomer.org', 53, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (50, 1, 'Diane', 'Collins', 'diane.collins@sakilacustomer.org', 54, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (51, 1, 'Alice', 'Stewart', 'alice.stewart@sakilacustomer.org', 55, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (52, 1, 'Julie', 'Sanchez', 'julie.sanchez@sakilacustomer.org', 56, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (53, 1, 'Heather', 'Morris', 'heather.morris@sakilacustomer.org', 57, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (54, 1, 'Teresa', 'Rogers', 'teresa.rogers@sakilacustomer.org', 58, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (55, 2, 'Doris', 'Reed', 'doris.reed@sakilacustomer.org', 59, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (56, 1, 'Gloria', 'Cook', 'gloria.cook@sakilacustomer.org', 60, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (57, 2, 'Evelyn', 'Morgan', 'evelyn.morgan@sakilacustomer.org', 61, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (58, 1, 'Jean', 'Bell', 'jean.bell@sakilacustomer.org', 62, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (59, 1, 'Cheryl', 'Murphy', 'cheryl.murphy@sakilacustomer.org', 63, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (60, 1, 'Mildred', 'Bailey', 'mildred.bailey@sakilacustomer.org', 64, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (61, 2, 'Katherine', 'Rivera', 'katherine.rivera@sakilacustomer.org', 65, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (62, 1, 'Joan', 'Cooper', 'joan.cooper@sakilacustomer.org', 66, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (63, 1, 'Ashley', 'Richardson', 'ashley.richardson@sakilacustomer.org', 67, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (64, 2, 'Judith', 'Cox', 'judith.cox@sakilacustomer.org', 68, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (65, 2, 'Rose', 'Howard', 'rose.howard@sakilacustomer.org', 69, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (66, 2, 'Janice', 'Ward', 'janice.ward@sakilacustomer.org', 70, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (67, 1, 'Kelly', 'Torres', 'kelly.torres@sakilacustomer.org', 71, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (68, 1, 'Nicole', 'Peterson', 'nicole.peterson@sakilacustomer.org', 72, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (69, 2, 'Judy', 'Gray', 'judy.gray@sakilacustomer.org', 73, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (70, 2, 'Christina', 'Ramirez', 'christina.ramirez@sakilacustomer.org', 74, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (71, 1, 'Kathy', 'James', 'kathy.james@sakilacustomer.org', 75, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (72, 2, 'Theresa', 'Watson', 'theresa.watson@sakilacustomer.org', 76, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (73, 2, 'Beverly', 'Brooks', 'beverly.brooks@sakilacustomer.org', 77, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (74, 1, 'Denise', 'Kelly', 'denise.kelly@sakilacustomer.org', 78, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (75, 2, 'Tammy', 'Sanders', 'tammy.sanders@sakilacustomer.org', 79, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (76, 2, 'Irene', 'Price', 'irene.price@sakilacustomer.org', 80, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (77, 2, 'Jane', 'Bennett', 'jane.bennett@sakilacustomer.org', 81, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (78, 1, 'Lori', 'Wood', 'lori.wood@sakilacustomer.org', 82, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (79, 1, 'Rachel', 'Barnes', 'rachel.barnes@sakilacustomer.org', 83, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (80, 1, 'Marilyn', 'Ross', 'marilyn.ross@sakilacustomer.org', 84, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (81, 1, 'Andrea', 'Henderson', 'andrea.henderson@sakilacustomer.org', 85, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (82, 1, 'Kathryn', 'Coleman', 'kathryn.coleman@sakilacustomer.org', 86, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (83, 1, 'Louise', 'Jenkins', 'louise.jenkins@sakilacustomer.org', 87, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (84, 2, 'Sara', 'Perry', 'sara.perry@sakilacustomer.org', 88, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (85, 2, 'Anne', 'Powell', 'anne.powell@sakilacustomer.org', 89, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (86, 2, 'Jacqueline', 'Long', 'jacqueline.long@sakilacustomer.org', 90, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (87, 1, 'Wanda', 'Patterson', 'wanda.patterson@sakilacustomer.org', 91, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (88, 2, 'Bonnie', 'Hughes', 'bonnie.hughes@sakilacustomer.org', 92, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (89, 1, 'Julia', 'Flores', 'julia.flores@sakilacustomer.org', 93, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (90, 2, 'Ruby', 'Washington', 'ruby.washington@sakilacustomer.org', 94, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (91, 2, 'Lois', 'Butler', 'lois.butler@sakilacustomer.org', 95, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (92, 2, 'Tina', 'Simmons', 'tina.simmons@sakilacustomer.org', 96, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (93, 1, 'Phyllis', 'Foster', 'phyllis.foster@sakilacustomer.org', 97, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (94, 1, 'Norma', 'Gonzales', 'norma.gonzales@sakilacustomer.org', 98, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (95, 2, 'Paula', 'Bryant', 'paula.bryant@sakilacustomer.org', 99, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (96, 1, 'Diana', 'Alexander', 'diana.alexander@sakilacustomer.org', 100, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (97, 2, 'Annie', 'Russell', 'annie.russell@sakilacustomer.org', 101, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (98, 1, 'Lillian', 'Griffin', 'lillian.griffin@sakilacustomer.org', 102, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (99, 2, 'Emily', 'Diaz', 'emily.diaz@sakilacustomer.org', 103, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (100, 1, 'Robin', 'Hayes', 'robin.hayes@sakilacustomer.org', 104, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (101, 1, 'Peggy', 'Myers', 'peggy.myers@sakilacustomer.org', 105, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (102, 1, 'Crystal', 'Ford', 'crystal.ford@sakilacustomer.org', 106, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (103, 1, 'Gladys', 'Hamilton', 'gladys.hamilton@sakilacustomer.org', 107, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (104, 1, 'Rita', 'Graham', 'rita.graham@sakilacustomer.org', 108, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (105, 1, 'Dawn', 'Sullivan', 'dawn.sullivan@sakilacustomer.org', 109, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (106, 1, 'Connie', 'Wallace', 'connie.wallace@sakilacustomer.org', 110, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (107, 1, 'Florence', 'Woods', 'florence.woods@sakilacustomer.org', 111, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (108, 1, 'Tracy', 'Cole', 'tracy.cole@sakilacustomer.org', 112, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (109, 2, 'Edna', 'West', 'edna.west@sakilacustomer.org', 113, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (110, 2, 'Tiffany', 'Jordan', 'tiffany.jordan@sakilacustomer.org', 114, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (111, 1, 'Carmen', 'Owens', 'carmen.owens@sakilacustomer.org', 115, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (112, 2, 'Rosa', 'Reynolds', 'rosa.reynolds@sakilacustomer.org', 116, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (113, 2, 'Cindy', 'Fisher', 'cindy.fisher@sakilacustomer.org', 117, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (114, 2, 'Grace', 'Ellis', 'grace.ellis@sakilacustomer.org', 118, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (115, 1, 'Wendy', 'Harrison', 'wendy.harrison@sakilacustomer.org', 119, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (116, 1, 'Victoria', 'Gibson', 'victoria.gibson@sakilacustomer.org', 120, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (117, 1, 'Edith', 'Mcdonald', 'edith.mcdonald@sakilacustomer.org', 121, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (118, 1, 'Kim', 'Cruz', 'kim.cruz@sakilacustomer.org', 122, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (119, 1, 'Sherry', 'Marshall', 'sherry.marshall@sakilacustomer.org', 123, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (120, 2, 'Sylvia', 'Ortiz', 'sylvia.ortiz@sakilacustomer.org', 124, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (121, 1, 'Josephine', 'Gomez', 'josephine.gomez@sakilacustomer.org', 125, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (122, 1, 'Thelma', 'Murray', 'thelma.murray@sakilacustomer.org', 126, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (123, 2, 'Shannon', 'Freeman', 'shannon.freeman@sakilacustomer.org', 127, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (124, 1, 'Sheila', 'Wells', 'sheila.wells@sakilacustomer.org', 128, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (125, 1, 'Ethel', 'Webb', 'ethel.webb@sakilacustomer.org', 129, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (126, 1, 'Ellen', 'Simpson', 'ellen.simpson@sakilacustomer.org', 130, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (127, 2, 'Elaine', 'Stevens', 'elaine.stevens@sakilacustomer.org', 131, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (128, 1, 'Marjorie', 'Tucker', 'marjorie.tucker@sakilacustomer.org', 132, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (129, 1, 'Carrie', 'Porter', 'carrie.porter@sakilacustomer.org', 133, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (130, 1, 'Charlotte', 'Hunter', 'charlotte.hunter@sakilacustomer.org', 134, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (131, 2, 'Monica', 'Hicks', 'monica.hicks@sakilacustomer.org', 135, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (132, 2, 'Esther', 'Crawford', 'esther.crawford@sakilacustomer.org', 136, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (133, 1, 'Pauline', 'Henry', 'pauline.henry@sakilacustomer.org', 137, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (134, 1, 'Emma', 'Boyd', 'emma.boyd@sakilacustomer.org', 138, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (135, 2, 'Juanita', 'Mason', 'juanita.mason@sakilacustomer.org', 139, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (136, 2, 'Anita', 'Morales', 'anita.morales@sakilacustomer.org', 140, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (137, 2, 'Rhonda', 'Kennedy', 'rhonda.kennedy@sakilacustomer.org', 141, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (138, 1, 'Hazel', 'Warren', 'hazel.warren@sakilacustomer.org', 142, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (139, 1, 'Amber', 'Dixon', 'amber.dixon@sakilacustomer.org', 143, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (140, 1, 'Eva', 'Ramos', 'eva.ramos@sakilacustomer.org', 144, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (141, 1, 'Debbie', 'Reyes', 'debbie.reyes@sakilacustomer.org', 145, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (142, 1, 'April', 'Burns', 'april.burns@sakilacustomer.org', 146, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (143, 1, 'Leslie', 'Gordon', 'leslie.gordon@sakilacustomer.org', 147, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (144, 1, 'Clara', 'Shaw', 'clara.shaw@sakilacustomer.org', 148, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (145, 1, 'Lucille', 'Holmes', 'lucille.holmes@sakilacustomer.org', 149, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (146, 1, 'Jamie', 'Rice', 'jamie.rice@sakilacustomer.org', 150, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (147, 2, 'Joanne', 'Robertson', 'joanne.robertson@sakilacustomer.org', 151, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (148, 1, 'Eleanor', 'Hunt', 'eleanor.hunt@sakilacustomer.org', 152, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (149, 1, 'Valerie', 'Black', 'valerie.black@sakilacustomer.org', 153, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (150, 2, 'Danielle', 'Daniels', 'danielle.daniels@sakilacustomer.org', 154, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (151, 2, 'Megan', 'Palmer', 'megan.palmer@sakilacustomer.org', 155, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (152, 1, 'Alicia', 'Mills', 'alicia.mills@sakilacustomer.org', 156, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (153, 2, 'Suzanne', 'Nichols', 'suzanne.nichols@sakilacustomer.org', 157, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (154, 2, 'Michele', 'Grant', 'michele.grant@sakilacustomer.org', 158, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (155, 1, 'Gail', 'Knight', 'gail.knight@sakilacustomer.org', 159, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (156, 1, 'Bertha', 'Ferguson', 'bertha.ferguson@sakilacustomer.org', 160, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (157, 2, 'Darlene', 'Rose', 'darlene.rose@sakilacustomer.org', 161, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (158, 1, 'Veronica', 'Stone', 'veronica.stone@sakilacustomer.org', 162, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (159, 1, 'Jill', 'Hawkins', 'jill.hawkins@sakilacustomer.org', 163, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (160, 2, 'Erin', 'Dunn', 'erin.dunn@sakilacustomer.org', 164, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (161, 1, 'Geraldine', 'Perkins', 'geraldine.perkins@sakilacustomer.org', 165, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (162, 2, 'Lauren', 'Hudson', 'lauren.hudson@sakilacustomer.org', 166, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (163, 1, 'Cathy', 'Spencer', 'cathy.spencer@sakilacustomer.org', 167, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (164, 2, 'Joann', 'Gardner', 'joann.gardner@sakilacustomer.org', 168, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (165, 2, 'Lorraine', 'Stephens', 'lorraine.stephens@sakilacustomer.org', 169, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (166, 1, 'Lynn', 'Payne', 'lynn.payne@sakilacustomer.org', 170, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (167, 2, 'Sally', 'Pierce', 'sally.pierce@sakilacustomer.org', 171, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (168, 1, 'Regina', 'Berry', 'regina.berry@sakilacustomer.org', 172, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (169, 2, 'Erica', 'Matthews', 'erica.matthews@sakilacustomer.org', 173, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (170, 1, 'Beatrice', 'Arnold', 'beatrice.arnold@sakilacustomer.org', 174, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (171, 2, 'Dolores', 'Wagner', 'dolores.wagner@sakilacustomer.org', 175, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (172, 1, 'Bernice', 'Willis', 'bernice.willis@sakilacustomer.org', 176, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (173, 1, 'Audrey', 'Ray', 'audrey.ray@sakilacustomer.org', 177, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (174, 2, 'Yvonne', 'Watkins', 'yvonne.watkins@sakilacustomer.org', 178, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (175, 1, 'Annette', 'Olson', 'annette.olson@sakilacustomer.org', 179, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (176, 1, 'June', 'Carroll', 'june.carroll@sakilacustomer.org', 180, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (177, 2, 'Samantha', 'Duncan', 'samantha.duncan@sakilacustomer.org', 181, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (178, 2, 'Marion', 'Snyder', 'marion.snyder@sakilacustomer.org', 182, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (179, 1, 'Dana', 'Hart', 'dana.hart@sakilacustomer.org', 183, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (180, 2, 'Stacy', 'Cunningham', 'stacy.cunningham@sakilacustomer.org', 184, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (181, 2, 'Ana', 'Bradley', 'ana.bradley@sakilacustomer.org', 185, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (182, 1, 'Renee', 'Lane', 'renee.lane@sakilacustomer.org', 186, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (183, 2, 'Ida', 'Andrews', 'ida.andrews@sakilacustomer.org', 187, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (184, 1, 'Vivian', 'Ruiz', 'vivian.ruiz@sakilacustomer.org', 188, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (185, 1, 'Roberta', 'Harper', 'roberta.harper@sakilacustomer.org', 189, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (186, 2, 'Holly', 'Fox', 'holly.fox@sakilacustomer.org', 190, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (187, 2, 'Brittany', 'Riley', 'brittany.riley@sakilacustomer.org', 191, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (188, 1, 'Melanie', 'Armstrong', 'melanie.armstrong@sakilacustomer.org', 192, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (189, 1, 'Loretta', 'Carpenter', 'loretta.carpenter@sakilacustomer.org', 193, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (190, 2, 'Yolanda', 'Weaver', 'yolanda.weaver@sakilacustomer.org', 194, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (191, 1, 'Jeanette', 'Greene', 'jeanette.greene@sakilacustomer.org', 195, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (192, 1, 'Laurie', 'Lawrence', 'laurie.lawrence@sakilacustomer.org', 196, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (193, 2, 'Katie', 'Elliott', 'katie.elliott@sakilacustomer.org', 197, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (194, 2, 'Kristen', 'Chavez', 'kristen.chavez@sakilacustomer.org', 198, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (195, 1, 'Vanessa', 'Sims', 'vanessa.sims@sakilacustomer.org', 199, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (196, 1, 'Alma', 'Austin', 'alma.austin@sakilacustomer.org', 200, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (197, 2, 'Sue', 'Peters', 'sue.peters@sakilacustomer.org', 201, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (198, 2, 'Elsie', 'Kelley', 'elsie.kelley@sakilacustomer.org', 202, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (199, 2, 'Beth', 'Franklin', 'beth.franklin@sakilacustomer.org', 203, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (200, 2, 'Jeanne', 'Lawson', 'jeanne.lawson@sakilacustomer.org', 204, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (201, 1, 'Vicki', 'Fields', 'vicki.fields@sakilacustomer.org', 205, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (202, 2, 'Carla', 'Gutierrez', 'carla.gutierrez@sakilacustomer.org', 206, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (203, 1, 'Tara', 'Ryan', 'tara.ryan@sakilacustomer.org', 207, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (204, 1, 'Rosemary', 'Schmidt', 'rosemary.schmidt@sakilacustomer.org', 208, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (205, 2, 'Eileen', 'Carr', 'eileen.carr@sakilacustomer.org', 209, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (206, 1, 'Terri', 'Vasquez', 'terri.vasquez@sakilacustomer.org', 210, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (207, 1, 'Gertrude', 'Castillo', 'gertrude.castillo@sakilacustomer.org', 211, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (208, 1, 'Lucy', 'Wheeler', 'lucy.wheeler@sakilacustomer.org', 212, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (209, 2, 'Tonya', 'Chapman', 'tonya.chapman@sakilacustomer.org', 213, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (210, 2, 'Ella', 'Oliver', 'ella.oliver@sakilacustomer.org', 214, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (211, 1, 'Stacey', 'Montgomery', 'stacey.montgomery@sakilacustomer.org', 215, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (212, 2, 'Wilma', 'Richards', 'wilma.richards@sakilacustomer.org', 216, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (213, 1, 'Gina', 'Williamson', 'gina.williamson@sakilacustomer.org', 217, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (214, 1, 'Kristin', 'Johnston', 'kristin.johnston@sakilacustomer.org', 218, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (215, 2, 'Jessie', 'Banks', 'jessie.banks@sakilacustomer.org', 219, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (216, 1, 'Natalie', 'Meyer', 'natalie.meyer@sakilacustomer.org', 220, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (217, 2, 'Agnes', 'Bishop', 'agnes.bishop@sakilacustomer.org', 221, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (218, 1, 'Vera', 'Mccoy', 'vera.mccoy@sakilacustomer.org', 222, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (219, 2, 'Willie', 'Howell', 'willie.howell@sakilacustomer.org', 223, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (220, 2, 'Charlene', 'Alvarez', 'charlene.alvarez@sakilacustomer.org', 224, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (221, 1, 'Bessie', 'Morrison', 'bessie.morrison@sakilacustomer.org', 225, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (222, 2, 'Delores', 'Hansen', 'delores.hansen@sakilacustomer.org', 226, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (223, 1, 'Melinda', 'Fernandez', 'melinda.fernandez@sakilacustomer.org', 227, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (224, 2, 'Pearl', 'Garza', 'pearl.garza@sakilacustomer.org', 228, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (225, 1, 'Arlene', 'Harvey', 'arlene.harvey@sakilacustomer.org', 229, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (226, 2, 'Maureen', 'Little', 'maureen.little@sakilacustomer.org', 230, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (227, 1, 'Colleen', 'Burton', 'colleen.burton@sakilacustomer.org', 231, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (228, 2, 'Allison', 'Stanley', 'allison.stanley@sakilacustomer.org', 232, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (229, 1, 'Tamara', 'Nguyen', 'tamara.nguyen@sakilacustomer.org', 233, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (230, 2, 'Joy', 'George', 'joy.george@sakilacustomer.org', 234, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (231, 1, 'Georgia', 'Jacobs', 'georgia.jacobs@sakilacustomer.org', 235, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (232, 2, 'Constance', 'Reid', 'constance.reid@sakilacustomer.org', 236, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (233, 2, 'Lillie', 'Kim', 'lillie.kim@sakilacustomer.org', 237, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (234, 1, 'Claudia', 'Fuller', 'claudia.fuller@sakilacustomer.org', 238, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (235, 1, 'Jackie', 'Lynch', 'jackie.lynch@sakilacustomer.org', 239, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (236, 1, 'Marcia', 'Dean', 'marcia.dean@sakilacustomer.org', 240, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (237, 1, 'Tanya', 'Gilbert', 'tanya.gilbert@sakilacustomer.org', 241, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (238, 1, 'Nellie', 'Garrett', 'nellie.garrett@sakilacustomer.org', 242, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (239, 2, 'Minnie', 'Romero', 'minnie.romero@sakilacustomer.org', 243, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (240, 1, 'Marlene', 'Welch', 'marlene.welch@sakilacustomer.org', 244, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (241, 2, 'Heidi', 'Larson', 'heidi.larson@sakilacustomer.org', 245, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (242, 1, 'Glenda', 'Frazier', 'glenda.frazier@sakilacustomer.org', 246, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (243, 1, 'Lydia', 'Burke', 'lydia.burke@sakilacustomer.org', 247, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (244, 2, 'Viola', 'Hanson', 'viola.hanson@sakilacustomer.org', 248, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (245, 1, 'Courtney', 'Day', 'courtney.day@sakilacustomer.org', 249, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (246, 1, 'Marian', 'Mendoza', 'marian.mendoza@sakilacustomer.org', 250, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (247, 1, 'Stella', 'Moreno', 'stella.moreno@sakilacustomer.org', 251, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (248, 1, 'Caroline', 'Bowman', 'caroline.bowman@sakilacustomer.org', 252, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (249, 2, 'Dora', 'Medina', 'dora.medina@sakilacustomer.org', 253, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (250, 2, 'Jo', 'Fowler', 'jo.fowler@sakilacustomer.org', 254, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (251, 2, 'Vickie', 'Brewer', 'vickie.brewer@sakilacustomer.org', 255, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (252, 2, 'Mattie', 'Hoffman', 'mattie.hoffman@sakilacustomer.org', 256, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (253, 1, 'Terry', 'Carlson', 'terry.carlson@sakilacustomer.org', 258, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (254, 2, 'Maxine', 'Silva', 'maxine.silva@sakilacustomer.org', 259, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (255, 2, 'Irma', 'Pearson', 'irma.pearson@sakilacustomer.org', 260, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (256, 2, 'Mabel', 'Holland', 'mabel.holland@sakilacustomer.org', 261, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (257, 2, 'Marsha', 'Douglas', 'marsha.douglas@sakilacustomer.org', 262, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (258, 1, 'Myrtle', 'Fleming', 'myrtle.fleming@sakilacustomer.org', 263, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (259, 2, 'Lena', 'Jensen', 'lena.jensen@sakilacustomer.org', 264, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (260, 1, 'Christy', 'Vargas', 'christy.vargas@sakilacustomer.org', 265, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (261, 1, 'Deanna', 'Byrd', 'deanna.byrd@sakilacustomer.org', 266, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (262, 2, 'Patsy', 'Davidson', 'patsy.davidson@sakilacustomer.org', 267, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (263, 1, 'Hilda', 'Hopkins', 'hilda.hopkins@sakilacustomer.org', 268, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (264, 1, 'Gwendolyn', 'May', 'gwendolyn.may@sakilacustomer.org', 269, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (265, 2, 'Jennie', 'Terry', 'jennie.terry@sakilacustomer.org', 270, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (266, 2, 'Nora', 'Herrera', 'nora.herrera@sakilacustomer.org', 271, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (267, 1, 'Margie', 'Wade', 'margie.wade@sakilacustomer.org', 272, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (268, 1, 'Nina', 'Soto', 'nina.soto@sakilacustomer.org', 273, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (269, 1, 'Cassandra', 'Walters', 'cassandra.walters@sakilacustomer.org', 274, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (270, 1, 'Leah', 'Curtis', 'leah.curtis@sakilacustomer.org', 275, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (271, 1, 'Penny', 'Neal', 'penny.neal@sakilacustomer.org', 276, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (272, 1, 'Kay', 'Caldwell', 'kay.caldwell@sakilacustomer.org', 277, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (273, 2, 'Priscilla', 'Lowe', 'priscilla.lowe@sakilacustomer.org', 278, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (274, 1, 'Naomi', 'Jennings', 'naomi.jennings@sakilacustomer.org', 279, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (275, 2, 'Carole', 'Barnett', 'carole.barnett@sakilacustomer.org', 280, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (276, 1, 'Brandy', 'Graves', 'brandy.graves@sakilacustomer.org', 281, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (277, 2, 'Olga', 'Jimenez', 'olga.jimenez@sakilacustomer.org', 282, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (278, 2, 'Billie', 'Horton', 'billie.horton@sakilacustomer.org', 283, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (279, 2, 'Dianne', 'Shelton', 'dianne.shelton@sakilacustomer.org', 284, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (280, 2, 'Tracey', 'Barrett', 'tracey.barrett@sakilacustomer.org', 285, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (281, 2, 'Leona', 'Obrien', 'leona.obrien@sakilacustomer.org', 286, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (282, 2, 'Jenny', 'Castro', 'jenny.castro@sakilacustomer.org', 287, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (283, 1, 'Felicia', 'Sutton', 'felicia.sutton@sakilacustomer.org', 288, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (284, 1, 'Sonia', 'Gregory', 'sonia.gregory@sakilacustomer.org', 289, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (285, 1, 'Miriam', 'Mckinney', 'miriam.mckinney@sakilacustomer.org', 290, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (286, 1, 'Velma', 'Lucas', 'velma.lucas@sakilacustomer.org', 291, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (287, 2, 'Becky', 'Miles', 'becky.miles@sakilacustomer.org', 292, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (288, 1, 'Bobbie', 'Craig', 'bobbie.craig@sakilacustomer.org', 293, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (289, 1, 'Violet', 'Rodriquez', 'violet.rodriquez@sakilacustomer.org', 294, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (290, 1, 'Kristina', 'Chambers', 'kristina.chambers@sakilacustomer.org', 295, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (291, 1, 'Toni', 'Holt', 'toni.holt@sakilacustomer.org', 296, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (292, 2, 'Misty', 'Lambert', 'misty.lambert@sakilacustomer.org', 297, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (293, 2, 'Mae', 'Fletcher', 'mae.fletcher@sakilacustomer.org', 298, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (294, 2, 'Shelly', 'Watts', 'shelly.watts@sakilacustomer.org', 299, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (295, 1, 'Daisy', 'Bates', 'daisy.bates@sakilacustomer.org', 300, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (296, 2, 'Ramona', 'Hale', 'ramona.hale@sakilacustomer.org', 301, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (297, 1, 'Sherri', 'Rhodes', 'sherri.rhodes@sakilacustomer.org', 302, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (298, 1, 'Erika', 'Pena', 'erika.pena@sakilacustomer.org', 303, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (299, 2, 'James', 'Gannon', 'james.gannon@sakilacustomer.org', 304, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (300, 1, 'John', 'Farnsworth', 'john.farnsworth@sakilacustomer.org', 305, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (301, 2, 'Robert', 'Baughman', 'robert.baughman@sakilacustomer.org', 306, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (302, 1, 'Michael', 'Silverman', 'michael.silverman@sakilacustomer.org', 307, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (303, 2, 'William', 'Satterfield', 'william.satterfield@sakilacustomer.org', 308, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (304, 2, 'David', 'Royal', 'david.royal@sakilacustomer.org', 309, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (305, 1, 'Richard', 'Mccrary', 'richard.mccrary@sakilacustomer.org', 310, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (306, 1, 'Charles', 'Kowalski', 'charles.kowalski@sakilacustomer.org', 311, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (307, 2, 'Joseph', 'Joy', 'joseph.joy@sakilacustomer.org', 312, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (308, 1, 'Thomas', 'Grigsby', 'thomas.grigsby@sakilacustomer.org', 313, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (309, 1, 'Christopher', 'Greco', 'christopher.greco@sakilacustomer.org', 314, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (310, 2, 'Daniel', 'Cabral', 'daniel.cabral@sakilacustomer.org', 315, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (311, 2, 'Paul', 'Trout', 'paul.trout@sakilacustomer.org', 316, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (312, 2, 'Mark', 'Rinehart', 'mark.rinehart@sakilacustomer.org', 317, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (313, 2, 'Donald', 'Mahon', 'donald.mahon@sakilacustomer.org', 318, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (314, 1, 'George', 'Linton', 'george.linton@sakilacustomer.org', 319, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (315, 2, 'Kenneth', 'Gooden', 'kenneth.gooden@sakilacustomer.org', 320, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (316, 1, 'Steven', 'Curley', 'steven.curley@sakilacustomer.org', 321, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (317, 2, 'Edward', 'Baugh', 'edward.baugh@sakilacustomer.org', 322, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (318, 1, 'Brian', 'Wyman', 'brian.wyman@sakilacustomer.org', 323, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (319, 2, 'Ronald', 'Weiner', 'ronald.weiner@sakilacustomer.org', 324, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (320, 2, 'Anthony', 'Schwab', 'anthony.schwab@sakilacustomer.org', 325, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (321, 1, 'Kevin', 'Schuler', 'kevin.schuler@sakilacustomer.org', 326, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (322, 1, 'Jason', 'Morrissey', 'jason.morrissey@sakilacustomer.org', 327, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (323, 2, 'Matthew', 'Mahan', 'matthew.mahan@sakilacustomer.org', 328, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (324, 2, 'Gary', 'Coy', 'gary.coy@sakilacustomer.org', 329, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (325, 1, 'Timothy', 'Bunn', 'timothy.bunn@sakilacustomer.org', 330, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (326, 1, 'Jose', 'Andrew', 'jose.andrew@sakilacustomer.org', 331, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (327, 2, 'Larry', 'Thrasher', 'larry.thrasher@sakilacustomer.org', 332, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (328, 2, 'Jeffrey', 'Spear', 'jeffrey.spear@sakilacustomer.org', 333, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (329, 2, 'Frank', 'Waggoner', 'frank.waggoner@sakilacustomer.org', 334, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (330, 1, 'Scott', 'Shelley', 'scott.shelley@sakilacustomer.org', 335, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (331, 1, 'Eric', 'Robert', 'eric.robert@sakilacustomer.org', 336, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (332, 1, 'Stephen', 'Qualls', 'stephen.qualls@sakilacustomer.org', 337, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (333, 2, 'Andrew', 'Purdy', 'andrew.purdy@sakilacustomer.org', 338, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (334, 2, 'Raymond', 'Mcwhorter', 'raymond.mcwhorter@sakilacustomer.org', 339, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (335, 1, 'Gregory', 'Mauldin', 'gregory.mauldin@sakilacustomer.org', 340, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (336, 1, 'Joshua', 'Mark', 'joshua.mark@sakilacustomer.org', 341, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (337, 1, 'Jerry', 'Jordon', 'jerry.jordon@sakilacustomer.org', 342, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (338, 1, 'Dennis', 'Gilman', 'dennis.gilman@sakilacustomer.org', 343, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (339, 2, 'Walter', 'Perryman', 'walter.perryman@sakilacustomer.org', 344, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (340, 1, 'Patrick', 'Newsom', 'patrick.newsom@sakilacustomer.org', 345, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (341, 1, 'Peter', 'Menard', 'peter.menard@sakilacustomer.org', 346, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (342, 1, 'Harold', 'Martino', 'harold.martino@sakilacustomer.org', 347, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (343, 1, 'Douglas', 'Graf', 'douglas.graf@sakilacustomer.org', 348, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (344, 1, 'Henry', 'Billingsley', 'henry.billingsley@sakilacustomer.org', 349, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (345, 1, 'Carl', 'Artis', 'carl.artis@sakilacustomer.org', 350, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (346, 1, 'Arthur', 'Simpkins', 'arthur.simpkins@sakilacustomer.org', 351, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (347, 2, 'Ryan', 'Salisbury', 'ryan.salisbury@sakilacustomer.org', 352, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (348, 2, 'Roger', 'Quintanilla', 'roger.quintanilla@sakilacustomer.org', 353, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (349, 2, 'Joe', 'Gilliland', 'joe.gilliland@sakilacustomer.org', 354, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (350, 1, 'Juan', 'Fraley', 'juan.fraley@sakilacustomer.org', 355, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (351, 1, 'Jack', 'Foust', 'jack.foust@sakilacustomer.org', 356, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (352, 1, 'Albert', 'Crouse', 'albert.crouse@sakilacustomer.org', 357, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (353, 1, 'Jonathan', 'Scarborough', 'jonathan.scarborough@sakilacustomer.org', 358, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (354, 2, 'Justin', 'Ngo', 'justin.ngo@sakilacustomer.org', 359, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (355, 2, 'Terry', 'Grissom', 'terry.grissom@sakilacustomer.org', 360, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (356, 2, 'Gerald', 'Fultz', 'gerald.fultz@sakilacustomer.org', 361, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (357, 1, 'Keith', 'Rico', 'keith.rico@sakilacustomer.org', 362, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (358, 2, 'Samuel', 'Marlow', 'samuel.marlow@sakilacustomer.org', 363, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (359, 2, 'Willie', 'Markham', 'willie.markham@sakilacustomer.org', 364, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (360, 2, 'Ralph', 'Madrigal', 'ralph.madrigal@sakilacustomer.org', 365, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (361, 2, 'Lawrence', 'Lawton', 'lawrence.lawton@sakilacustomer.org', 366, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (362, 1, 'Nicholas', 'Barfield', 'nicholas.barfield@sakilacustomer.org', 367, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (363, 2, 'Roy', 'Whiting', 'roy.whiting@sakilacustomer.org', 368, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (364, 1, 'Benjamin', 'Varney', 'benjamin.varney@sakilacustomer.org', 369, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (365, 2, 'Bruce', 'Schwarz', 'bruce.schwarz@sakilacustomer.org', 370, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (366, 1, 'Brandon', 'Huey', 'brandon.huey@sakilacustomer.org', 371, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (367, 1, 'Adam', 'Gooch', 'adam.gooch@sakilacustomer.org', 372, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (368, 1, 'Harry', 'Arce', 'harry.arce@sakilacustomer.org', 373, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (369, 2, 'Fred', 'Wheat', 'fred.wheat@sakilacustomer.org', 374, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (370, 2, 'Wayne', 'Truong', 'wayne.truong@sakilacustomer.org', 375, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (371, 1, 'Billy', 'Poulin', 'billy.poulin@sakilacustomer.org', 376, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (372, 2, 'Steve', 'Mackenzie', 'steve.mackenzie@sakilacustomer.org', 377, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (373, 1, 'Louis', 'Leone', 'louis.leone@sakilacustomer.org', 378, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (374, 2, 'Jeremy', 'Hurtado', 'jeremy.hurtado@sakilacustomer.org', 379, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (375, 2, 'Aaron', 'Selby', 'aaron.selby@sakilacustomer.org', 380, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (376, 1, 'Randy', 'Gaither', 'randy.gaither@sakilacustomer.org', 381, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (377, 1, 'Howard', 'Fortner', 'howard.fortner@sakilacustomer.org', 382, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (378, 1, 'Eugene', 'Culpepper', 'eugene.culpepper@sakilacustomer.org', 383, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (379, 1, 'Carlos', 'Coughlin', 'carlos.coughlin@sakilacustomer.org', 384, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (380, 1, 'Russell', 'Brinson', 'russell.brinson@sakilacustomer.org', 385, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (381, 2, 'Bobby', 'Boudreau', 'bobby.boudreau@sakilacustomer.org', 386, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (382, 2, 'Victor', 'Barkley', 'victor.barkley@sakilacustomer.org', 387, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (383, 1, 'Martin', 'Bales', 'martin.bales@sakilacustomer.org', 388, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (384, 2, 'Ernest', 'Stepp', 'ernest.stepp@sakilacustomer.org', 389, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (385, 1, 'Phillip', 'Holm', 'phillip.holm@sakilacustomer.org', 390, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (386, 1, 'Todd', 'Tan', 'todd.tan@sakilacustomer.org', 391, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (387, 2, 'Jesse', 'Schilling', 'jesse.schilling@sakilacustomer.org', 392, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (388, 2, 'Craig', 'Morrell', 'craig.morrell@sakilacustomer.org', 393, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (389, 1, 'Alan', 'Kahn', 'alan.kahn@sakilacustomer.org', 394, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (390, 1, 'Shawn', 'Heaton', 'shawn.heaton@sakilacustomer.org', 395, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (391, 1, 'Clarence', 'Gamez', 'clarence.gamez@sakilacustomer.org', 396, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (392, 2, 'Sean', 'Douglass', 'sean.douglass@sakilacustomer.org', 397, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (393, 1, 'Philip', 'Causey', 'philip.causey@sakilacustomer.org', 398, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (394, 2, 'Chris', 'Brothers', 'chris.brothers@sakilacustomer.org', 399, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (395, 2, 'Johnny', 'Turpin', 'johnny.turpin@sakilacustomer.org', 400, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (396, 1, 'Earl', 'Shanks', 'earl.shanks@sakilacustomer.org', 401, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (397, 1, 'Jimmy', 'Schrader', 'jimmy.schrader@sakilacustomer.org', 402, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (398, 1, 'Antonio', 'Meek', 'antonio.meek@sakilacustomer.org', 403, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (399, 1, 'Danny', 'Isom', 'danny.isom@sakilacustomer.org', 404, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (400, 2, 'Bryan', 'Hardison', 'bryan.hardison@sakilacustomer.org', 405, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (401, 2, 'Tony', 'Carranza', 'tony.carranza@sakilacustomer.org', 406, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (402, 1, 'Luis', 'Yanez', 'luis.yanez@sakilacustomer.org', 407, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (403, 1, 'Mike', 'Way', 'mike.way@sakilacustomer.org', 408, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (404, 2, 'Stanley', 'Scroggins', 'stanley.scroggins@sakilacustomer.org', 409, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (405, 1, 'Leonard', 'Schofield', 'leonard.schofield@sakilacustomer.org', 410, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (406, 1, 'Nathan', 'Runyon', 'nathan.runyon@sakilacustomer.org', 411, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (407, 1, 'Dale', 'Ratcliff', 'dale.ratcliff@sakilacustomer.org', 412, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (408, 1, 'Manuel', 'Murrell', 'manuel.murrell@sakilacustomer.org', 413, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (409, 2, 'Rodney', 'Moeller', 'rodney.moeller@sakilacustomer.org', 414, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (410, 2, 'Curtis', 'Irby', 'curtis.irby@sakilacustomer.org', 415, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (411, 1, 'Norman', 'Currier', 'norman.currier@sakilacustomer.org', 416, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (412, 2, 'Allen', 'Butterfield', 'allen.butterfield@sakilacustomer.org', 417, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (413, 2, 'Marvin', 'Yee', 'marvin.yee@sakilacustomer.org', 418, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (414, 1, 'Vincent', 'Ralston', 'vincent.ralston@sakilacustomer.org', 419, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (415, 1, 'Glenn', 'Pullen', 'glenn.pullen@sakilacustomer.org', 420, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (416, 2, 'Jeffery', 'Pinson', 'jeffery.pinson@sakilacustomer.org', 421, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (417, 1, 'Travis', 'Estep', 'travis.estep@sakilacustomer.org', 422, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (418, 2, 'Jeff', 'East', 'jeff.east@sakilacustomer.org', 423, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (419, 1, 'Chad', 'Carbone', 'chad.carbone@sakilacustomer.org', 424, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (420, 1, 'Jacob', 'Lance', 'jacob.lance@sakilacustomer.org', 425, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (421, 1, 'Lee', 'Hawks', 'lee.hawks@sakilacustomer.org', 426, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (422, 1, 'Melvin', 'Ellington', 'melvin.ellington@sakilacustomer.org', 427, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (423, 2, 'Alfred', 'Casillas', 'alfred.casillas@sakilacustomer.org', 428, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (424, 2, 'Kyle', 'Spurlock', 'kyle.spurlock@sakilacustomer.org', 429, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (425, 2, 'Francis', 'Sikes', 'francis.sikes@sakilacustomer.org', 430, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (426, 1, 'Bradley', 'Motley', 'bradley.motley@sakilacustomer.org', 431, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (427, 2, 'Jesus', 'Mccartney', 'jesus.mccartney@sakilacustomer.org', 432, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (428, 2, 'Herbert', 'Kruger', 'herbert.kruger@sakilacustomer.org', 433, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (429, 2, 'Frederick', 'Isbell', 'frederick.isbell@sakilacustomer.org', 434, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (430, 1, 'Ray', 'Houle', 'ray.houle@sakilacustomer.org', 435, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (431, 2, 'Joel', 'Francisco', 'joel.francisco@sakilacustomer.org', 436, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (432, 1, 'Edwin', 'Burk', 'edwin.burk@sakilacustomer.org', 437, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (433, 1, 'Don', 'Bone', 'don.bone@sakilacustomer.org', 438, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (434, 1, 'Eddie', 'Tomlin', 'eddie.tomlin@sakilacustomer.org', 439, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (435, 2, 'Ricky', 'Shelby', 'ricky.shelby@sakilacustomer.org', 440, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (436, 1, 'Troy', 'Quigley', 'troy.quigley@sakilacustomer.org', 441, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (437, 2, 'Randall', 'Neumann', 'randall.neumann@sakilacustomer.org', 442, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (438, 1, 'Barry', 'Lovelace', 'barry.lovelace@sakilacustomer.org', 443, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (439, 2, 'Alexander', 'Fennell', 'alexander.fennell@sakilacustomer.org', 444, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (440, 1, 'Bernard', 'Colby', 'bernard.colby@sakilacustomer.org', 445, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (441, 1, 'Mario', 'Cheatham', 'mario.cheatham@sakilacustomer.org', 446, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (442, 1, 'Leroy', 'Bustamante', 'leroy.bustamante@sakilacustomer.org', 447, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (443, 2, 'Francisco', 'Skidmore', 'francisco.skidmore@sakilacustomer.org', 448, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (444, 2, 'Marcus', 'Hidalgo', 'marcus.hidalgo@sakilacustomer.org', 449, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (445, 1, 'Micheal', 'Forman', 'micheal.forman@sakilacustomer.org', 450, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (446, 2, 'Theodore', 'Culp', 'theodore.culp@sakilacustomer.org', 451, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (447, 1, 'Clifford', 'Bowens', 'clifford.bowens@sakilacustomer.org', 452, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (448, 1, 'Miguel', 'Betancourt', 'miguel.betancourt@sakilacustomer.org', 453, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (449, 2, 'Oscar', 'Aquino', 'oscar.aquino@sakilacustomer.org', 454, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (450, 1, 'Jay', 'Robb', 'jay.robb@sakilacustomer.org', 455, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (451, 1, 'Jim', 'Rea', 'jim.rea@sakilacustomer.org', 456, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (452, 1, 'Tom', 'Milner', 'tom.milner@sakilacustomer.org', 457, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (453, 1, 'Calvin', 'Martel', 'calvin.martel@sakilacustomer.org', 458, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (454, 2, 'Alex', 'Gresham', 'alex.gresham@sakilacustomer.org', 459, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (455, 2, 'Jon', 'Wiles', 'jon.wiles@sakilacustomer.org', 460, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (456, 2, 'Ronnie', 'Ricketts', 'ronnie.ricketts@sakilacustomer.org', 461, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (457, 2, 'Bill', 'Gavin', 'bill.gavin@sakilacustomer.org', 462, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (458, 1, 'Lloyd', 'Dowd', 'lloyd.dowd@sakilacustomer.org', 463, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (459, 1, 'Tommy', 'Collazo', 'tommy.collazo@sakilacustomer.org', 464, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (460, 1, 'Leon', 'Bostic', 'leon.bostic@sakilacustomer.org', 465, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (461, 1, 'Derek', 'Blakely', 'derek.blakely@sakilacustomer.org', 466, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (462, 2, 'Warren', 'Sherrod', 'warren.sherrod@sakilacustomer.org', 467, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (463, 2, 'Darrell', 'Power', 'darrell.power@sakilacustomer.org', 468, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (464, 1, 'Jerome', 'Kenyon', 'jerome.kenyon@sakilacustomer.org', 469, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (465, 1, 'Floyd', 'Gandy', 'floyd.gandy@sakilacustomer.org', 470, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (466, 1, 'Leo', 'Ebert', 'leo.ebert@sakilacustomer.org', 471, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (467, 2, 'Alvin', 'Deloach', 'alvin.deloach@sakilacustomer.org', 472, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (468, 1, 'Tim', 'Cary', 'tim.cary@sakilacustomer.org', 473, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (469, 2, 'Wesley', 'Bull', 'wesley.bull@sakilacustomer.org', 474, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (470, 1, 'Gordon', 'Allard', 'gordon.allard@sakilacustomer.org', 475, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (471, 1, 'Dean', 'Sauer', 'dean.sauer@sakilacustomer.org', 476, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (472, 1, 'Greg', 'Robins', 'greg.robins@sakilacustomer.org', 477, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (473, 2, 'Jorge', 'Olivares', 'jorge.olivares@sakilacustomer.org', 478, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (474, 2, 'Dustin', 'Gillette', 'dustin.gillette@sakilacustomer.org', 479, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (475, 2, 'Pedro', 'Chestnut', 'pedro.chestnut@sakilacustomer.org', 480, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (476, 1, 'Derrick', 'Bourque', 'derrick.bourque@sakilacustomer.org', 481, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (477, 1, 'Dan', 'Paine', 'dan.paine@sakilacustomer.org', 482, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (478, 1, 'Lewis', 'Lyman', 'lewis.lyman@sakilacustomer.org', 483, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (479, 1, 'Zachary', 'Hite', 'zachary.hite@sakilacustomer.org', 484, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (480, 1, 'Corey', 'Hauser', 'corey.hauser@sakilacustomer.org', 485, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (481, 1, 'Herman', 'Devore', 'herman.devore@sakilacustomer.org', 486, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (482, 1, 'Maurice', 'Crawley', 'maurice.crawley@sakilacustomer.org', 487, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (483, 2, 'Vernon', 'Chapa', 'vernon.chapa@sakilacustomer.org', 488, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (484, 1, 'Roberto', 'Vu', 'roberto.vu@sakilacustomer.org', 489, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (485, 1, 'Clyde', 'Tobias', 'clyde.tobias@sakilacustomer.org', 490, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (486, 1, 'Glen', 'Talbert', 'glen.talbert@sakilacustomer.org', 491, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (487, 2, 'Hector', 'Poindexter', 'hector.poindexter@sakilacustomer.org', 492, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (488, 2, 'Shane', 'Millard', 'shane.millard@sakilacustomer.org', 493, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (489, 1, 'Ricardo', 'Meador', 'ricardo.meador@sakilacustomer.org', 494, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (490, 1, 'Sam', 'Mcduffie', 'sam.mcduffie@sakilacustomer.org', 495, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (491, 2, 'Rick', 'Mattox', 'rick.mattox@sakilacustomer.org', 496, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (492, 2, 'Lester', 'Kraus', 'lester.kraus@sakilacustomer.org', 497, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (493, 1, 'Brent', 'Harkins', 'brent.harkins@sakilacustomer.org', 498, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (494, 2, 'Ramon', 'Choate', 'ramon.choate@sakilacustomer.org', 499, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (495, 2, 'Charlie', 'Bess', 'charlie.bess@sakilacustomer.org', 500, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (496, 2, 'Tyler', 'Wren', 'tyler.wren@sakilacustomer.org', 501, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (497, 2, 'Gilbert', 'Sledge', 'gilbert.sledge@sakilacustomer.org', 502, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (498, 1, 'Gene', 'Sanborn', 'gene.sanborn@sakilacustomer.org', 503, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (499, 2, 'Marc', 'Outlaw', 'marc.outlaw@sakilacustomer.org', 504, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (500, 1, 'Reginald', 'Kinder', 'reginald.kinder@sakilacustomer.org', 505, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (501, 1, 'Ruben', 'Geary', 'ruben.geary@sakilacustomer.org', 506, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (502, 1, 'Brett', 'Cornwell', 'brett.cornwell@sakilacustomer.org', 507, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (503, 1, 'Angel', 'Barclay', 'angel.barclay@sakilacustomer.org', 508, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (504, 1, 'Nathaniel', 'Adam', 'nathaniel.adam@sakilacustomer.org', 509, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (505, 1, 'Rafael', 'Abney', 'rafael.abney@sakilacustomer.org', 510, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (506, 2, 'Leslie', 'Seward', 'leslie.seward@sakilacustomer.org', 511, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (507, 2, 'Edgar', 'Rhoads', 'edgar.rhoads@sakilacustomer.org', 512, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (508, 2, 'Milton', 'Howland', 'milton.howland@sakilacustomer.org', 513, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (509, 1, 'Raul', 'Fortier', 'raul.fortier@sakilacustomer.org', 514, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (510, 2, 'Ben', 'Easter', 'ben.easter@sakilacustomer.org', 515, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (511, 1, 'Chester', 'Benner', 'chester.benner@sakilacustomer.org', 516, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (512, 1, 'Cecil', 'Vines', 'cecil.vines@sakilacustomer.org', 517, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (513, 2, 'Duane', 'Tubbs', 'duane.tubbs@sakilacustomer.org', 519, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (514, 2, 'Franklin', 'Troutman', 'franklin.troutman@sakilacustomer.org', 520, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (515, 1, 'Andre', 'Rapp', 'andre.rapp@sakilacustomer.org', 521, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (516, 2, 'Elmer', 'Noe', 'elmer.noe@sakilacustomer.org', 522, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (517, 2, 'Brad', 'Mccurdy', 'brad.mccurdy@sakilacustomer.org', 523, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (518, 1, 'Gabriel', 'Harder', 'gabriel.harder@sakilacustomer.org', 524, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (519, 2, 'Ron', 'Deluca', 'ron.deluca@sakilacustomer.org', 525, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (520, 2, 'Mitchell', 'Westmoreland', 'mitchell.westmoreland@sakilacustomer.org', 526, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (521, 2, 'Roland', 'South', 'roland.south@sakilacustomer.org', 527, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (522, 2, 'Arnold', 'Havens', 'arnold.havens@sakilacustomer.org', 528, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (523, 1, 'Harvey', 'Guajardo', 'harvey.guajardo@sakilacustomer.org', 529, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (525, 2, 'Adrian', 'Clary', 'adrian.clary@sakilacustomer.org', 531, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (526, 2, 'Karl', 'Seal', 'karl.seal@sakilacustomer.org', 532, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (527, 1, 'Cory', 'Meehan', 'cory.meehan@sakilacustomer.org', 533, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (528, 1, 'Claude', 'Herzog', 'claude.herzog@sakilacustomer.org', 534, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (529, 2, 'Erik', 'Guillen', 'erik.guillen@sakilacustomer.org', 535, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (530, 2, 'Darryl', 'Ashcraft', 'darryl.ashcraft@sakilacustomer.org', 536, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (531, 2, 'Jamie', 'Waugh', 'jamie.waugh@sakilacustomer.org', 537, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (532, 2, 'Neil', 'Renner', 'neil.renner@sakilacustomer.org', 538, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (533, 1, 'Jessie', 'Milam', 'jessie.milam@sakilacustomer.org', 539, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (534, 1, 'Christian', 'Jung', 'christian.jung@sakilacustomer.org', 540, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (535, 1, 'Javier', 'Elrod', 'javier.elrod@sakilacustomer.org', 541, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (536, 2, 'Fernando', 'Churchill', 'fernando.churchill@sakilacustomer.org', 542, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (537, 2, 'Clinton', 'Buford', 'clinton.buford@sakilacustomer.org', 543, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (538, 2, 'Ted', 'Breaux', 'ted.breaux@sakilacustomer.org', 544, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (539, 1, 'Mathew', 'Bolin', 'mathew.bolin@sakilacustomer.org', 545, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (540, 1, 'Tyrone', 'Asher', 'tyrone.asher@sakilacustomer.org', 546, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (541, 2, 'Darren', 'Windham', 'darren.windham@sakilacustomer.org', 547, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (542, 2, 'Lonnie', 'Tirado', 'lonnie.tirado@sakilacustomer.org', 548, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (543, 1, 'Lance', 'Pemberton', 'lance.pemberton@sakilacustomer.org', 549, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (544, 2, 'Cody', 'Nolen', 'cody.nolen@sakilacustomer.org', 550, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (545, 2, 'Julio', 'Noland', 'julio.noland@sakilacustomer.org', 551, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (546, 1, 'Kelly', 'Knott', 'kelly.knott@sakilacustomer.org', 552, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (547, 1, 'Kurt', 'Emmons', 'kurt.emmons@sakilacustomer.org', 553, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (548, 1, 'Allan', 'Cornish', 'allan.cornish@sakilacustomer.org', 554, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (549, 1, 'Nelson', 'Christenson', 'nelson.christenson@sakilacustomer.org', 555, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (550, 2, 'Guy', 'Brownlee', 'guy.brownlee@sakilacustomer.org', 556, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (551, 2, 'Clayton', 'Barbee', 'clayton.barbee@sakilacustomer.org', 557, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (552, 2, 'Hugh', 'Waldrop', 'hugh.waldrop@sakilacustomer.org', 558, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (553, 1, 'Max', 'Pitt', 'max.pitt@sakilacustomer.org', 559, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (554, 1, 'Dwayne', 'Olvera', 'dwayne.olvera@sakilacustomer.org', 560, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (555, 1, 'Dwight', 'Lombardi', 'dwight.lombardi@sakilacustomer.org', 561, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (556, 2, 'Armando', 'Gruber', 'armando.gruber@sakilacustomer.org', 562, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (557, 1, 'Felix', 'Gaffney', 'felix.gaffney@sakilacustomer.org', 563, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (558, 1, 'Jimmie', 'Eggleston', 'jimmie.eggleston@sakilacustomer.org', 564, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (559, 2, 'Everett', 'Banda', 'everett.banda@sakilacustomer.org', 565, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (560, 1, 'Jordan', 'Archuleta', 'jordan.archuleta@sakilacustomer.org', 566, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (561, 2, 'Ian', 'Still', 'ian.still@sakilacustomer.org', 567, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (562, 1, 'Wallace', 'Slone', 'wallace.slone@sakilacustomer.org', 568, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (563, 2, 'Ken', 'Prewitt', 'ken.prewitt@sakilacustomer.org', 569, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (564, 2, 'Bob', 'Pfeiffer', 'bob.pfeiffer@sakilacustomer.org', 570, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (565, 2, 'Jaime', 'Nettles', 'jaime.nettles@sakilacustomer.org', 571, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (566, 1, 'Casey', 'Mena', 'casey.mena@sakilacustomer.org', 572, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (567, 2, 'Alfredo', 'Mcadams', 'alfredo.mcadams@sakilacustomer.org', 573, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (568, 2, 'Alberto', 'Henning', 'alberto.henning@sakilacustomer.org', 574, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (569, 2, 'Dave', 'Gardiner', 'dave.gardiner@sakilacustomer.org', 575, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (570, 2, 'Ivan', 'Cromwell', 'ivan.cromwell@sakilacustomer.org', 576, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (571, 2, 'Johnnie', 'Chisholm', 'johnnie.chisholm@sakilacustomer.org', 577, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (572, 1, 'Sidney', 'Burleson', 'sidney.burleson@sakilacustomer.org', 578, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (573, 1, 'Byron', 'Box', 'byron.box@sakilacustomer.org', 579, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (574, 2, 'Julian', 'Vest', 'julian.vest@sakilacustomer.org', 580, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (575, 2, 'Isaac', 'Oglesby', 'isaac.oglesby@sakilacustomer.org', 581, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (576, 2, 'Morris', 'Mccarter', 'morris.mccarter@sakilacustomer.org', 582, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (577, 2, 'Clifton', 'Malcolm', 'clifton.malcolm@sakilacustomer.org', 583, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (578, 2, 'Willard', 'Lumpkin', 'willard.lumpkin@sakilacustomer.org', 584, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (579, 2, 'Daryl', 'Larue', 'daryl.larue@sakilacustomer.org', 585, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (580, 1, 'Ross', 'Grey', 'ross.grey@sakilacustomer.org', 586, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (581, 1, 'Virgil', 'Wofford', 'virgil.wofford@sakilacustomer.org', 587, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (582, 2, 'Andy', 'Vanhorn', 'andy.vanhorn@sakilacustomer.org', 588, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (583, 1, 'Marshall', 'Thorn', 'marshall.thorn@sakilacustomer.org', 589, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (584, 2, 'Salvador', 'Teel', 'salvador.teel@sakilacustomer.org', 590, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (585, 1, 'Perry', 'Swafford', 'perry.swafford@sakilacustomer.org', 591, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (586, 1, 'Kirk', 'Stclair', 'kirk.stclair@sakilacustomer.org', 592, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (587, 1, 'Sergio', 'Stanfield', 'sergio.stanfield@sakilacustomer.org', 593, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (588, 1, 'Marion', 'Ocampo', 'marion.ocampo@sakilacustomer.org', 594, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (589, 1, 'Tracy', 'Herrmann', 'tracy.herrmann@sakilacustomer.org', 595, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (590, 2, 'Seth', 'Hannon', 'seth.hannon@sakilacustomer.org', 596, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (591, 1, 'Kent', 'Arsenault', 'kent.arsenault@sakilacustomer.org', 597, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (592, 1, 'Terrance', 'Roush', 'terrance.roush@sakilacustomer.org', 598, 't', '2006-02-14', '2013-05-26 14:49:45.738', 0);
INSERT INTO customer VALUES (593, 2, 'Rene', 'Mcalister', 'rene.mcalister@sakilacustomer.org', 599, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (594, 1, 'Eduardo', 'Hiatt', 'eduardo.hiatt@sakilacustomer.org', 600, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (595, 1, 'Terrence', 'Gunderson', 'terrence.gunderson@sakilacustomer.org', 601, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (596, 1, 'Enrique', 'Forsythe', 'enrique.forsythe@sakilacustomer.org', 602, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (597, 1, 'Freddie', 'Duggan', 'freddie.duggan@sakilacustomer.org', 603, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (598, 1, 'Wade', 'Delvalle', 'wade.delvalle@sakilacustomer.org', 604, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO customer VALUES (599, 2, 'Austin', 'Cintron', 'austin.cintron@sakilacustomer.org', 605, 't', '2006-02-14', '2013-05-26 14:49:45.738', 1);
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (5,'1913 Hanoi Way', 'Nagasaki', 463, '35200', '28303384290', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (6,'1121 Loja Avenue', 'California', 449, '17886', '838635286649', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (7,'692 Joliet Street', 'Attika', 38, '83579', '448477190408', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (8,'1566 Inegl Manor', 'Mandalay', 349, '53561', '705814003527', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (9,'53 Idfu Parkway', 'Nantou', 361, '42399', '10655648674', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (12,'478 Joliet Way', 'Hamilton', 200, '77948', '657282285970', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (13,'613 Korolev Drive', 'Masqat', 329, '45844', '380657522649', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (14,'1531 Sal Drive', 'Esfahan', 162, '53628', '648856936185', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (15,'1542 Tarlac Parkway', 'Kanagawa', 440, '1027', '635297277345', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (16,'808 Bhopal Manor', 'Haryana', 582, '10672', '465887807014', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (17,'270 Amroha Parkway', 'Osmaniye', 384, '29610', '695479687538', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (18,'770 Bydgoszcz Avenue', 'California', 120, '16266', '517338314235', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (20,'360 Toulouse Parkway', 'England', 495, '54308', '949312333307', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (21,'270 Toulon Boulevard', 'Kalmykia', 156, '81766', '407752414682', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (22,'320 Brest Avenue', 'Kaduna', 252, '43331', '747791594069', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (27,'1780 Hino Boulevard', 'Liepaja', 303, '7716', '902731229323', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (28,'96 Tafuna Way', 'Crdoba', 128, '99865', '934730187245', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (32,'1425 Shikarpur Manor', 'Bihar', 346, '65599', '678220867005', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (33,'786 Aurora Avenue', 'Yamaguchi', 474, '65750', '18461860151', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (34,'1668 Anpolis Street', 'Taipei', 316, '50199', '525255540978', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (38,'61 Tama Street', 'Okayama', 284, '94065', '708403338270', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (39,'391 Callao Drive', 'Midi-Pyrnes', 544, '34021', '440512153169', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (41,'1440 Fukuyama Loop', 'Henan', 362, '47929', '912257250465', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (44,'671 Graz Street', 'Oriental', 353, '94399', '680768868518', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (45,'42 Brindisi Place', 'Yerevan', 586, '16744', '42384721397', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (46,'1632 Bislig Avenue', 'Nonthaburi', 394, '61117', '471675840679', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (47,'1447 Imus Way', 'Tahiti', 167, '48942', '539758313890', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (48,'1998 Halifax Drive', 'Lipetsk', 308, '76022', '177727722820', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (49,'1718 Valencia Street', 'Antofagasta', 27, '37359', '675292816413', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (51,'686 Garland Manor', 'Cear', 247, '52535', '69493378813', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (52,'909 Garland Manor', 'Tatarstan', 367, '69367', '705800322606', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (53,'725 Isesaki Place', 'Mekka', 237, '74428', '876295323994', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (54,'115 Hidalgo Parkway', 'Khartum', 379, '80168', '307703950263', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (55,'1135 Izumisano Parkway', 'California', 171, '48150', '171822533480', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (56,'939 Probolinggo Loop', 'Galicia', 1, '4166', '680428310138', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (57,'17 Kabul Boulevard', 'Chiba', 355, '38594', '697760867968', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (61,'943 Tokat Street', 'Vaduz', 560, '45428', '889318963672', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (62,'1114 Liepaja Street', 'Sarawak', 282, '69226', '212869228936', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (63,'1213 Ranchi Parkway', 'Karnataka', 350, '94352', '800024380485', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (64,'81 Hodeida Way', 'Rajasthan', 231, '55561', '250767749542', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (65,'915 Ponce Place', 'Basel-Stadt', 56, '83980', '1395251317', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (66,'1717 Guadalajara Lane', 'Missouri', 441, '85505', '914090181665', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (67,'1214 Hanoi Way', 'Nebraska', 306, '67055', '491001136577', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (68,'1966 Amroha Avenue', 'Sichuan', 139, '70385', '333489324603', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (69,'698 Otsu Street', 'Cayenne', 105, '71110', '409983924481', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (71,'1586 Guaruj Place', 'Hunan', 579, '5135', '947233365992', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (73,'1031 Daugavpils Parkway', 'Bchar', 63, '59025', '107137400143', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (74,'1124 Buenaventura Drive', 'Mekka', 13, '6856', '407733804223', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (79,'1551 Rampur Lane', 'Changhwa', 108, '72394', '251164340471', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (80,'602 Paarl Street', 'Pavlodar', 402, '98889', '896314772871', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (83,'586 Tete Way', 'Kanagawa', 256, '1079', '18581624103', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (85,'320 Baiyin Parkway', 'Mahajanga', 319, '37307', '223664661973', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (87,'929 Tallahassee Loop', 'Gauteng', 497, '74671', '800716535041', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (89,'1557 Ktahya Boulevard', 'England', 88, '88002', '720998247660', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (90,'870 Ashqelon Loop', 'Songkhla', 489, '84931', '135117278909', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (91,'1740 Portoviejo Avenue', 'Sucre', 480, '29932', '198123170793', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (92,'1942 Ciparay Parkway', 'Cheju', 113, '82624', '978987363654', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (94,'1952 Chatsworth Drive', 'Guangdong', 332, '25958', '991562402283', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (96,'984 Effon-Alaiye Avenue', 'Gois', 183, '17119', '132986892228', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (98,'152 Kitwe Parkway', 'Caraga', 82, '53182', '835433605312', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (99,'1697 Tanauan Lane', 'Punjab', 399, '22870', '4764773857', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (100,'1308 Arecibo Way', 'Georgia', 41, '30695', '6171054059', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (101,'1599 Plock Drive', 'Tete', 534, '71986', '817248913162', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (104,'1913 Kamakura Place', 'Lipetsk', 238, '97287', '942570536750', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (105,'733 Mandaluyong Place', 'Asir', 2, '77459', '196568435814', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (108,'1386 Yangor Avenue', 'Provence-Alpes-Cte', 543, '80720', '449216226468', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (112,'1002 Ahmadnagar Manor', 'Mxico', 213, '93026', '371490777743', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (114,'804 Elista Drive', 'Hubei', 159, '61069', '379804592943', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (121,'1967 Sincelejo Place', 'Gujarat', 176, '73644', '577812616052', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (122,'333 Goinia Way', 'Texas', 185, '78625', '909029256431', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (124,'241 Mosul Lane', 'Risaralda', 147, '76157', '765345144779', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (126,'1175 Tanauan Way', 'Lima', 305, '64615', '937222955822', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (128,'848 Tafuna Manor', 'Ktahya', 281, '45142', '614935229095', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (129,'569 Baicheng Lane', 'Gauteng', 85, '60304', '490211944645', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (131,'801 Hagonoy Drive', 'Smolensk', 484, '8439', '237426099212', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (133,'1854 Tieli Street', 'Shandong', 302, '15819', '509492324775', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (134,'758 Junan Lane', 'Gois', 190, '82639', '935448624185', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (138,'765 Southampton Drive', 'al-Qalyubiya', 421, '4285', '23712411567', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (139,'943 Johannesburg Avenue', 'Maharashtra', 417, '5892', '90921003005', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (140,'788 Atinsk Street', 'Karnataka', 211, '81691', '146497509724', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (141,'1749 Daxian Place', 'Gelderland', 29, '11044', '963369996279', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (143,'1029 Dzerzinsk Manor', 'Ynlin', 542, '57519', '33173584456', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (144,'1666 Beni-Mellal Place', 'Tennessee', 123, '13377', '9099941466', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (145,'928 Jaffna Loop', 'Hiroshima', 172, '93762', '581852137991', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (146,'483 Ljubertsy Parkway', 'Scotland', 149, '60562', '581174211853', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (148,'1027 Songkhla Manor', 'Minsk', 340, '30861', '563660187896', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (149,'999 Sanaa Loop', 'Gauteng', 491, '3439', '918032330119', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (150,'879 Newcastle Way', 'Michigan', 499, '90732', '206841104594', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (151,'1337 Lincoln Parkway', 'Saitama', 555, '99457', '597815221267', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (152,'1952 Pune Lane', 'Saint-Denis', 442, '92150', '354615066969', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (153,'782 Mosul Street', 'Massachusetts', 94, '25545', '885899703621', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (155,'1560 Jelets Boulevard', 'Shandong', 291, '77777', '189446090264', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (156,'1963 Moscow Place', 'Assam', 354, '64863', '761379480249', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (158,'798 Cianjur Avenue', 'Shanxi', 590, '76990', '499408708580', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (167,'1287 Xiangfan Boulevard', 'Gifu', 253, '57844', '819416131190', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (168,'842 Salzburg Lane', 'Adana', 529, '3313', '697151428760', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (169,'154 Tallahassee Loop', 'Xinxiang', 199, '62250', '935508855935', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (171,'1540 Wroclaw Drive', 'Maharashtra', 107, '62686', '182363341674', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (172,'475 Atinsk Way', 'Gansu', 240, '59571', '201705577290', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (173,'1294 Firozabad Drive', 'Jiangxi', 407, '70618', '161801569569', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (174,'1877 Ezhou Lane', 'Rajasthan', 550, '63337', '264541743403', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (175,'316 Uruapan Street', 'Perak', 223, '58194', '275788967899', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (176,'29 Pyongyang Loop', 'Batman', 58, '47753', '734780743462', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (177,'1010 Klerksdorp Way', 'Steiermark', 186, '6802', '493008546874', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (178,'1848 Salala Boulevard', 'Miranda', 373, '25220', '48265851133', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (179,'431 Xiangtan Avenue', 'Kerala', 18, '4854', '230250973122', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (180,'757 Rustenburg Avenue', 'Skikda', 483, '89668', '506134035434', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (181,'146 Johannesburg Way', 'Tamaulipas', 330, '54132', '953689007081', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (183,'1089 Iwatsuki Avenue', 'Kirov', 270, '35109', '866092335135', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (186,'533 al-Ayn Boulevard', 'California', 126, '8862', '662227486184', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (187,'1839 Szkesfehrvr Parkway', 'Gois', 317, '55709', '947468818183', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (188,'741 Ambattur Manor', 'Noord-Brabant', 438, '43310', '302590383819', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (191,'140 Chiayi Parkway', 'Sumy', 506, '38982', '855863906434', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (192,'1166 Changhwa Street', 'Caraga', 62, '58852', '650752094490', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (197,'447 Surakarta Loop', 'Nyanza', 271, '10428', '940830176580', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (198,'345 Oshawa Boulevard', 'Tokyo-to', 204, '32114', '104491201771', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (200,'1074 Binzhou Manor', 'Baden-Wrttemberg', 325, '36490', '331132568928', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (201,'817 Bradford Loop', 'Jiangsu', 109, '89459', '264286442804', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (204,'387 Mwene-Ditu Drive', 'Ahal', 35, '8073', '764477681869', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (205,'68 Molodetno Manor', 'Nordrhein-Westfalen', 575, '4662', '146640639760', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (206,'642 Nador Drive', 'Maharashtra', 77, '3924', '369050085652', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (208,'1215 Pyongyang Parkway', 'Usak', 557, '25238', '646237101779', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (211,'850 Salala Loop', 'Kitaa', 371, '10800', '403404780639', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (213,'43 Dadu Avenue', 'Rajasthan', 74, '4855', '95666951770', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (214,'751 Lima Loop', 'Aden', 7, '99405', '756460337785', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (215,'1333 Haldia Street', 'Jilin', 174, '82161', '408304391718', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (216,'660 Jedda Boulevard', 'Washington', 65, '25053', '168758068397', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (217,'1001 Miyakonojo Lane', 'Taizz', 518, '67924', '584316724815', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (218,'226 Brest Manor', 'California', 508, '2299', '785881412500', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (219,'1229 Valencia Parkway', 'Haskovo', 498, '99124', '352679173732', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (220,'1201 Qomsheh Manor', 'Gois', 28, '21464', '873492228462', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (222,'1168 Najafabad Parkway', 'Kabol', 251, '40301', '886649065861', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (225,'1926 Gingoog Street', 'Sisilia', 511, '22824', '469738825391', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (227,'1820 Maring Parkway', 'Punjab', 324, '88307', '99760893676', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (230,'201 Effon-Alaiye Way', 'Asuncin', 37, '64344', '684192903087', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (231,'430 Alessandria Loop', 'Saarland', 439, '47446', '669828224459', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (233,'356 Olomouc Manor', 'Gois', 26, '93323', '22326410776', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (234,'1256 Bislig Boulevard', 'Botosani', 86, '50598', '479007229460', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (236,'885 Yingkou Manor', 'Kaduna', 596, '31390', '588964509072', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (237,'1736 Cavite Place', 'Qina', 216, '98775', '431770603551', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (238,'346 Skikda Parkway', 'Hawalli', 233, '90628', '630424482919', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (242,'1964 Gijn Manor', 'Karnataka', 473, '14408', '918119601885', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (244,'1148 Saarbrcken Parkway', 'Fukushima', 226, '1921', '137773001988', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (245,'1103 Bilbays Parkway', 'Hubei', 578, '87660', '279979529227', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (246,'1246 Boksburg Parkway', 'Hebei', 422, '28349', '890283544295', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (247,'1483 Pathankot Street', 'Tucumn', 454, '37288', '686015532180', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (249,'300 Junan Street', 'Kyonggi', 553, '81314', '890289150158', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (251,'1473 Changhwa Parkway', 'Mxico', 124, '75933', '266798132374', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (252,'1309 Weifang Street', 'Florida', 520, '57338', '435785045362', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (253,'1760 Oshawa Manor', 'Tianjin', 535, '38140', '56257502250', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (256,'1497 Yuzhou Drive', 'England', 312, '3433', '246810237916', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (258,'752 Ondo Loop', 'Miyazaki', 338, '32474', '134673576619', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (261,'51 Laredo Avenue', 'Sagaing', 342, '68146', '884536620568', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (262,'771 Yaound Manor', 'Sofala', 64, '86768', '245477603573', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (263,'532 Toulon Street', 'Santiago', 460, '69517', '46871694740', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (267,'816 Cayenne Parkway', 'Manab', 414, '93629', '282874611748', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (269,'446 Kirovo-Tepetsk Lane', 'Osaka', 203, '19428', '303967439816', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (271,'1587 Loja Manor', 'Salzburg', 447, '5410', '621625204422', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (272,'1762 Paarl Parkway', 'Hunan', 298, '53928', '192459639410', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (273,'1519 Ilorin Place', 'Kerala', 395, '49298', '357445645426', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (274,'920 Kumbakonam Loop', 'California', 446, '75090', '685010736240', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (275,'906 Goinia Way', 'Wielkopolskie', 255, '83565', '701767622697', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (279,'1884 Shikarpur Avenue', 'Haryana', 263, '85548', '959949395183', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (280,'1980 Kamjanets-Podilskyi Street', 'Illinois', 404, '89502', '874337098891', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (281,'1944 Bamenda Way', 'Michigan', 573, '24645', '75975221996', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (283,'457 Tongliao Loop', 'Bursa', 222, '56254', '880756161823', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (286,'1308 Sumy Loop', 'Fujian', 175, '30657', '583021225407', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (287,'1405 Chisinau Place', 'Ponce', 411, '8160', '62781725285', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (288,'226 Halifax Street', 'Xinxiang', 277, '58492', '790651020929', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (293,'86 Higashiosaka Lane', 'Guanajuato', 563, '33768', '957128697225', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (295,'544 Tarsus Boulevard', 'Gurico', 562, '53145', '892523334', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (296,'1936 Cuman Avenue', 'Virginia', 433, '61195', '976798660411', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (297,'1192 Tongliao Street', 'Sharja', 470, '19065', '350970907017', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (298,'44 Najafabad Way', 'Baskimaa', 146, '61391', '96604821070', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (299,'32 Pudukkottai Lane', 'Ohio', 140, '38834', '967274728547', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (300,'661 Chisinau Lane', 'Pietari', 274, '8856', '816436065431', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (303,'898 Jining Lane', 'Pohjois-Pohjanmaa', 387, '40070', '161643343536', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (304,'1635 Kuwana Boulevard', 'Hiroshima', 205, '52137', '710603868323', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (306,'1883 Maikop Lane', 'Kaliningrad', 254, '68469', '96110042435', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (307,'1908 Gaziantep Place', 'Liaoning', 536, '58979', '108053751300', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (308,'687 Alessandria Parkway', 'Sanaa', 455, '57587', '407218522294', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (309,'827 Yuncheng Drive', 'Callao', 99, '79047', '504434452842', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (316,'746 Joliet Lane', 'Kursk', 286, '94878', '688485191923', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (317,'780 Kimberley Way', 'Tabuk', 515, '17032', '824396883951', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (318,'1774 Yaound Place', 'Hubei', 166, '91400', '613124286867', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (321,'651 Pathankot Loop', 'Maharashtra', 336, '59811', '139378397418', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (322,'1359 Zhoushan Parkway', 'Streymoyar', 545, '29763', '46568045367', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (323,'1769 Iwaki Lane', 'Kujawsko-Pomorskie', 97, '25787', '556100547674', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (324,'1145 Vilnius Manor', 'Mxico', 451, '73170', '674805712553', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (326,'470 Boksburg Street', 'Central', 81, '97960', '908029859266', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (334,'1816 Bydgoszcz Loop', 'Dhaka', 234, '64308', '965273813662', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (335,'587 Benguela Manor', 'Illinois', 42, '91590', '165450987037', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (337,'1838 Tabriz Lane', 'Dhaka', 143, '1195', '38988715447', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (338,'431 Szkesfehrvr Avenue', 'Baki', 48, '57828', '119501405123', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (339,'503 Sogamoso Loop', 'Sumqayit', 505, '49812', '834626715837', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (340,'507 Smolensk Loop', 'Sousse', 492, '22971', '80303246192', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (342,'124 al-Manama Way', 'Hiroshima', 382, '52368', '647899404952', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (344,'1909 Benguela Lane', 'Henan', 581, '19913', '624138001031', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (345,'68 Ponce Parkway', 'Hanoi', 201, '85926', '870635127812', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (346,'1217 Konotop Avenue', 'Gelderland', 151, '504', '718917251754', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (349,'1516 Escobar Drive', 'Tongatapu', 370, '46069', '64536069371', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (350,'1628 Nagareyama Lane', 'Central', 453, '60079', '20064292617', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (351,'1157 Nyeri Loop', 'Adygea', 320, '56380', '262744791493', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (352,'1673 Tangail Drive', 'Daugavpils', 137, '26857', '627924259271', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (353,'381 Kabul Way', 'Taipei', 209, '87272', '55477302294', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (356,'1378 Beira Loop', 'Krasnojarsk', 597, '40792', '840957664136', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (357,'1641 Changhwa Place', 'Nord-Ouest', 52, '37636', '256546485220', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (358,'1698 Southport Loop', 'Hidalgo', 393, '49009', '754358349853', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (360,'619 Hunuco Avenue', 'Shimane', 331, '81508', '142596392389', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (363,'604 Bern Place', 'Jharkhand', 429, '5373', '620719383725', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (365,'1009 Zanzibar Lane', 'Arecibo', 32, '64875', '102396298916', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (367,'1163 London Parkway', 'Par', 66, '6066', '675120358494', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (368,'1658 Jastrzebie-Zdrj Loop', 'Central', 372, '96584', '568367775448', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (369,'817 Laredo Avenue', 'Jalisco', 188, '77449', '151249681135', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (370,'1565 Tangail Manor', 'Okinawa', 377, '45750', '634445428822', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (371,'1912 Emeishan Drive', 'Balikesir', 50, '33050', '99883471275', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (373,'1922 Miraj Way', 'Esfahan', 356, '13203', '320471479776', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (374,'433 Florencia Street', 'Chihuahua', 250, '91330', '561729882725', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (375,'1049 Matamoros Parkway', 'Karnataka', 191, '69640', '960505250340', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (379,'1133 Rizhao Avenue', 'Pernambuco', 572, '2800', '600264533987', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (381,'1618 Olomouc Manor', 'Kurgan', 285, '26385', '96846695220', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (382,'220 Hidalgo Drive', 'Kermanshah', 265, '45298', '342720754566', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (384,'97 Mogiljov Lane', 'Gujarat', 73, '89294', '924815207181', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (388,'368 Hunuco Boulevard', 'Namibe', 360, '17165', '106439158941', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (389,'500 Lincoln Parkway', 'Jiangsu', 210, '95509', '550306965159', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (390,'102 Chapra Drive', 'Ibaragi', 521, '14073', '776031833752', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (391,'1793 Meixian Place', 'Hmelnytskyi', 258, '33535', '619966287415', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (392,'514 Ife Way', 'Shaba', 315, '69973', '900235712074', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (394,'753 Ilorin Avenue', 'Sichuan', 157, '3656', '464511145118', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (396,'767 Pyongyang Drive', 'Osaka', 229, '83536', '667736124769', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (398,'954 Lapu-Lapu Way', 'Moskova', 278, '8816', '737229003916', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (399,'331 Bydgoszcz Parkway', 'Asturia', 181, '966', '537374465982', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (401,'168 Cianjur Manor', 'Saitama', 228, '73824', '679095087143', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (402,'616 Hagonoy Avenue', 'Krasnojarsk', 39, '46043', '604177838256', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (404,'734 Bchar Place', 'Punjab', 375, '30586', '280578750435', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (405,'530 Lausanne Lane', 'Texas', 135, '11067', '775235029633', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (406,'454 Patiala Lane', 'Fukushima', 276, '13496', '794553031307', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (407,'1346 Mysore Drive', 'Bretagne', 92, '61507', '516647474029', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (409,'1266 Laredo Parkway', 'Saitama', 380, '7664', '1483365694', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (413,'692 Amroha Drive', 'Northern', 230, '35575', '359478883004', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (417,'791 Salinas Street', 'Punjab', 208, '40509', '129953030512', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (419,'397 Sunnyvale Avenue', 'Guanajuato', 19, '55566', '680851640676', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (420,'992 Klerksdorp Loop', 'Utrecht', 23, '33711', '855290087237', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (421,'966 Arecibo Loop', 'Sind', 134, '94018', '15273765306', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (424,'1948 Bayugan Parkway', 'Bihar', 264, '60622', '987306329957', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (425,'1866 al-Qatif Avenue', 'California', 155, '89420', '546793516940', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (428,'1727 Matamoros Place', 'Sawhaj', 465, '78813', '129673677866', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (429,'1269 Botosani Manor', 'Guangdong', 468, '47394', '736517327853', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (431,'1596 Acua Parkway', 'Jharkhand', 418, '70425', '157133457169', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (433,'1823 Hoshiarpur Lane', 'Komi', 510, '33191', '307133768620', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (434,'1404 Taguig Drive', 'Okayama', 547, '87212', '572068624538', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (436,'287 Cuautla Boulevard', 'Chuquisaca', 501, '72736', '82619513349', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (438,'596 Huixquilucan Place', 'Nampula', 351, '65892', '342709348083', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (440,'722 Bradford Lane', 'Shandong', 249, '90920', '746251338300', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (443,'1836 Korla Parkway', 'Copperbelt', 272, '55405', '689681677428', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (444,'231 Kaliningrad Place', 'Lombardia', 70, '57833', '575081026569', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (445,'495 Bhimavaram Lane', 'Maharashtra', 144, '3', '82088937724', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (446,'1924 Shimonoseki Drive', 'Batna', 59, '52625', '406784385440', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (449,'1289 Belm Boulevard', 'Tartumaa', 530, '88306', '237368926031', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (452,'207 Cuernavaca Loop', 'Tatarstan', 352, '52671', '782900030287', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (453,'319 Springs Loop', 'Baijeri', 160, '99552', '72524459905', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (456,'814 Simferopol Loop', 'Sinaloa', 154, '48745', '524567129902', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (458,'138 Caracas Boulevard', 'Zulia', 326, '16790', '974433019532', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (461,'1889 Valparai Way', 'Ziguinchor', 600, '75559', '670370974122', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (462,'1485 Bratislava Place', 'Illinois', 435, '83183', '924663855568', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (464,'76 Kermanshah Manor', 'Esfahan', 423, '23343', '762361821578', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (465,'734 Tanshui Avenue', 'Caquet', 170, '70664', '366776723320', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (467,'1621 Tongliao Avenue', 'Irkutsk', 558, '22173', '209342540247', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (469,'1872 Toulon Loop', 'OHiggins', 428, '7939', '928809465153', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (470,'1088 Ibirit Place', 'Jalisco', 595, '88502', '49084281333', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (471,'1322 Mosul Parkway', 'Shandong', 145, '95400', '268053970382', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (472,'1447 Chatsworth Place', 'Chihuahua', 129, '41545', '769370126331', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (473,'1257 Guadalajara Street', 'Karnataka', 78, '33599', '195337700615', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (474,'1469 Plock Lane', 'Galicia', 388, '95835', '622884741180', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (476,'270 Tambaram Parkway', 'Gauteng', 244, '9668', '248446668735', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (479,'1854 Okara Boulevard', 'Drenthe', 158, '42123', '131912793873', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (480,'421 Yaound Street', 'Sumy', 385, '11363', '726875628268', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (481,'1153 Allende Way', 'Qubec', 179, '20336', '856872225376', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (482,'808 Naala-Porto Parkway', 'England', 500, '41060', '553452430707', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (484,'98 Pyongyang Boulevard', 'Ohio', 11, '88749', '191958435142', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (485,'984 Novoterkassk Loop', 'Gaziantep', 180, '28165', '435118527255', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (486,'64 Korla Street', 'Mwanza', 347, '25145', '510383179153', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (488,'698 Jelets Boulevard', 'Denizli', 142, '2596', '975185523021', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (489,'1297 Alvorada Parkway', 'Ningxia', 587, '11839', '508348602835', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (490,'1909 Dayton Avenue', 'Guangdong', 469, '88513', '702955450528', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (492,'185 Mannheim Lane', 'Stavropol', 408, '23661', '589377568313', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (495,'656 Matamoros Drive', 'Boyac', 487, '19489', '17305839123', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (496,'775 ostka Drive', 'al-Daqahliya', 337, '22358', '171973024401', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (498,'319 Plock Parkway', 'Istanbul', 504, '26101', '854259976812', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (500,'362 Rajkot Lane', 'Gansu', 47, '98030', '962020153680', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (501,'1060 Tandil Lane', 'Shandong', 432, '72349', '211256301880', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (502,'1515 Korla Way', 'England', 589, '57197', '959467760895', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (506,'414 Mandaluyong Street', 'Lubelskie', 314, '16370', '52709222667', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (508,'496 Celaya Drive', 'Nagano', 552, '90797', '759586584889', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (509,'786 Matsue Way', 'Illinois', 245, '37469', '111177206479', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (512,'1269 Ipoh Avenue', 'Eskisehir', 163, '54674', '402630109080', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (514,'1747 Rustenburg Place', 'Bihar', 110, '51369', '442673923363', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (515,'886 Tonghae Place', 'Volgograd', 259, '19450', '711928348157', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (516,'1574 Goinia Boulevard', 'Heilongjiang', 502, '39529', '59634255214', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (517,'548 Uruapan Street', 'Ontario', 312, '35653', '879347453467', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (520,'1778 Gijn Manor', 'Hubei', 594, '35156', '288910576761', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (522,'1768 Udine Loop', 'Battambang', 60, '32347', '448876499197', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (523,'608 Birgunj Parkway', 'Taipei', 116, '400', '627425618482', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (525,'1949 Sanya Street', 'Gumma', 224, '61244', '132100972047', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (527,'1993 0 Loop', 'Liaoning', 588, '41214', '25865528181', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (532,'1427 Tabuk Place', 'Florida', 101, '31342', '214756839122', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (533,'556 Asuncin Way', 'Mogiljov', 339, '35364', '338244023543', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (534,'486 Ondo Parkway', 'Benguela', 67, '35202', '105882218332', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (537,'958 Sagamihara Lane', 'Mie', 287, '88408', '427274926505', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (539,'1332 Gaziantep Lane', 'Shandong', 80, '22813', '383353187467', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (541,'195 Ilorin Street', 'Chari-Baguirmi', 363, '49250', '8912935608', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (542,'193 Bhusawal Place', 'Kang-won', 539, '9750', '745267607502', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (543,'43 Vilnius Manor', 'Colorado', 42, '79814', '484500282381', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (544,'183 Haiphong Street', 'Jilin', 46, '69953', '488600270038', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (547,'379 Lublin Parkway', 'Toscana', 309, '74568', '921960450089', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (549,'454 Qinhuangdao Drive', 'Tadla-Azilal', 68, '25866', '786270036240', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (551,'182 Nukualofa Drive', 'Sumy', 275, '15414', '426346224043', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (552,'390 Wroclaw Way', 'Hainan', 462, '5753', '357593328658', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (553,'1421 Quilmes Lane', 'Ishikawa', 260, '19151', '135407755975', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (558,'904 Clarksville Drive', 'Zhejiang', 193, '52234', '955349440539', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (559,'1917 Kumbakonam Parkway', 'Vojvodina', 368, '11892', '698182547686', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (560,'1447 Imus Place', 'Gujarat', 426, '12905', '62127829280', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (561,'1497 Fengshan Drive', 'KwaZulu-Natal', 112, '63022', '368738360376', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (562,'869 Shikarpur Way', 'England', 496, '57380', '590764256785', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (563,'1059 Yuncheng Avenue', 'Vilna', 570, '47498', '107092893983', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (564,'505 Madiun Boulevard', 'Dolnoslaskie', 577, '97271', '970638808606', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (565,'1741 Hoshiarpur Boulevard', 'al-Sharqiya', 79, '22372', '855066328617', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (569,'1342 Abha Boulevard', 'Bukarest', 95, '10714', '997453607116', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (570,'415 Pune Avenue', 'Shandong', 580, '44274', '203202500108', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (571,'1746 Faaa Way', 'Huanuco', 214, '32515', '863080561151', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (572,'539 Hami Way', 'Tokat', 538, '52196', '525518075499', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (573,'1407 Surakarta Manor', 'Moskova', 466, '33224', '324346485054', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (575,'1052 Pathankot Avenue', 'Sichuan', 299, '77397', '128499386727', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (578,'1405 Hagonoy Avenue', 'Slaskie', 133, '86587', '867287719310', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (580,'923 Tangail Boulevard', 'Tokyo-to', 10, '33384', '315528269898', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (581,'186 Skikda Lane', 'Morelos', 131, '89422', '14465669789', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (582,'1568 Celaya Parkway', 'Kaohsiung', 168, '34750', '278669994384', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (583,'1489 Kakamigahara Lane', 'Taipei', 526, '98883', '29341849811', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (584,'1819 Alessandria Loop', 'Campeche', 103, '53829', '377633994405', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (585,'1208 Tama Loop', 'Ninawa', 344, '73605', '954786054144', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (587,'760 Miyakonojo Drive', 'Guerrero', 246, '64682', '294449058179', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (588,'966 Asuncin Way', 'Hidalgo', 212, '62703', '995527378381', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (589,'1584 Ljubertsy Lane', 'England', 494, '22954', '285710089439', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (590,'247 Jining Parkway', 'Banjul', 54, '53446', '170115379190', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (593,'1402 Zanzibar Boulevard', 'Guanajuato', 106, '71102', '387448063440', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (594,'1464 Kursk Parkway', 'Shandong', 574, '17381', '338758048786', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (595,'1074 Sanaa Parkway', 'Loja', 311, '22474', '154124128457', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (596,'1759 Niznekamsk Avenue', 'al-Manama', 14, '39414', '864392582257', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (598,'42 Fontana Avenue', 'Fejr', 512, '14684', '437829801725', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (599,'1895 Zhezqazghan Drive', 'California', 177, '36693', '137809746111', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (601,'844 Bucuresti Place', 'Liaoning', 242, '36603', '935952366111', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (603,'1103 Quilmes Boulevard', 'Piura', 503, '52137', '644021380889', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (604,'1331 Usak Boulevard', 'Vaud', 296, '61960', '145308717464', '2006-02-15 09:45:30');
INSERT INTO address (address_id, address, district, city_id, postal_code, phone, last_update) VALUES (605,'1325 Fukuyama Street', 'Heilongjiang', 537, '27107', '288241215394', '2006-02-15 09:45:30');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (1,'A Corua (La Corua)', 87, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (2,'Abha', 82, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (3,'Abu Dhabi', 101, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (4,'Acua', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (5,'Adana', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (6,'Addis Abeba', 31, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (7,'Aden', 107, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (8,'Adoni', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (9,'Ahmadnagar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (10,'Akishima', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (11,'Akron', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (12,'al-Ayn', 101, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (13,'al-Hawiya', 82, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (14,'al-Manama', 11, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (15,'al-Qadarif', 89, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (16,'al-Qatif', 82, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (17,'Alessandria', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (18,'Allappuzha (Alleppey)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (19,'Allende', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (20,'Almirante Brown', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (21,'Alvorada', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (22,'Ambattur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (23,'Amersfoort', 67, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (24,'Amroha', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (25,'Angra dos Reis', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (26,'Anpolis', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (27,'Antofagasta', 22, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (28,'Aparecida de Goinia', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (29,'Apeldoorn', 67, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (30,'Araatuba', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (31,'Arak', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (32,'Arecibo', 77, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (33,'Arlington', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (34,'Ashdod', 48, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (35,'Ashgabat', 98, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (36,'Ashqelon', 48, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (37,'Asuncin', 73, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (38,'Athenai', 39, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (39,'Atinsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (40,'Atlixco', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (41,'Augusta-Richmond County', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (42,'Aurora', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (43,'Avellaneda', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (44,'Bag', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (45,'Baha Blanca', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (46,'Baicheng', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (47,'Baiyin', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (48,'Baku', 10, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (49,'Balaiha', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (50,'Balikesir', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (51,'Balurghat', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (52,'Bamenda', 19, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (53,'Bandar Seri Begawan', 16, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (54,'Banjul', 37, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (55,'Barcelona', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (56,'Basel', 91, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (57,'Bat Yam', 48, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (58,'Batman', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (59,'Batna', 2, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (60,'Battambang', 18, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (61,'Baybay', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (62,'Bayugan', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (63,'Bchar', 2, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (64,'Beira', 63, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (65,'Bellevue', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (66,'Belm', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (67,'Benguela', 4, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (68,'Beni-Mellal', 62, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (69,'Benin City', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (70,'Bergamo', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (71,'Berhampore (Baharampur)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (72,'Bern', 91, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (73,'Bhavnagar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (74,'Bhilwara', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (75,'Bhimavaram', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (76,'Bhopal', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (77,'Bhusawal', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (78,'Bijapur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (79,'Bilbays', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (80,'Binzhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (81,'Birgunj', 66, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (82,'Bislig', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (83,'Blumenau', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (84,'Boa Vista', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (85,'Boksburg', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (86,'Botosani', 78, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (87,'Botshabelo', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (88,'Bradford', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (89,'Braslia', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (90,'Bratislava', 84, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (91,'Brescia', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (92,'Brest', 34, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (93,'Brindisi', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (94,'Brockton', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (95,'Bucuresti', 78, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (96,'Buenaventura', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (97,'Bydgoszcz', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (98,'Cabuyao', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (99,'Callao', 74, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (100,'Cam Ranh', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (101,'Cape Coral', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (102,'Caracas', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (103,'Carmen', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (104,'Cavite', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (105,'Cayenne', 35, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (106,'Celaya', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (107,'Chandrapur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (108,'Changhwa', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (109,'Changzhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (110,'Chapra', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (111,'Charlotte Amalie', 106, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (112,'Chatsworth', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (113,'Cheju', 86, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (114,'Chiayi', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (115,'Chisinau', 61, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (116,'Chungho', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (117,'Cianjur', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (118,'Ciomas', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (119,'Ciparay', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (120,'Citrus Heights', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (121,'Citt del Vaticano', 41, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (122,'Ciudad del Este', 73, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (123,'Clarksville', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (124,'Coacalco de Berriozbal', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (125,'Coatzacoalcos', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (126,'Compton', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (127,'Coquimbo', 22, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (128,'Crdoba', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (129,'Cuauhtmoc', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (130,'Cuautla', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (131,'Cuernavaca', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (132,'Cuman', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (133,'Czestochowa', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (134,'Dadu', 72, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (135,'Dallas', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (136,'Datong', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (137,'Daugavpils', 54, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (138,'Davao', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (139,'Daxian', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (140,'Dayton', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (141,'Deba Habe', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (142,'Denizli', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (143,'Dhaka', 12, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (144,'Dhule (Dhulia)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (145,'Dongying', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (146,'Donostia-San Sebastin', 87, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (147,'Dos Quebradas', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (148,'Duisburg', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (149,'Dundee', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (150,'Dzerzinsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (151,'Ede', 67, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (152,'Effon-Alaiye', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (153,'El Alto', 14, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (154,'El Fuerte', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (155,'El Monte', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (156,'Elista', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (157,'Emeishan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (158,'Emmen', 67, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (159,'Enshi', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (160,'Erlangen', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (161,'Escobar', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (162,'Esfahan', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (163,'Eskisehir', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (164,'Etawah', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (165,'Ezeiza', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (166,'Ezhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (167,'Faaa', 36, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (168,'Fengshan', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (169,'Firozabad', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (170,'Florencia', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (171,'Fontana', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (172,'Fukuyama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (173,'Funafuti', 99, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (174,'Fuyu', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (175,'Fuzhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (176,'Gandhinagar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (177,'Garden Grove', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (178,'Garland', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (179,'Gatineau', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (180,'Gaziantep', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (181,'Gijn', 87, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (182,'Gingoog', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (183,'Goinia', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (184,'Gorontalo', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (185,'Grand Prairie', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (186,'Graz', 9, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (187,'Greensboro', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (188,'Guadalajara', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (189,'Guaruj', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (190,'guas Lindas de Gois', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (191,'Gulbarga', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (192,'Hagonoy', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (193,'Haining', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (194,'Haiphong', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (195,'Haldia', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (196,'Halifax', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (197,'Halisahar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (198,'Halle/Saale', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (199,'Hami', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (200,'Hamilton', 68, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (201,'Hanoi', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (202,'Hidalgo', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (203,'Higashiosaka', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (204,'Hino', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (205,'Hiroshima', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (206,'Hodeida', 107, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (207,'Hohhot', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (208,'Hoshiarpur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (209,'Hsichuh', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (210,'Huaian', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (211,'Hubli-Dharwad', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (212,'Huejutla de Reyes', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (213,'Huixquilucan', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (214,'Hunuco', 74, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (215,'Ibirit', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (216,'Idfu', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (217,'Ife', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (218,'Ikerre', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (219,'Iligan', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (220,'Ilorin', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (221,'Imus', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (222,'Inegl', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (223,'Ipoh', 59, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (224,'Isesaki', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (225,'Ivanovo', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (226,'Iwaki', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (227,'Iwakuni', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (228,'Iwatsuki', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (229,'Izumisano', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (230,'Jaffna', 88, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (231,'Jaipur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (232,'Jakarta', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (233,'Jalib al-Shuyukh', 53, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (234,'Jamalpur', 12, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (235,'Jaroslavl', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (236,'Jastrzebie-Zdrj', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (237,'Jedda', 82, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (238,'Jelets', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (239,'Jhansi', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (240,'Jinchang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (241,'Jining', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (242,'Jinzhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (243,'Jodhpur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (244,'Johannesburg', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (245,'Joliet', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (246,'Jos Azueta', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (247,'Juazeiro do Norte', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (248,'Juiz de Fora', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (249,'Junan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (250,'Jurez', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (251,'Kabul', 1, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (252,'Kaduna', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (253,'Kakamigahara', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (254,'Kaliningrad', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (255,'Kalisz', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (256,'Kamakura', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (257,'Kamarhati', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (258,'Kamjanets-Podilskyi', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (259,'Kamyin', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (260,'Kanazawa', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (261,'Kanchrapara', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (262,'Kansas City', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (263,'Karnal', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (264,'Katihar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (265,'Kermanshah', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (266,'Kilis', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (267,'Kimberley', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (268,'Kimchon', 86, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (269,'Kingstown', 81, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (270,'Kirovo-Tepetsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (271,'Kisumu', 52, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (272,'Kitwe', 109, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (273,'Klerksdorp', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (274,'Kolpino', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (275,'Konotop', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (276,'Koriyama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (277,'Korla', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (278,'Korolev', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (279,'Kowloon and New Kowloon', 42, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (280,'Kragujevac', 108, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (281,'Ktahya', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (282,'Kuching', 59, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (283,'Kumbakonam', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (284,'Kurashiki', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (285,'Kurgan', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (286,'Kursk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (287,'Kuwana', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (288,'La Paz', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (289,'La Plata', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (290,'La Romana', 27, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (291,'Laiwu', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (292,'Lancaster', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (293,'Laohekou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (294,'Lapu-Lapu', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (295,'Laredo', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (296,'Lausanne', 91, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (297,'Le Mans', 34, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (298,'Lengshuijiang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (299,'Leshan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (300,'Lethbridge', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (301,'Lhokseumawe', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (302,'Liaocheng', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (303,'Liepaja', 54, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (304,'Lilongwe', 58, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (305,'Lima', 74, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (306,'Lincoln', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (307,'Linz', 9, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (308,'Lipetsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (309,'Livorno', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (310,'Ljubertsy', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (311,'Loja', 28, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (312,'London', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (313,'New London', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (314,'Lublin', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (315,'Lubumbashi', 25, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (316,'Lungtan', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (317,'Luzinia', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (318,'Madiun', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (319,'Mahajanga', 57, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (320,'Maikop', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (321,'Malm', 90, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (322,'Manchester', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (323,'Mandaluyong', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (324,'Mandi Bahauddin', 72, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (325,'Mannheim', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (326,'Maracabo', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (327,'Mardan', 72, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (328,'Maring', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (329,'Masqat', 71, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (330,'Matamoros', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (331,'Matsue', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (332,'Meixian', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (333,'Memphis', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (334,'Merlo', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (335,'Mexicali', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (336,'Miraj', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (337,'Mit Ghamr', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (338,'Miyakonojo', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (339,'Mogiljov', 13, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (340,'Molodetno', 13, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (341,'Monclova', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (342,'Monywa', 64, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (343,'Moscow', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (344,'Mosul', 47, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (345,'Mukateve', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (346,'Munger (Monghyr)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (347,'Mwanza', 93, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (348,'Mwene-Ditu', 25, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (349,'Myingyan', 64, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (350,'Mysore', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (351,'Naala-Porto', 63, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (352,'Nabereznyje Telny', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (353,'Nador', 62, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (354,'Nagaon', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (355,'Nagareyama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (356,'Najafabad', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (357,'Naju', 86, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (358,'Nakhon Sawan', 94, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (359,'Nam Dinh', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (360,'Namibe', 4, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (361,'Nantou', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (362,'Nanyang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (363,'NDjamna', 21, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (364,'Newcastle', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (365,'Nezahualcyotl', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (366,'Nha Trang', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (367,'Niznekamsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (368,'Novi Sad', 108, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (369,'Novoterkassk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (370,'Nukualofa', 95, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (371,'Nuuk', 40, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (372,'Nyeri', 52, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (373,'Ocumare del Tuy', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (374,'Ogbomosho', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (375,'Okara', 72, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (376,'Okayama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (377,'Okinawa', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (378,'Olomouc', 26, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (379,'Omdurman', 89, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (380,'Omiya', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (381,'Ondo', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (382,'Onomichi', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (383,'Oshawa', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (384,'Osmaniye', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (385,'ostka', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (386,'Otsu', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (387,'Oulu', 33, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (388,'Ourense (Orense)', 87, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (389,'Owo', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (390,'Oyo', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (391,'Ozamis', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (392,'Paarl', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (393,'Pachuca de Soto', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (394,'Pak Kret', 94, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (395,'Palghat (Palakkad)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (396,'Pangkal Pinang', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (397,'Papeete', 36, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (398,'Parbhani', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (399,'Pathankot', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (400,'Patiala', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (401,'Patras', 39, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (402,'Pavlodar', 51, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (403,'Pemalang', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (404,'Peoria', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (405,'Pereira', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (406,'Phnom Penh', 18, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (407,'Pingxiang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (408,'Pjatigorsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (409,'Plock', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (410,'Po', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (411,'Ponce', 77, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (412,'Pontianak', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (413,'Poos de Caldas', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (414,'Portoviejo', 28, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (415,'Probolinggo', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (416,'Pudukkottai', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (417,'Pune', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (418,'Purnea (Purnia)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (419,'Purwakarta', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (420,'Pyongyang', 70, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (421,'Qalyub', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (422,'Qinhuangdao', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (423,'Qomsheh', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (424,'Quilmes', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (425,'Rae Bareli', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (426,'Rajkot', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (427,'Rampur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (428,'Rancagua', 22, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (429,'Ranchi', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (430,'Richmond Hill', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (431,'Rio Claro', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (432,'Rizhao', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (433,'Roanoke', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (434,'Robamba', 28, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (435,'Rockford', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (436,'Ruse', 17, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (437,'Rustenburg', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (438,'s-Hertogenbosch', 67, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (439,'Saarbrcken', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (440,'Sagamihara', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (441,'Saint Louis', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (442,'Saint-Denis', 79, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (443,'Sal', 62, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (444,'Salala', 71, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (445,'Salamanca', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (446,'Salinas', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (447,'Salzburg', 9, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (448,'Sambhal', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (449,'San Bernardino', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (450,'San Felipe de Puerto Plata', 27, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (451,'San Felipe del Progreso', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (452,'San Juan Bautista Tuxtepec', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (453,'San Lorenzo', 73, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (454,'San Miguel de Tucumn', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (455,'Sanaa', 107, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (456,'Santa Brbara dOeste', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (457,'Santa F', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (458,'Santa Rosa', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (459,'Santiago de Compostela', 87, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (460,'Santiago de los Caballeros', 27, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (461,'Santo Andr', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (462,'Sanya', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (463,'Sasebo', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (464,'Satna', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (465,'Sawhaj', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (466,'Serpuhov', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (467,'Shahr-e Kord', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (468,'Shanwei', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (469,'Shaoguan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (470,'Sharja', 101, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (471,'Shenzhen', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (472,'Shikarpur', 72, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (473,'Shimoga', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (474,'Shimonoseki', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (475,'Shivapuri', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (476,'Shubra al-Khayma', 29, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (477,'Siegen', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (478,'Siliguri (Shiliguri)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (479,'Simferopol', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (480,'Sincelejo', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (481,'Sirjan', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (482,'Sivas', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (483,'Skikda', 2, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (484,'Smolensk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (485,'So Bernardo do Campo', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (486,'So Leopoldo', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (487,'Sogamoso', 24, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (488,'Sokoto', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (489,'Songkhla', 94, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (490,'Sorocaba', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (491,'Soshanguve', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (492,'Sousse', 96, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (493,'South Hill', 5, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (494,'Southampton', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (495,'Southend-on-Sea', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (496,'Southport', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (497,'Springs', 85, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (498,'Stara Zagora', 17, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (499,'Sterling Heights', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (500,'Stockport', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (501,'Sucre', 14, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (502,'Suihua', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (503,'Sullana', 74, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (504,'Sultanbeyli', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (505,'Sumqayit', 10, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (506,'Sumy', 100, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (507,'Sungai Petani', 59, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (508,'Sunnyvale', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (509,'Surakarta', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (510,'Syktyvkar', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (511,'Syrakusa', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (512,'Szkesfehrvr', 43, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (513,'Tabora', 93, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (514,'Tabriz', 46, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (515,'Tabuk', 82, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (516,'Tafuna', 3, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (517,'Taguig', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (518,'Taizz', 107, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (519,'Talavera', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (520,'Tallahassee', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (521,'Tama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (522,'Tambaram', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (523,'Tanauan', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (524,'Tandil', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (525,'Tangail', 12, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (526,'Tanshui', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (527,'Tanza', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (528,'Tarlac', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (529,'Tarsus', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (530,'Tartu', 30, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (531,'Teboksary', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (532,'Tegal', 45, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (533,'Tel Aviv-Jaffa', 48, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (534,'Tete', 63, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (535,'Tianjin', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (536,'Tiefa', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (537,'Tieli', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (538,'Tokat', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (539,'Tonghae', 86, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (540,'Tongliao', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (541,'Torren', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (542,'Touliu', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (543,'Toulon', 34, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (544,'Toulouse', 34, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (545,'Trshavn', 32, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (546,'Tsaotun', 92, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (547,'Tsuyama', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (548,'Tuguegarao', 75, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (549,'Tychy', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (550,'Udaipur', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (551,'Udine', 49, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (552,'Ueda', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (553,'Uijongbu', 86, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (554,'Uluberia', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (555,'Urawa', 50, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (556,'Uruapan', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (557,'Usak', 97, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (558,'Usolje-Sibirskoje', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (559,'Uttarpara-Kotrung', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (560,'Vaduz', 55, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (561,'Valencia', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (562,'Valle de la Pascua', 104, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (563,'Valle de Santiago', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (564,'Valparai', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (565,'Vancouver', 20, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (566,'Varanasi (Benares)', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (567,'Vicente Lpez', 6, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (568,'Vijayawada', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (569,'Vila Velha', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (570,'Vilnius', 56, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (571,'Vinh', 105, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (572,'Vitria de Santo Anto', 15, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (573,'Warren', 103, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (574,'Weifang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (575,'Witten', 38, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (576,'Woodridge', 8, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (577,'Wroclaw', 76, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (578,'Xiangfan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (579,'Xiangtan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (580,'Xintai', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (581,'Xinxiang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (582,'Yamuna Nagar', 44, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (583,'Yangor', 65, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (584,'Yantai', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (585,'Yaound', 19, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (586,'Yerevan', 7, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (587,'Yinchuan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (588,'Yingkou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (589,'York', 102, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (590,'Yuncheng', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (591,'Yuzhou', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (592,'Zalantun', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (593,'Zanzibar', 93, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (594,'Zaoyang', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (595,'Zapopan', 60, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (596,'Zaria', 69, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (597,'Zeleznogorsk', 80, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (598,'Zhezqazghan', 51, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (599,'Zhoushan', 23, '2006-02-15 09:45:25 ');
INSERT INTO city (city_id, city, country_id, last_update) VALUES (600,'Ziguinchor', 83, '2006-02-15 09:45:25 ');
INSERT INTO country (country_id, country, last_update) VALUES (1,'Afghanistan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (2,'Algeria', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (3,'American Samoa', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (4,'Angola', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (5,'Anguilla', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (6,'Argentina', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (7,'Armenia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (8,'Australia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (9,'Austria', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (10,'Azerbaijan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (11,'Bahrain', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (12,'Bangladesh', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (13,'Belarus', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (14,'Bolivia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (15,'Brazil', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (16,'Brunei', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (17,'Bulgaria', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (18,'Cambodia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (19,'Cameroon', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (20,'Canada', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (21,'Chad', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (22,'Chile', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (23,'China', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (24,'Colombia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (25,'Congo, The Democratic Republic of the', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (26,'Czech Republic', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (27,'Dominican Republic', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (28,'Ecuador', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (29,'Egypt', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (30,'Estonia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (31,'Ethiopia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (32,'Faroe Islands', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (33,'Finland', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (34,'France', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (35,'French Guiana', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (36,'French Polynesia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (37,'Gambia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (38,'Germany', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (39,'Greece', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (40,'Greenland', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (41,'Holy See (Vatican City State)', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (42,'Hong Kong', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (43,'Hungary', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (44,'India', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (45,'Indonesia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (46,'Iran', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (47,'Iraq', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (48,'Israel', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (49,'Italy', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (50,'Japan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (51,'Kazakstan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (52,'Kenya', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (53,'Kuwait', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (54,'Latvia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (55,'Liechtenstein', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (56,'Lithuania', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (57,'Madagascar', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (58,'Malawi', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (59,'Malaysia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (60,'Mexico', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (61,'Moldova', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (62,'Morocco', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (63,'Mozambique', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (64,'Myanmar', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (65,'Nauru', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (66,'Nepal', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (67,'Netherlands', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (68,'New Zealand', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (69,'Nigeria', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (70,'North Korea', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (71,'Oman', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (72,'Pakistan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (73,'Paraguay', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (74,'Peru', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (75,'Philippines', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (76,'Poland', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (77,'Puerto Rico', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (78,'Romania', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (79,'Runion', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (80,'Russian Federation', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (81,'Saint Vincent and the Grenadines', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (82,'Saudi Arabia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (83,'Senegal', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (84,'Slovakia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (85,'South Africa', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (86,'South Korea', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (87,'Spain', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (88,'Sri Lanka', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (89,'Sudan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (90,'Sweden', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (91,'Switzerland', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (92,'Taiwan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (93,'Tanzania', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (94,'Thailand', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (95,'Tonga', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (96,'Tunisia', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (97,'Turkey', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (98,'Turkmenistan', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (99,'Tuvalu', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (100,'Ukraine', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (101,'United Arab Emirates', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (102,'United Kingdom', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (103,'United States', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (104,'Venezuela', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (105,'Vietnam', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (106,'Virgin Islands, U.S.', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (107,'Yemen', '2006-02-15 09:44:00 ');
INSERT INTO country (country_id, country, last_update) VALUES (108,'Yugoslavia', '2006-02-15 09:44:00 ');
SELECT cu.customer_id AS id,
    cu.first_name || ' ' || cu.last_name AS name,
    a.address,
    a.postal_code AS "zip code",
    a.phone,
    city.city,
    country.country,
        CASE
            WHEN cu.activebool THEN 'active'
            ELSE ''
        END AS notes,
    cu.store_id AS sid
   FROM customer cu
     INNER JOIN address a USING (address_id)
     INNER JOIN city USING (city_id)
     INNER JOIN country USING (country_id)
     ORDER BY address, city, country, id;
 id  |         name         |             address             | zip code |    phone     |            city            |                country                | notes  | sid 
-----+----------------------+---------------------------------+----------+--------------+----------------------------+---------------------------------------+--------+-----
 213 | Gina Williamson      | 1001 Miyakonojo Lane            | 67924    | 584316724815 | Taizz                      | Yemen                                 | active |   1
 108 | Tracy Cole           | 1002 Ahmadnagar Manor           | 93026    | 371490777743 | Huixquilucan               | Mexico                                | active |   1
 360 | Ralph Madrigal       | 1009 Zanzibar Lane              | 64875    | 102396298916 | Arecibo                    | Puerto Rico                           | active |   2
 173 | Audrey Ray           | 1010 Klerksdorp Way             | 6802     | 493008546874 | Graz                       | Austria                               | active |   1
 144 | Clara Shaw           | 1027 Songkhla Manor             | 30861    | 563660187896 | Molodetno                  | Belarus                               | active |   1
 139 | Amber Dixon          | 1029 Dzerzinsk Manor            | 57519    | 33173584456  | Touliu                     | Taiwan                                | active |   1
 385 | Phillip Holm         | 102 Chapra Drive                | 14073    | 776031833752 | Tama                       | Japan                                 | active |   1
  69 | Judy Gray            | 1031 Daugavpils Parkway         | 59025    | 107137400143 | Bchar                      | Algeria                               | active |   2
 370 | Wayne Truong         | 1049 Matamoros Parkway          | 69640    | 960505250340 | Gulbarga                   | India                                 | active |   2
 569 | Dave Gardiner        | 1052 Pathankot Avenue           | 77397    | 128499386727 | Leshan                     | China                                 | active |   2
 557 | Felix Gaffney        | 1059 Yuncheng Avenue            | 47498    | 107092893983 | Vilnius                    | Lithuania                             | active |   1
 496 | Tyler Wren           | 1060 Tandil Lane                | 72349    | 211256301880 | Rizhao                     | China                                 | active |   2
 196 | Alma Austin          | 1074 Binzhou Manor              | 36490    | 331132568928 | Mannheim                   | Germany                               | active |   1
 589 | Tracy Herrmann       | 1074 Sanaa Parkway              | 22474    | 154124128457 | Loja                       | Ecuador                               | active |   1
 465 | Floyd Gandy          | 1088 Ibirit Place               | 88502    | 49084281333  | Zapopan                    | Mexico                                | active |   1
 179 | Dana Hart            | 1089 Iwatsuki Avenue            | 35109    | 866092335135 | Kirovo-Tepetsk             | Russian Federation                    | active |   1
 241 | Heidi Larson         | 1103 Bilbays Parkway            | 87660    | 279979529227 | Xiangfan                   | China                                 | active |   2
 597 | Freddie Duggan       | 1103 Quilmes Boulevard          | 52137    | 644021380889 | Sullana                    | Peru                                  | active |   1
  58 | Jean Bell            | 1114 Liepaja Street             | 69226    | 212869228936 | Kuching                    | Malaysia                              | active |   1
   2 | Patricia Johnson     | 1121 Loja Avenue                | 17886    | 838635286649 | San Bernardino             | United States                         | active |   1
  70 | Christina Ramirez    | 1124 Buenaventura Drive         | 6856     | 407733804223 | al-Hawiya                  | Saudi Arabia                          | active |   2
 374 | Jeremy Hurtado       | 1133 Rizhao Avenue              | 2800     | 600264533987 | Vitria de Santo Anto       | Brazil                                | active |   2
  51 | Alice Stewart        | 1135 Izumisano Parkway          | 48150    | 171822533480 | Fontana                    | United States                         | active |   1
 319 | Ronald Weiner        | 1145 Vilnius Manor              | 73170    | 674805712553 | San Felipe del Progreso    | Mexico                                | active |   2
 240 | Marlene Welch        | 1148 Saarbrcken Parkway         | 1921     | 137773001988 | Iwaki                      | Japan                                 | active |   1
 476 | Derrick Bourque      | 1153 Allende Way                | 20336    | 856872225376 | Gatineau                   | Canada                                | active |   1
 346 | Arthur Simpkins      | 1157 Nyeri Loop                 | 56380    | 262744791493 | Maikop                     | Russian Federation                    | active |   1
  50 | Diane Collins        | 115 Hidalgo Parkway             | 80168    | 307703950263 | Omdurman                   | Sudan                                 | active |   1
 362 | Nicholas Barfield    | 1163 London Parkway             | 6066     | 675120358494 | Belm                       | Brazil                                | active |   1
 188 | Melanie Armstrong    | 1166 Changhwa Street            | 58852    | 650752094490 | Bayugan                    | Philippines                           | active |   1
 218 | Vera Mccoy           | 1168 Najafabad Parkway          | 40301    | 886649065861 | Kabul                      | Afghanistan                           | active |   1
 122 | Thelma Murray        | 1175 Tanauan Way                | 64615    | 937222955822 | Lima                       | Peru                                  | active |   1
 292 | Misty Lambert        | 1192 Tongliao Street            | 19065    | 350970907017 | Sharja                     | United Arab Emirates                  | active |   2
 216 | Natalie Meyer        | 1201 Qomsheh Manor              | 21464    | 873492228462 | Aparecida de Goinia        | Brazil                                | active |   1
 579 | Daryl Larue          | 1208 Tama Loop                  | 73605    | 954786054144 | Mosul                      | Iraq                                  | active |   2
  59 | Cheryl Murphy        | 1213 Ranchi Parkway             | 94352    | 800024380485 | Mysore                     | India                                 | active |   1
  63 | Ashley Richardson    | 1214 Hanoi Way                  | 67055    | 491001136577 | Lincoln                    | United States                         | active |   1
 204 | Rosemary Schmidt     | 1215 Pyongyang Parkway          | 25238    | 646237101779 | Usak                       | Turkey                                | active |   1
 341 | Peter Menard         | 1217 Konotop Avenue             | 504      | 718917251754 | Ede                        | Netherlands                           | active |   1
 215 | Jessie Banks         | 1229 Valencia Parkway           | 99124    | 352679173732 | Stara Zagora               | Bulgaria                              | active |   2
 242 | Glenda Frazier       | 1246 Boksburg Parkway           | 28349    | 890283544295 | Qinhuangdao                | China                                 | active |   1
 337 | Jerry Jordon         | 124 al-Manama Way               | 52368    | 647899404952 | Onomichi                   | Japan                                 | active |   1
 230 | Joy George           | 1256 Bislig Boulevard           | 50598    | 479007229460 | Botosani                   | Romania                               | active |   2
 468 | Tim Cary             | 1257 Guadalajara Street         | 33599    | 195337700615 | Bijapur                    | India                                 | active |   1
 404 | Stanley Scroggins    | 1266 Laredo Parkway             | 7664     | 1483365694   | Omiya                      | Japan                                 | active |   2
 424 | Kyle Spurlock        | 1269 Botosani Manor             | 47394    | 736517327853 | Shanwei                    | China                                 | active |   2
 507 | Edgar Rhoads         | 1269 Ipoh Avenue                | 54674    | 402630109080 | Eskisehir                  | Turkey                                | active |   2
 163 | Cathy Spencer        | 1287 Xiangfan Boulevard         | 57844    | 819416131190 | Kakamigahara               | Japan                                 | active |   1
 444 | Marcus Hidalgo       | 1289 Belm Boulevard             | 88306    | 237368926031 | Tartu                      | Estonia                               | active |   2
 169 | Erica Matthews       | 1294 Firozabad Drive            | 70618    | 161801569569 | Pingxiang                  | China                                 | active |   2
 484 | Roberto Vu           | 1297 Alvorada Parkway           | 11839    | 508348602835 | Yinchuan                   | China                                 | active |   1
  96 | Diana Alexander      | 1308 Arecibo Way                | 30695    | 6171054059   | Augusta-Richmond County    | United States                         | active |   1
 281 | Leona Obrien         | 1308 Sumy Loop                  | 30657    | 583021225407 | Fuzhou                     | China                                 | active |   2
 248 | Caroline Bowman      | 1309 Weifang Street             | 57338    | 435785045362 | Tallahassee                | United States                         | active |   1
 466 | Leo Ebert            | 1322 Mosul Parkway              | 95400    | 268053970382 | Dongying                   | China                                 | active |   1
 599 | Austin Cintron       | 1325 Fukuyama Street            | 27107    | 288241215394 | Tieli                      | China                                 | active |   2
 598 | Wade Delvalle        | 1331 Usak Boulevard             | 61960    | 145308717464 | Lausanne                   | Switzerland                           | active |   1
 533 | Jessie Milam         | 1332 Gaziantep Lane             | 22813    | 383353187467 | Binzhou                    | China                                 | active |   1
 211 | Stacey Montgomery    | 1333 Haldia Street              | 82161    | 408304391718 | Fuyu                       | China                                 | active |   1
 147 | Joanne Robertson     | 1337 Lincoln Parkway            | 99457    | 597815221267 | Urawa                      | Japan                                 | active |   2
 563 | Ken Prewitt          | 1342 Abha Boulevard             | 10714    | 997453607116 | Bucuresti                  | Romania                               | active |   2
 402 | Luis Yanez           | 1346 Mysore Drive               | 61507    | 516647474029 | Brest                      | France                                | active |   1
 317 | Edward Baugh         | 1359 Zhoushan Parkway           | 29763    | 46568045367  | Trshavn                    | Faroe Islands                         | active |   2
 351 | Jack Foust           | 1378 Beira Loop                 | 40792    | 840957664136 | Zeleznogorsk               | Russian Federation                    | active |   1
 104 | Rita Graham          | 1386 Yangor Avenue              | 80720    | 449216226468 | Toulon                     | France                                | active |   1
 453 | Calvin Martel        | 138 Caracas Boulevard           | 16790    | 974433019532 | Maracabo                   | Venezuela                             | active |   1
 587 | Sergio Stanfield     | 1402 Zanzibar Boulevard         | 71102    | 387448063440 | Celaya                     | Mexico                                | active |   1
 429 | Frederick Isbell     | 1404 Taguig Drive               | 87212    | 572068624538 | Tsuyama                    | Japan                                 | active |   2
 282 | Jenny Castro         | 1405 Chisinau Place             | 8160     | 62781725285  | Ponce                      | Puerto Rico                           | active |   2
 572 | Sidney Burleson      | 1405 Hagonoy Avenue             | 86587    | 867287719310 | Czestochowa                | Poland                                | active |   1
 567 | Alfredo Mcadams      | 1407 Surakarta Manor            | 33224    | 324346485054 | Serpuhov                   | Russian Federation                    | active |   2
 187 | Brittany Riley       | 140 Chiayi Parkway              | 38982    | 855863906434 | Sumy                       | Ukraine                               | active |   2
 547 | Kurt Emmons          | 1421 Quilmes Lane               | 19151    | 135407755975 | Kanazawa                   | Japan                                 | active |   1
  28 | Cynthia Young        | 1425 Shikarpur Manor            | 65599    | 678220867005 | Munger (Monghyr)           | India                                 | active |   1
 526 | Karl Seal            | 1427 Tabuk Place                | 31342    | 214756839122 | Cape Coral                 | United States                         | active |   2
  37 | Pamela Baker         | 1440 Fukuyama Loop              | 47929    | 912257250465 | Nanyang                    | China                                 | active |   1
 467 | Alvin Deloach        | 1447 Chatsworth Place           | 41545    | 769370126331 | Cuauhtmoc                  | Mexico                                | active |   2
 554 | Dwayne Olvera        | 1447 Imus Place                 | 12905    | 62127829280  | Rajkot                     | India                                 | active |   1
  43 | Christine Roberts    | 1447 Imus Way                   | 48942    | 539758313890 | Faaa                       | French Polynesia                      | active |   2
 588 | Marion Ocampo        | 1464 Kursk Parkway              | 17381    | 338758048786 | Weifang                    | China                                 | active |   1
 469 | Wesley Bull          | 1469 Plock Lane                 | 95835    | 622884741180 | Ourense (Orense)           | Spain                                 | active |   2
 177 | Samantha Duncan      | 146 Johannesburg Way            | 54132    | 953689007081 | Matamoros                  | Mexico                                | active |   2
 247 | Stella Moreno        | 1473 Changhwa Parkway           | 75933    | 266798132374 | Coacalco de Berriozbal     | Mexico                                | active |   1
 243 | Lydia Burke          | 1483 Pathankot Street           | 37288    | 686015532180 | San Miguel de Tucumn       | Argentina                             | active |   1
 457 | Bill Gavin           | 1485 Bratislava Place           | 83183    | 924663855568 | Rockford                   | United States                         | active |   2
 577 | Clifton Malcolm      | 1489 Kakamigahara Lane          | 98883    | 29341849811  | Tanshui                    | Taiwan                                | active |   2
 555 | Dwight Lombardi      | 1497 Fengshan Drive             | 63022    | 368738360376 | Chatsworth                 | South Africa                          | active |   1
 252 | Mattie Hoffman       | 1497 Yuzhou Drive               | 3433     | 246810237916 | London                     | United Kingdom                        | active |   2
 497 | Gilbert Sledge       | 1515 Korla Way                  | 57197    | 959467760895 | York                       | United Kingdom                        | active |   2
 344 | Henry Billingsley    | 1516 Escobar Drive              | 46069    | 64536069371  | Nukualofa                  | Tonga                                 | active |   1
 268 | Nina Soto            | 1519 Ilorin Place               | 49298    | 357445645426 | Palghat (Palakkad)         | India                                 | active |   1
  94 | Norma Gonzales       | 152 Kitwe Parkway               | 53182    | 835433605312 | Bislig                     | Philippines                           | active |   1
  10 | Dorothy Taylor       | 1531 Sal Drive                  | 53628    | 648856936185 | Esfahan                    | Iran                                  | active |   1
 167 | Sally Pierce         | 1540 Wroclaw Drive              | 62686    | 182363341674 | Chandrapur                 | India                                 | active |   2
  11 | Lisa Anderson        | 1542 Tarlac Parkway             | 1027     | 635297277345 | Sagamihara                 | Japan                                 | active |   2
 165 | Lorraine Stephens    | 154 Tallahassee Loop            | 62250    | 935508855935 | Hami                       | China                                 | active |   2
  75 | Tammy Sanders        | 1551 Rampur Lane                | 72394    | 251164340471 | Changhwa                   | Taiwan                                | active |   2
  85 | Anne Powell          | 1557 Ktahya Boulevard           | 88002    | 720998247660 | Bradford                   | United Kingdom                        | active |   2
 151 | Megan Palmer         | 1560 Jelets Boulevard           | 77777    | 189446090264 | Laiwu                      | China                                 | active |   2
 365 | Bruce Schwarz        | 1565 Tangail Manor              | 45750    | 634445428822 | Okinawa                    | Japan                                 | active |   2
   4 | Barbara Jones        | 1566 Inegl Manor                | 53561    | 705814003527 | Myingyan                   | Myanmar                               | active |   2
 576 | Morris Mccarter      | 1568 Celaya Parkway             | 34750    | 278669994384 | Fengshan                   | Taiwan                                | active |   2
 511 | Chester Benner       | 1574 Goinia Boulevard           | 39529    | 59634255214  | Suihua                     | China                                 | active |   1
 583 | Marshall Thorn       | 1584 Ljubertsy Lane             | 22954    | 285710089439 | Southampton                | United Kingdom                        | active |   1
  67 | Kelly Torres         | 1586 Guaruj Place               | 5135     | 947233365992 | Xiangtan                   | China                                 | active |   1
 266 | Nora Herrera         | 1587 Loja Manor                 | 5410     | 621625204422 | Salzburg                   | Austria                               | active |   2
 426 | Bradley Motley       | 1596 Acua Parkway               | 70425    | 157133457169 | Purnea (Purnia)            | India                                 | active |   1
  97 | Annie Russell        | 1599 Plock Drive                | 71986    | 817248913162 | Tete                       | Mozambique                            | active |   2
 376 | Randy Gaither        | 1618 Olomouc Manor              | 26385    | 96846695220  | Kurgan                     | Russian Federation                    | active |   1
 462 | Warren Sherrod       | 1621 Tongliao Avenue            | 22173    | 209342540247 | Usolje-Sibirskoje          | Russian Federation                    | active |   2
 345 | Carl Artis           | 1628 Nagareyama Lane            | 60079    | 20064292617  | San Lorenzo                | Paraguay                              | active |   1
  42 | Carolyn Perez        | 1632 Bislig Avenue              | 61117    | 471675840679 | Pak Kret                   | Thailand                              | active |   2
 299 | James Gannon         | 1635 Kuwana Boulevard           | 52137    | 710603868323 | Hiroshima                  | Japan                                 | active |   2
 352 | Albert Crouse        | 1641 Changhwa Place             | 37636    | 256546485220 | Bamenda                    | Cameroon                              | active |   1
 363 | Roy Whiting          | 1658 Jastrzebie-Zdrj Loop       | 96584    | 568367775448 | Nyeri                      | Kenya                                 | active |   2
 140 | Eva Ramos            | 1666 Beni-Mellal Place          | 13377    | 9099941466   | Clarksville                | United States                         | active |   1
  30 | Melissa King         | 1668 Anpolis Street             | 50199    | 525255540978 | Lungtan                    | Taiwan                                | active |   1
 347 | Ryan Salisbury       | 1673 Tangail Drive              | 26857    | 627924259271 | Daugavpils                 | Latvia                                | active |   2
 396 | Earl Shanks          | 168 Cianjur Manor               | 73824    | 679095087143 | Iwatsuki                   | Japan                                 | active |   1
  95 | Paula Bryant         | 1697 Tanauan Lane               | 22870    | 4764773857   | Pathankot                  | India                                 | active |   2
 353 | Jonathan Scarborough | 1698 Southport Loop             | 49009    | 754358349853 | Pachuca de Soto            | Mexico                                | active |   1
  62 | Joan Cooper          | 1717 Guadalajara Lane           | 85505    | 914090181665 | Saint Louis                | United States                         | active |   1
  45 | Janet Phillips       | 1718 Valencia Street            | 37359    | 675292816413 | Antofagasta                | Chile                                 | active |   1
 423 | Alfred Casillas      | 1727 Matamoros Place            | 78813    | 129673677866 | Sawhaj                     | Egypt                                 | active |   2
 233 | Lillie Kim           | 1736 Cavite Place               | 98775    | 431770603551 | Idfu                       | Egypt                                 | active |   2
  87 | Wanda Patterson      | 1740 Portoviejo Avenue          | 29932    | 198123170793 | Sincelejo                  | Colombia                              | active |   1
 559 | Everett Banda        | 1741 Hoshiarpur Boulevard       | 22372    | 855066328617 | Bilbays                    | Egypt                                 | active |   2
 565 | Jaime Nettles        | 1746 Faaa Way                   | 32515    | 863080561151 | Hunuco                     | Peru                                  | active |   2
 509 | Raul Fortier         | 1747 Rustenburg Place           | 51369    | 442673923363 | Chapra                     | India                                 | active |   1
 137 | Rhonda Kennedy       | 1749 Daxian Place               | 11044    | 963369996279 | Apeldoorn                  | Netherlands                           | active |   2
 590 | Seth Hannon          | 1759 Niznekamsk Avenue          | 39414    | 864392582257 | al-Manama                  | Bahrain                               | active |   2
 249 | Dora Medina          | 1760 Oshawa Manor               | 38140    | 56257502250  | Tianjin                    | China                                 | active |   2
 267 | Margie Wade          | 1762 Paarl Parkway              | 53928    | 192459639410 | Lengshuijiang              | China                                 | active |   1
 516 | Elmer Noe            | 1768 Udine Loop                 | 32347    | 448876499197 | Battambang                 | Cambodia                              | active |   2
 318 | Brian Wyman          | 1769 Iwaki Lane                 | 25787    | 556100547674 | Bydgoszcz                  | Poland                                | active |   1
 313 | Donald Mahon         | 1774 Yaound Place               | 91400    | 613124286867 | Ezhou                      | China                                 | active |   2
 514 | Franklin Troutman    | 1778 Gijn Manor                 | 35156    | 288910576761 | Zaoyang                    | China                                 | active |   2
  23 | Sarah Lewis          | 1780 Hino Boulevard             | 7716     | 902731229323 | Liepaja                    | Latvia                                | active |   2
 386 | Todd Tan             | 1793 Meixian Place              | 33535    | 619966287415 | Kamjanets-Podilskyi        | Ukraine                               | active |   1
  53 | Heather Morris       | 17 Kabul Boulevard              | 38594    | 697760867968 | Nagareyama                 | Japan                                 | active |   1
 329 | Frank Waggoner       | 1816 Bydgoszcz Loop             | 64308    | 965273813662 | Jamalpur                   | Bangladesh                            | active |   2
 578 | Willard Lumpkin      | 1819 Alessandria Loop           | 53829    | 377633994405 | Carmen                     | Mexico                                | active |   2
 223 | Melinda Fernandez    | 1820 Maring Parkway             | 88307    | 99760893676  | Mandi Bahauddin            | Pakistan                              | active |   1
 428 | Herbert Kruger       | 1823 Hoshiarpur Lane            | 33191    | 307133768620 | Syktyvkar                  | Russian Federation                    | active |   2
 545 | Julio Noland         | 182 Nukualofa Drive             | 15414    | 426346224043 | Konotop                    | Ukraine                               | active |   2
 332 | Stephen Qualls       | 1838 Tabriz Lane                | 1195     | 38988715447  | Dhaka                      | Bangladesh                            | active |   1
 183 | Ida Andrews          | 1839 Szkesfehrvr Parkway        | 55709    | 947468818183 | Luzinia                    | Brazil                                | active |   2
 538 | Ted Breaux           | 183 Haiphong Street             | 69953    | 488600270038 | Baicheng                   | China                                 | active |   2
 174 | Yvonne Watkins       | 1848 Salala Boulevard           | 25220    | 48265851133  | Ocumare del Tuy            | Venezuela                             | active |   2
 474 | Dustin Gillette      | 1854 Okara Boulevard            | 42123    | 131912793873 | Emmen                      | Netherlands                           | active |   2
 129 | Carrie Porter        | 1854 Tieli Street               | 15819    | 509492324775 | Liaocheng                  | China                                 | active |   1
 487 | Hector Poindexter    | 185 Mannheim Lane               | 23661    | 589377568313 | Pjatigorsk                 | Russian Federation                    | active |   2
 420 | Jacob Lance          | 1866 al-Qatif Avenue            | 89420    | 546793516940 | El Monte                   | United States                         | active |   1
 575 | Isaac Oglesby        | 186 Skikda Lane                 | 89422    | 14465669789  | Cuernavaca                 | Mexico                                | active |   2
 464 | Jerome Kenyon        | 1872 Toulon Loop                | 7939     | 928809465153 | Rancagua                   | Chile                                 | active |   1
 170 | Beatrice Arnold      | 1877 Ezhou Lane                 | 63337    | 264541743403 | Udaipur                    | India                                 | active |   1
 301 | Robert Baughman      | 1883 Maikop Lane                | 68469    | 96110042435  | Kaliningrad                | Russian Federation                    | active |   2
 274 | Naomi Jennings       | 1884 Shikarpur Avenue           | 85548    | 959949395183 | Karnal                     | India                                 | active |   1
 456 | Ronnie Ricketts      | 1889 Valparai Way               | 75559    | 670370974122 | Ziguinchor                 | Senegal                               | active |   2
 593 | Rene Mcalister       | 1895 Zhezqazghan Drive          | 36693    | 137809746111 | Garden Grove               | United States                         | active |   2
 302 | Michael Silverman    | 1908 Gaziantep Place            | 58979    | 108053751300 | Tiefa                      | China                                 | active |   1
 339 | Walter Perryman      | 1909 Benguela Lane              | 19913    | 624138001031 | Xinxiang                   | China                                 | active |   2
 485 | Clyde Tobias         | 1909 Dayton Avenue              | 88513    | 702955450528 | Shaoguan                   | China                                 | active |   1
 366 | Brandon Huey         | 1912 Emeishan Drive             | 33050    | 99883471275  | Balikesir                  | Turkey                                | active |   1
   1 | Mary Smith           | 1913 Hanoi Way                  | 35200    | 28303384290  | Sasebo                     | Japan                                 | active |   1
 100 | Robin Hayes          | 1913 Kamakura Place             | 97287    | 942570536750 | Jelets                     | Russian Federation                    | active |   1
 553 | Max Pitt             | 1917 Kumbakonam Parkway         | 11892    | 698182547686 | Novi Sad                   | Yugoslavia                            | active |   1
 368 | Harry Arce           | 1922 Miraj Way                  | 13203    | 320471479776 | Najafabad                  | Iran                                  | active |   1
 441 | Mario Cheatham       | 1924 Shimonoseki Drive          | 52625    | 406784385440 | Batna                      | Algeria                               | active |   1
 221 | Bessie Morrison      | 1926 Gingoog Street             | 22824    | 469738825391 | Syrakusa                   | Italy                                 | active |   1
 291 | Toni Holt            | 1936 Cuman Avenue               | 61195    | 976798660411 | Roanoke                    | United States                         | active |   1
 536 | Fernando Churchill   | 193 Bhusawal Place              | 9750     | 745267607502 | Tonghae                    | South Korea                           | active |   2
  88 | Bonnie Hughes        | 1942 Ciparay Parkway            | 82624    | 978987363654 | Cheju                      | South Korea                           | active |   2
 276 | Brandy Graves        | 1944 Bamenda Way                | 24645    | 75975221996  | Warren                     | United States                         | active |   1
 419 | Chad Carbone         | 1948 Bayugan Parkway            | 60622    | 987306329957 | Katihar                    | India                                 | active |   1
 519 | Ron Deluca           | 1949 Sanya Street               | 61244    | 132100972047 | Isesaki                    | Japan                                 | active |   2
  90 | Ruby Washington      | 1952 Chatsworth Drive           | 25958    | 991562402283 | Meixian                    | China                                 | active |   2
 148 | Eleanor Hunt         | 1952 Pune Lane                  | 92150    | 354615066969 | Saint-Denis                | Runion                                | active |   1
 535 | Javier Elrod         | 195 Ilorin Street               | 49250    | 8912935608   | NDjamna                    | Chad                                  | active |   1
 152 | Alicia Mills         | 1963 Moscow Place               | 64863    | 761379480249 | Nagaon                     | India                                 | active |   1
 238 | Nellie Garrett       | 1964 Gijn Manor                 | 14408    | 918119601885 | Shimoga                    | India                                 | active |   1
  64 | Judith Cox           | 1966 Amroha Avenue              | 70385    | 333489324603 | Daxian                     | China                                 | active |   2
 117 | Edith Mcdonald       | 1967 Sincelejo Place            | 73644    | 577812616052 | Gandhinagar                | India                                 | active |   1
 275 | Carole Barnett       | 1980 Kamjanets-Podilskyi Street | 89502    | 874337098891 | Peoria                     | United States                         | active |   2
 521 | Roland South         | 1993 0 Loop                     | 41214    | 25865528181  | Yingkou                    | China                                 | active |   2
  44 | Marie Turner         | 1998 Halifax Drive              | 76022    | 177727722820 | Lipetsk                    | Russian Federation                    | active |   1
 226 | Maureen Little       | 201 Effon-Alaiye Way            | 64344    | 684192903087 | Asuncin                    | Paraguay                              | active |   2
 447 | Clifford Bowens      | 207 Cuernavaca Loop             | 52671    | 782900030287 | Nabereznyje Telny          | Russian Federation                    | active |   1
 377 | Howard Fortner       | 220 Hidalgo Drive               | 45298    | 342720754566 | Kermanshah                 | Iran                                  | active |   1
 214 | Kristin Johnston     | 226 Brest Manor                 | 2299     | 785881412500 | Sunnyvale                  | United States                         | active |   1
 283 | Felicia Sutton       | 226 Halifax Street              | 58492    | 790651020929 | Korla                      | China                                 | active |   1
 439 | Alexander Fennell    | 231 Kaliningrad Place           | 57833    | 575081026569 | Bergamo                    | Italy                                 | active |   2
 120 | Sylvia Ortiz         | 241 Mosul Lane                  | 76157    | 765345144779 | Dos Quebradas              | Colombia                              | active |   2
 584 | Salvador Teel        | 247 Jining Parkway              | 53446    | 170115379190 | Banjul                     | Gambia                                | active |   2
  13 | Karen Jackson        | 270 Amroha Parkway              | 29610    | 695479687538 | Osmaniye                   | Turkey                                | active |   2
 471 | Dean Sauer           | 270 Tambaram Parkway            | 9668     | 248446668735 | Johannesburg               | South Africa                          | active |   1
  17 | Donna Thompson       | 270 Toulon Boulevard            | 81766    | 407752414682 | Elista                     | Russian Federation                    | active |   1
 431 | Joel Francisco       | 287 Cuautla Boulevard           | 72736    | 82619513349  | Sucre                      | Bolivia                               | active |   2
 172 | Bernice Willis       | 29 Pyongyang Loop               | 47753    | 734780743462 | Batman                     | Turkey                                | active |   1
 245 | Courtney Day         | 300 Junan Street                | 81314    | 890289150158 | Uijongbu                   | South Korea                           | active |   1
 171 | Dolores Wagner       | 316 Uruapan Street              | 58194    | 275788967899 | Ipoh                       | Malaysia                              | active |   2
 493 | Brent Harkins        | 319 Plock Parkway               | 26101    | 854259976812 | Sultanbeyli                | Turkey                                | active |   1
 448 | Miguel Betancourt    | 319 Springs Loop                | 99552    | 72524459905  | Erlangen                   | Germany                               | active |   1
  81 | Andrea Henderson     | 320 Baiyin Parkway              | 37307    | 223664661973 | Mahajanga                  | Madagascar                            | active |   1
  18 | Carol Garcia         | 320 Brest Avenue                | 43331    | 747791594069 | Kaduna                     | Nigeria                               | active |   2
 294 | Shelly Watts         | 32 Pudukkottai Lane             | 38834    | 967274728547 | Dayton                     | United States                         | active |   2
 394 | Chris Brothers       | 331 Bydgoszcz Parkway           | 966      | 537374465982 | Gijn                       | Spain                                 | active |   2
 118 | Kim Cruz             | 333 Goinia Way                  | 78625    | 909029256431 | Grand Prairie              | United States                         | active |   1
 194 | Kristen Chavez       | 345 Oshawa Boulevard            | 32114    | 104491201771 | Hino                       | Japan                                 | active |   2
 234 | Claudia Fuller       | 346 Skikda Parkway              | 90628    | 630424482919 | Jalib al-Shuyukh           | Kuwait                                | active |   1
 229 | Tamara Nguyen        | 356 Olomouc Manor               | 93323    | 22326410776  | Anpolis                    | Brazil                                | active |   1
  16 | Sandra Martin        | 360 Toulouse Parkway            | 54308    | 949312333307 | Southend-on-Sea            | United Kingdom                        | active |   2
 495 | Charlie Bess         | 362 Rajkot Lane                 | 98030    | 962020153680 | Baiyin                     | China                                 | active |   2
 383 | Martin Bales         | 368 Hunuco Boulevard            | 17165    | 106439158941 | Namibe                     | Angola                                | active |   1
 541 | Darren Windham       | 379 Lublin Parkway              | 74568    | 921960450089 | Livorno                    | Italy                                 | active |   2
 348 | Roger Quintanilla    | 381 Kabul Way                   | 87272    | 55477302294  | Hsichuh                    | Taiwan                                | active |   2
 200 | Jeanne Lawson        | 387 Mwene-Ditu Drive            | 8073     | 764477681869 | Ashgabat                   | Turkmenistan                          | active |   2
 546 | Kelly Knott          | 390 Wroclaw Way                 | 5753     | 357593328658 | Sanya                      | China                                 | active |   1
  35 | Virginia Green       | 391 Callao Drive                | 34021    | 440512153169 | Toulouse                   | France                                | active |   2
 414 | Vincent Ralston      | 397 Sunnyvale Avenue            | 55566    | 680851640676 | Allende                    | Mexico                                | active |   1
 501 | Ruben Geary          | 414 Mandaluyong Street          | 16370    | 52709222667  | Lublin                     | Poland                                | active |   1
 564 | Bob Pfeiffer         | 415 Pune Avenue                 | 44274    | 203202500108 | Xintai                     | China                                 | active |   2
 475 | Pedro Chestnut       | 421 Yaound Street               | 11363    | 726875628268 | ostka                      | Ukraine                               | active |   2
  41 | Stephanie Mitchell   | 42 Brindisi Place               | 16744    | 42384721397  | Yerevan                    | Armenia                               | active |   1
 592 | Terrance Roush       | 42 Fontana Avenue               | 14684    | 437829801725 | Szkesfehrvr                | Hungary                               | active |   1
 227 | Colleen Burton       | 430 Alessandria Loop            | 47446    | 669828224459 | Saarbrcken                 | Germany                               | active |   1
 333 | Andrew Purdy         | 431 Szkesfehrvr Avenue          | 57828    | 119501405123 | Baku                       | Azerbaijan                            | active |   2
 175 | Annette Olson        | 431 Xiangtan Avenue             | 4854     | 230250973122 | Allappuzha (Alleppey)      | India                                 | active |   1
 369 | Fred Wheat           | 433 Florencia Street            | 91330    | 561729882725 | Jurez                      | Mexico                                | active |   2
 209 | Tonya Chapman        | 43 Dadu Avenue                  | 4855     | 95666951770  | Bhilwara                   | India                                 | active |   2
 537 | Clinton Buford       | 43 Vilnius Manor                | 79814    | 484500282381 | Aurora                     | United States                         | active |   2
 264 | Gwendolyn May        | 446 Kirovo-Tepetsk Lane         | 19428    | 303967439816 | Higashiosaka               | Japan                                 | active |   1
 193 | Katie Elliott        | 447 Surakarta Loop              | 10428    | 940830176580 | Kisumu                     | Kenya                                 | active |   2
 293 | Mae Fletcher         | 44 Najafabad Way                | 61391    | 96604821070  | Donostia-San Sebastin      | Spain                                 | active |   2
 401 | Tony Carranza        | 454 Patiala Lane                | 13496    | 794553031307 | Koriyama                   | Japan                                 | active |   2
 543 | Lance Pemberton      | 454 Qinhuangdao Drive           | 25866    | 786270036240 | Beni-Mellal                | Morocco                               | active |   1
 278 | Billie Horton        | 457 Tongliao Loop               | 56254    | 880756161823 | Inegl                      | Turkey                                | active |   2
 321 | Kevin Schuler        | 470 Boksburg Street             | 97960    | 908029859266 | Birgunj                    | Nepal                                 | active |   1
 168 | Regina Berry         | 475 Atinsk Way                  | 59571    | 201705577290 | Jinchang                   | China                                 | active |   1
   8 | Susan Wilson         | 478 Joliet Way                  | 77948    | 657282285970 | Hamilton                   | New Zealand                           | active |   2
 142 | April Burns          | 483 Ljubertsy Parkway           | 60562    | 581174211853 | Dundee                     | United Kingdom                        | active |   1
 528 | Claude Herzog        | 486 Ondo Parkway                | 35202    | 105882218332 | Benguela                   | Angola                                | active |   1
 440 | Bernard Colby        | 495 Bhimavaram Lane             | 3        | 82088937724  | Dhule (Dhulia)             | India                                 | active |   1
 503 | Angel Barclay        | 496 Celaya Drive                | 90797    | 759586584889 | Ueda                       | Japan                                 | active |   1
 384 | Ernest Stepp         | 500 Lincoln Parkway             | 95509    | 550306965159 | Huaian                     | China                                 | active |   2
 334 | Raymond Mcwhorter    | 503 Sogamoso Loop               | 49812    | 834626715837 | Sumqayit                   | Azerbaijan                            | active |   2
 558 | Jimmie Eggleston     | 505 Madiun Boulevard            | 97271    | 970638808606 | Wroclaw                    | Poland                                | active |   1
 335 | Gregory Mauldin      | 507 Smolensk Loop               | 22971    | 80303246192  | Sousse                     | Tunisia                               | active |   1
 387 | Jesse Schilling      | 514 Ife Way                     | 69973    | 900235712074 | Lubumbashi                 | Congo, The Democratic Republic of the | active |   2
 256 | Mabel Holland        | 51 Laredo Avenue                | 68146    | 884536620568 | Monywa                     | Myanmar                               | active |   2
 400 | Bryan Hardison       | 530 Lausanne Lane               | 11067    | 775235029633 | Dallas                     | United States                         | active |   2
 258 | Myrtle Fleming       | 532 Toulon Street               | 69517    | 46871694740  | Santiago de los Caballeros | Dominican Republic                    | active |   1
 182 | Renee Lane           | 533 al-Ayn Boulevard            | 8862     | 662227486184 | Compton                    | United States                         | active |   1
 566 | Casey Mena           | 539 Hami Way                    | 52196    | 525518075499 | Tokat                      | Turkey                                | active |   1
   5 | Elizabeth Brown      | 53 Idfu Parkway                 | 42399    | 10655648674  | Nantou                     | Taiwan                                | active |   1
 290 | Kristina Chambers    | 544 Tarsus Boulevard            | 53145    | 892523334    | Valle de la Pascua         | Venezuela                             | active |   1
 512 | Cecil Vines          | 548 Uruapan Street              | 35653    | 879347453467 | London                     | United Kingdom                        | active |   1
 527 | Cory Meehan          | 556 Asuncin Way                 | 35364    | 338244023543 | Mogiljov                   | Belarus                               | active |   1
 125 | Ethel Webb           | 569 Baicheng Lane               | 60304    | 490211944645 | Boksburg                   | South Africa                          | active |   1
  79 | Rachel Barnes        | 586 Tete Way                    | 1079     | 18581624103  | Kamakura                   | Japan                                 | active |   1
 330 | Scott Shelley        | 587 Benguela Manor              | 91590    | 165450987037 | Aurora                     | United States                         | active |   1
 433 | Don Bone             | 596 Huixquilucan Place          | 65892    | 342709348083 | Naala-Porto                | Mozambique                            | active |   1
  76 | Irene Price          | 602 Paarl Street                | 98889    | 896314772871 | Pavlodar                   | Kazakstan                             | active |   2
 358 | Samuel Marlow        | 604 Bern Place                  | 5373     | 620719383725 | Ranchi                     | India                                 | active |   2
 517 | Brad Mccurdy         | 608 Birgunj Parkway             | 400      | 627425618482 | Chungho                    | Taiwan                                | active |   2
   9 | Margaret Moore       | 613 Korolev Drive               | 45844    | 380657522649 | Masqat                     | Oman                                  | active |   2
 397 | Jimmy Schrader       | 616 Hagonoy Avenue              | 46043    | 604177838256 | Atinsk                     | Russian Federation                    | active |   1
 355 | Terry Grissom        | 619 Hunuco Avenue               | 81508    | 142596392389 | Matsue                     | Japan                                 | active |   2
  34 | Rebecca Scott        | 61 Tama Street                  | 94065    | 708403338270 | Kurashiki                  | Japan                                 | active |   2
 202 | Carla Gutierrez      | 642 Nador Drive                 | 3924     | 369050085652 | Bhusawal                   | India                                 | active |   2
 481 | Herman Devore        | 64 Korla Street                 | 25145    | 510383179153 | Mwanza                     | Tanzania                              | active |   1
 316 | Steven Curley        | 651 Pathankot Loop              | 59811    | 139378397418 | Miraj                      | India                                 | active |   1
 490 | Sam Mcduffie         | 656 Matamoros Drive             | 19489    | 17305839123  | Sogamoso                   | Colombia                              | active |   1
 212 | Wilma Richards       | 660 Jedda Boulevard             | 25053    | 168758068397 | Bellevue                   | United States                         | active |   2
 295 | Daisy Bates          | 661 Chisinau Lane               | 8856     | 816436065431 | Kolpino                    | Russian Federation                    | active |   1
  40 | Amanda Carter        | 671 Graz Street                 | 94399    | 680768868518 | Nador                      | Morocco                               | active |   2
  47 | Frances Parker       | 686 Garland Manor               | 52535    | 69493378813  | Juazeiro do Norte          | Brazil                                | active |   1
 303 | William Satterfield  | 687 Alessandria Parkway         | 57587    | 407218522294 | Sanaa                      | Yemen                                 | active |   2
 201 | Vicki Fields         | 68 Molodetno Manor              | 4662     | 146640639760 | Witten                     | Germany                               | active |   1
 340 | Patrick Newsom       | 68 Ponce Parkway                | 85926    | 870635127812 | Hanoi                      | Vietnam                               | active |   1
 408 | Manuel Murrell       | 692 Amroha Drive                | 35575    | 359478883004 | Jaffna                     | Sri Lanka                             | active |   1
   3 | Linda Williams       | 692 Joliet Street               | 83579    | 448477190408 | Athenai                    | Greece                                | active |   1
 483 | Vernon Chapa         | 698 Jelets Boulevard            | 2596     | 975185523021 | Denizli                    | Turkey                                | active |   2
  65 | Rose Howard          | 698 Otsu Street                 | 71110    | 409983924481 | Cayenne                    | French Guiana                         | active |   2
 435 | Ricky Shelby         | 722 Bradford Lane               | 90920    | 746251338300 | Junan                      | China                                 | active |   2
  49 | Joyce Edwards        | 725 Isesaki Place               | 74428    | 876295323994 | Jedda                      | Saudi Arabia                          | active |   2
 101 | Peggy Myers          | 733 Mandaluyong Place           | 77459    | 196568435814 | Abha                       | Saudi Arabia                          | active |   1
 399 | Danny Isom           | 734 Bchar Place                 | 30586    | 280578750435 | Okara                      | Pakistan                              | active |   1
 460 | Leon Bostic          | 734 Tanshui Avenue              | 70664    | 366776723320 | Florencia                  | Colombia                              | active |   1
 184 | Vivian Ruiz          | 741 Ambattur Manor              | 43310    | 302590383819 | s-Hertogenbosch            | Netherlands                           | active |   1
 311 | Paul Trout           | 746 Joliet Lane                 | 94878    | 688485191923 | Kursk                      | Russian Federation                    | active |   2
 210 | Ella Oliver          | 751 Lima Loop                   | 99405    | 756460337785 | Aden                       | Yemen                                 | active |   2
 253 | Terry Carlson        | 752 Ondo Loop                   | 32474    | 134673576619 | Miyakonojo                 | Japan                                 | active |   1
 389 | Alan Kahn            | 753 Ilorin Avenue               | 3656     | 464511145118 | Emeishan                   | China                                 | active |   1
 176 | June Carroll         | 757 Rustenburg Avenue           | 89668    | 506134035434 | Skikda                     | Algeria                               | active |   1
 130 | Charlotte Hunter     | 758 Junan Lane                  | 82639    | 935448624185 | guas Lindas de Gois        | Brazil                                | active |   1
 581 | Virgil Wofford       | 760 Miyakonojo Drive            | 64682    | 294449058179 | Jos Azueta                 | Mexico                                | active |   1
 134 | Emma Boyd            | 765 Southampton Drive           | 4285     | 23712411567  | Qalyub                     | Egypt                                 | active |   1
 391 | Clarence Gamez       | 767 Pyongyang Drive             | 83536    | 667736124769 | Izumisano                  | Japan                                 | active |   1
 459 | Tommy Collazo        | 76 Kermanshah Manor             | 23343    | 762361821578 | Qomsheh                    | Iran                                  | active |   1
  14 | Betty White          | 770 Bydgoszcz Avenue            | 16266    | 517338314235 | Citrus Heights             | United States                         | active |   2
 257 | Marsha Douglas       | 771 Yaound Manor                | 86768    | 245477603573 | Beira                      | Mozambique                            | active |   2
 491 | Rick Mattox          | 775 ostka Drive                 | 22358    | 171973024401 | Mit Ghamr                  | Egypt                                 | active |   2
 312 | Mark Rinehart        | 780 Kimberley Way               | 17032    | 824396883951 | Tabuk                      | Saudi Arabia                          | active |   2
 149 | Valerie Black        | 782 Mosul Street                | 25545    | 885899703621 | Brockton                   | United States                         | active |   1
  29 | Angela Hernandez     | 786 Aurora Avenue               | 65750    | 18461860151  | Shimonoseki                | Japan                                 | active |   2
 504 | Nathaniel Adam       | 786 Matsue Way                  | 37469    | 111177206479 | Joliet                     | United States                         | active |   1
 136 | Anita Morales        | 788 Atinsk Street               | 81691    | 146497509724 | Hubli-Dharwad              | India                                 | active |   2
 412 | Allen Butterfield    | 791 Salinas Street              | 40509    | 129953030512 | Hoshiarpur                 | India                                 | active |   2
 154 | Michele Grant        | 798 Cianjur Avenue              | 76990    | 499408708580 | Yuncheng                   | China                                 | active |   2
 127 | Elaine Stevens       | 801 Hagonoy Drive               | 8439     | 237426099212 | Smolensk                   | Russian Federation                    | active |   2
 110 | Tiffany Jordan       | 804 Elista Drive                | 61069    | 379804592943 | Enshi                      | China                                 | active |   2
  12 | Nancy Thomas         | 808 Bhopal Manor                | 10672    | 465887807014 | Yamuna Nagar               | India                                 | active |   1
 477 | Dan Paine            | 808 Naala-Porto Parkway         | 41060    | 553452430707 | Stockport                  | United Kingdom                        | active |   1
 451 | Jim Rea              | 814 Simferopol Loop             | 48745    | 524567129902 | El Fuerte                  | Mexico                                | active |   1
 262 | Patsy Davidson       | 816 Cayenne Parkway             | 93629    | 282874611748 | Portoviejo                 | Ecuador                               | active |   2
 197 | Sue Peters           | 817 Bradford Loop               | 89459    | 264286442804 | Changzhou                  | China                                 | active |   2
 364 | Benjamin Varney      | 817 Laredo Avenue               | 77449    | 151249681135 | Guadalajara                | Mexico                                | active |   1
  60 | Mildred Bailey       | 81 Hodeida Way                  | 55561    | 250767749542 | Jaipur                     | India                                 | active |   1
 304 | David Royal          | 827 Yuncheng Drive              | 79047    | 504434452842 | Callao                     | Peru                                  | active |   2
 164 | Joann Gardner        | 842 Salzburg Lane               | 3313     | 697151428760 | Tarsus                     | Turkey                                | active |   2
 595 | Terrence Gunderson   | 844 Bucuresti Place             | 36603    | 935952366111 | Jinzhou                    | China                                 | active |   1
 124 | Sheila Wells         | 848 Tafuna Manor                | 45142    | 614935229095 | Ktahya                     | Turkey                                | active |   1
 207 | Gertrude Castillo    | 850 Salala Loop                 | 10800    | 403404780639 | Nuuk                       | Greenland                             | active |   1
 556 | Armando Gruber       | 869 Shikarpur Way               | 57380    | 590764256785 | Southport                  | United Kingdom                        | active |   2
 288 | Bobbie Craig         | 86 Higashiosaka Lane            | 33768    | 957128697225 | Valle de Santiago          | Mexico                                | active |   1
  86 | Jacqueline Long      | 870 Ashqelon Loop               | 84931    | 135117278909 | Songkhla                   | Thailand                              | active |   2
 146 | Jamie Rice           | 879 Newcastle Way               | 90732    | 206841104594 | Sterling Heights           | United States                         | active |   1
 232 | Constance Reid       | 885 Yingkou Manor               | 31390    | 588964509072 | Zaria                      | Nigeria                               | active |   2
 510 | Ben Easter           | 886 Tonghae Place               | 19450    | 711928348157 | Kamyin                     | Russian Federation                    | active |   2
 298 | Erika Pena           | 898 Jining Lane                 | 40070    | 161643343536 | Oulu                       | Finland                               | active |   1
 552 | Hugh Waldrop         | 904 Clarksville Drive           | 52234    | 955349440539 | Haining                    | China                                 | active |   2
 270 | Leah Curtis          | 906 Goinia Way                  | 83565    | 701767622697 | Kalisz                     | Poland                                | active |   1
  48 | Ann Evans            | 909 Garland Manor               | 69367    | 705800322606 | Niznekamsk                 | Russian Federation                    | active |   1
  61 | Katherine Rivera     | 915 Ponce Place                 | 83980    | 1395251317   | Basel                      | Switzerland                           | active |   2
 269 | Cassandra Walters    | 920 Kumbakonam Loop             | 75090    | 685010736240 | Salinas                    | United States                         | active |   1
 574 | Julian Vest          | 923 Tangail Boulevard           | 33384    | 315528269898 | Akishima                   | Japan                                 | active |   2
 141 | Debbie Reyes         | 928 Jaffna Loop                 | 93762    | 581852137991 | Fukuyama                   | Japan                                 | active |   1
  83 | Louise Jenkins       | 929 Tallahassee Loop            | 74671    | 800716535041 | Springs                    | South Africa                          | active |   1
  52 | Julie Sanchez        | 939 Probolinggo Loop            | 4166     | 680428310138 | A Corua (La Corua)         | Spain                                 | active |   1
 135 | Juanita Mason        | 943 Johannesburg Avenue         | 5892     | 90921003005  | Pune                       | India                                 | active |   2
  57 | Evelyn Morgan        | 943 Tokat Street                | 45428    | 889318963672 | Vaduz                      | Liechtenstein                         | active |   2
 393 | Philip Causey        | 954 Lapu-Lapu Way               | 8816     | 737229003916 | Korolev                    | Russian Federation                    | active |   1
 531 | Jamie Waugh          | 958 Sagamihara Lane             | 88408    | 427274926505 | Kuwana                     | Japan                                 | active |   2
 416 | Jeffery Pinson       | 966 Arecibo Loop                | 94018    | 15273765306  | Dadu                       | Pakistan                              | active |   2
 582 | Andy Vanhorn         | 966 Asuncin Way                 | 62703    | 995527378381 | Huejutla de Reyes          | Mexico                                | active |   2
  24 | Kimberly Lee         | 96 Tafuna Way                   | 99865    | 934730187245 | Crdoba                     | Argentina                             | active |   2
 379 | Carlos Coughlin      | 97 Mogiljov Lane                | 89294    | 924815207181 | Bhavnagar                  | India                                 | active |   1
  92 | Tina Simmons         | 984 Effon-Alaiye Avenue         | 17119    | 132986892228 | Goinia                     | Brazil                                | active |   2
 480 | Corey Hauser         | 984 Novoterkassk Loop           | 28165    | 435118527255 | Gaziantep                  | Turkey                                | active |   1
 479 | Zachary Hite         | 98 Pyongyang Boulevard          | 88749    | 191958435142 | Akron                      | United States                         | active |   1
 415 | Glenn Pullen         | 992 Klerksdorp Loop             | 33711    | 855290087237 | Amersfoort                 | Netherlands                           | active |   1
 145 | Lucille Holmes       | 999 Sanaa Loop                  | 3439     | 918032330119 | Soshanguve                 | South Africa                          | active |   1
(353 rows)

CREATE VIEW customer_master AS
  SELECT cu.customer_id AS id,
    cu.first_name || ' ' || cu.last_name AS name,
    a.address,
    a.postal_code AS "zip code",
    a.phone,
    city.city,
    country.country,
        CASE
            WHEN cu.activebool THEN 'active'
            ELSE ''
        END AS notes,
    cu.store_id AS sid
   FROM customer cu
     INNER JOIN address a USING (address_id)
     INNER JOIN city USING (city_id)
     INNER JOIN country USING (country_id)
     ORDER BY address, city, country, id;
SELECT * FROM customer_master ORDER BY address, city, country, id;
 id  |         name         |             address             | zip code |    phone     |            city            |                country                | notes  | sid 
-----+----------------------+---------------------------------+----------+--------------+----------------------------+---------------------------------------+--------+-----
 213 | Gina Williamson      | 1001 Miyakonojo Lane            | 67924    | 584316724815 | Taizz                      | Yemen                                 | active |   1
 108 | Tracy Cole           | 1002 Ahmadnagar Manor           | 93026    | 371490777743 | Huixquilucan               | Mexico                                | active |   1
 360 | Ralph Madrigal       | 1009 Zanzibar Lane              | 64875    | 102396298916 | Arecibo                    | Puerto Rico                           | active |   2
 173 | Audrey Ray           | 1010 Klerksdorp Way             | 6802     | 493008546874 | Graz                       | Austria                               | active |   1
 144 | Clara Shaw           | 1027 Songkhla Manor             | 30861    | 563660187896 | Molodetno                  | Belarus                               | active |   1
 139 | Amber Dixon          | 1029 Dzerzinsk Manor            | 57519    | 33173584456  | Touliu                     | Taiwan                                | active |   1
 385 | Phillip Holm         | 102 Chapra Drive                | 14073    | 776031833752 | Tama                       | Japan                                 | active |   1
  69 | Judy Gray            | 1031 Daugavpils Parkway         | 59025    | 107137400143 | Bchar                      | Algeria                               | active |   2
 370 | Wayne Truong         | 1049 Matamoros Parkway          | 69640    | 960505250340 | Gulbarga                   | India                                 | active |   2
 569 | Dave Gardiner        | 1052 Pathankot Avenue           | 77397    | 128499386727 | Leshan                     | China                                 | active |   2
 557 | Felix Gaffney        | 1059 Yuncheng Avenue            | 47498    | 107092893983 | Vilnius                    | Lithuania                             | active |   1
 496 | Tyler Wren           | 1060 Tandil Lane                | 72349    | 211256301880 | Rizhao                     | China                                 | active |   2
 196 | Alma Austin          | 1074 Binzhou Manor              | 36490    | 331132568928 | Mannheim                   | Germany                               | active |   1
 589 | Tracy Herrmann       | 1074 Sanaa Parkway              | 22474    | 154124128457 | Loja                       | Ecuador                               | active |   1
 465 | Floyd Gandy          | 1088 Ibirit Place               | 88502    | 49084281333  | Zapopan                    | Mexico                                | active |   1
 179 | Dana Hart            | 1089 Iwatsuki Avenue            | 35109    | 866092335135 | Kirovo-Tepetsk             | Russian Federation                    | active |   1
 241 | Heidi Larson         | 1103 Bilbays Parkway            | 87660    | 279979529227 | Xiangfan                   | China                                 | active |   2
 597 | Freddie Duggan       | 1103 Quilmes Boulevard          | 52137    | 644021380889 | Sullana                    | Peru                                  | active |   1
  58 | Jean Bell            | 1114 Liepaja Street             | 69226    | 212869228936 | Kuching                    | Malaysia                              | active |   1
   2 | Patricia Johnson     | 1121 Loja Avenue                | 17886    | 838635286649 | San Bernardino             | United States                         | active |   1
  70 | Christina Ramirez    | 1124 Buenaventura Drive         | 6856     | 407733804223 | al-Hawiya                  | Saudi Arabia                          | active |   2
 374 | Jeremy Hurtado       | 1133 Rizhao Avenue              | 2800     | 600264533987 | Vitria de Santo Anto       | Brazil                                | active |   2
  51 | Alice Stewart        | 1135 Izumisano Parkway          | 48150    | 171822533480 | Fontana                    | United States                         | active |   1
 319 | Ronald Weiner        | 1145 Vilnius Manor              | 73170    | 674805712553 | San Felipe del Progreso    | Mexico                                | active |   2
 240 | Marlene Welch        | 1148 Saarbrcken Parkway         | 1921     | 137773001988 | Iwaki                      | Japan                                 | active |   1
 476 | Derrick Bourque      | 1153 Allende Way                | 20336    | 856872225376 | Gatineau                   | Canada                                | active |   1
 346 | Arthur Simpkins      | 1157 Nyeri Loop                 | 56380    | 262744791493 | Maikop                     | Russian Federation                    | active |   1
  50 | Diane Collins        | 115 Hidalgo Parkway             | 80168    | 307703950263 | Omdurman                   | Sudan                                 | active |   1
 362 | Nicholas Barfield    | 1163 London Parkway             | 6066     | 675120358494 | Belm                       | Brazil                                | active |   1
 188 | Melanie Armstrong    | 1166 Changhwa Street            | 58852    | 650752094490 | Bayugan                    | Philippines                           | active |   1
 218 | Vera Mccoy           | 1168 Najafabad Parkway          | 40301    | 886649065861 | Kabul                      | Afghanistan                           | active |   1
 122 | Thelma Murray        | 1175 Tanauan Way                | 64615    | 937222955822 | Lima                       | Peru                                  | active |   1
 292 | Misty Lambert        | 1192 Tongliao Street            | 19065    | 350970907017 | Sharja                     | United Arab Emirates                  | active |   2
 216 | Natalie Meyer        | 1201 Qomsheh Manor              | 21464    | 873492228462 | Aparecida de Goinia        | Brazil                                | active |   1
 579 | Daryl Larue          | 1208 Tama Loop                  | 73605    | 954786054144 | Mosul                      | Iraq                                  | active |   2
  59 | Cheryl Murphy        | 1213 Ranchi Parkway             | 94352    | 800024380485 | Mysore                     | India                                 | active |   1
  63 | Ashley Richardson    | 1214 Hanoi Way                  | 67055    | 491001136577 | Lincoln                    | United States                         | active |   1
 204 | Rosemary Schmidt     | 1215 Pyongyang Parkway          | 25238    | 646237101779 | Usak                       | Turkey                                | active |   1
 341 | Peter Menard         | 1217 Konotop Avenue             | 504      | 718917251754 | Ede                        | Netherlands                           | active |   1
 215 | Jessie Banks         | 1229 Valencia Parkway           | 99124    | 352679173732 | Stara Zagora               | Bulgaria                              | active |   2
 242 | Glenda Frazier       | 1246 Boksburg Parkway           | 28349    | 890283544295 | Qinhuangdao                | China                                 | active |   1
 337 | Jerry Jordon         | 124 al-Manama Way               | 52368    | 647899404952 | Onomichi                   | Japan                                 | active |   1
 230 | Joy George           | 1256 Bislig Boulevard           | 50598    | 479007229460 | Botosani                   | Romania                               | active |   2
 468 | Tim Cary             | 1257 Guadalajara Street         | 33599    | 195337700615 | Bijapur                    | India                                 | active |   1
 404 | Stanley Scroggins    | 1266 Laredo Parkway             | 7664     | 1483365694   | Omiya                      | Japan                                 | active |   2
 424 | Kyle Spurlock        | 1269 Botosani Manor             | 47394    | 736517327853 | Shanwei                    | China                                 | active |   2
 507 | Edgar Rhoads         | 1269 Ipoh Avenue                | 54674    | 402630109080 | Eskisehir                  | Turkey                                | active |   2
 163 | Cathy Spencer        | 1287 Xiangfan Boulevard         | 57844    | 819416131190 | Kakamigahara               | Japan                                 | active |   1
 444 | Marcus Hidalgo       | 1289 Belm Boulevard             | 88306    | 237368926031 | Tartu                      | Estonia                               | active |   2
 169 | Erica Matthews       | 1294 Firozabad Drive            | 70618    | 161801569569 | Pingxiang                  | China                                 | active |   2
 484 | Roberto Vu           | 1297 Alvorada Parkway           | 11839    | 508348602835 | Yinchuan                   | China                                 | active |   1
  96 | Diana Alexander      | 1308 Arecibo Way                | 30695    | 6171054059   | Augusta-Richmond County    | United States                         | active |   1
 281 | Leona Obrien         | 1308 Sumy Loop                  | 30657    | 583021225407 | Fuzhou                     | China                                 | active |   2
 248 | Caroline Bowman      | 1309 Weifang Street             | 57338    | 435785045362 | Tallahassee                | United States                         | active |   1
 466 | Leo Ebert            | 1322 Mosul Parkway              | 95400    | 268053970382 | Dongying                   | China                                 | active |   1
 599 | Austin Cintron       | 1325 Fukuyama Street            | 27107    | 288241215394 | Tieli                      | China                                 | active |   2
 598 | Wade Delvalle        | 1331 Usak Boulevard             | 61960    | 145308717464 | Lausanne                   | Switzerland                           | active |   1
 533 | Jessie Milam         | 1332 Gaziantep Lane             | 22813    | 383353187467 | Binzhou                    | China                                 | active |   1
 211 | Stacey Montgomery    | 1333 Haldia Street              | 82161    | 408304391718 | Fuyu                       | China                                 | active |   1
 147 | Joanne Robertson     | 1337 Lincoln Parkway            | 99457    | 597815221267 | Urawa                      | Japan                                 | active |   2
 563 | Ken Prewitt          | 1342 Abha Boulevard             | 10714    | 997453607116 | Bucuresti                  | Romania                               | active |   2
 402 | Luis Yanez           | 1346 Mysore Drive               | 61507    | 516647474029 | Brest                      | France                                | active |   1
 317 | Edward Baugh         | 1359 Zhoushan Parkway           | 29763    | 46568045367  | Trshavn                    | Faroe Islands                         | active |   2
 351 | Jack Foust           | 1378 Beira Loop                 | 40792    | 840957664136 | Zeleznogorsk               | Russian Federation                    | active |   1
 104 | Rita Graham          | 1386 Yangor Avenue              | 80720    | 449216226468 | Toulon                     | France                                | active |   1
 453 | Calvin Martel        | 138 Caracas Boulevard           | 16790    | 974433019532 | Maracabo                   | Venezuela                             | active |   1
 587 | Sergio Stanfield     | 1402 Zanzibar Boulevard         | 71102    | 387448063440 | Celaya                     | Mexico                                | active |   1
 429 | Frederick Isbell     | 1404 Taguig Drive               | 87212    | 572068624538 | Tsuyama                    | Japan                                 | active |   2
 282 | Jenny Castro         | 1405 Chisinau Place             | 8160     | 62781725285  | Ponce                      | Puerto Rico                           | active |   2
 572 | Sidney Burleson      | 1405 Hagonoy Avenue             | 86587    | 867287719310 | Czestochowa                | Poland                                | active |   1
 567 | Alfredo Mcadams      | 1407 Surakarta Manor            | 33224    | 324346485054 | Serpuhov                   | Russian Federation                    | active |   2
 187 | Brittany Riley       | 140 Chiayi Parkway              | 38982    | 855863906434 | Sumy                       | Ukraine                               | active |   2
 547 | Kurt Emmons          | 1421 Quilmes Lane               | 19151    | 135407755975 | Kanazawa                   | Japan                                 | active |   1
  28 | Cynthia Young        | 1425 Shikarpur Manor            | 65599    | 678220867005 | Munger (Monghyr)           | India                                 | active |   1
 526 | Karl Seal            | 1427 Tabuk Place                | 31342    | 214756839122 | Cape Coral                 | United States                         | active |   2
  37 | Pamela Baker         | 1440 Fukuyama Loop              | 47929    | 912257250465 | Nanyang                    | China                                 | active |   1
 467 | Alvin Deloach        | 1447 Chatsworth Place           | 41545    | 769370126331 | Cuauhtmoc                  | Mexico                                | active |   2
 554 | Dwayne Olvera        | 1447 Imus Place                 | 12905    | 62127829280  | Rajkot                     | India                                 | active |   1
  43 | Christine Roberts    | 1447 Imus Way                   | 48942    | 539758313890 | Faaa                       | French Polynesia                      | active |   2
 588 | Marion Ocampo        | 1464 Kursk Parkway              | 17381    | 338758048786 | Weifang                    | China                                 | active |   1
 469 | Wesley Bull          | 1469 Plock Lane                 | 95835    | 622884741180 | Ourense (Orense)           | Spain                                 | active |   2
 177 | Samantha Duncan      | 146 Johannesburg Way            | 54132    | 953689007081 | Matamoros                  | Mexico                                | active |   2
 247 | Stella Moreno        | 1473 Changhwa Parkway           | 75933    | 266798132374 | Coacalco de Berriozbal     | Mexico                                | active |   1
 243 | Lydia Burke          | 1483 Pathankot Street           | 37288    | 686015532180 | San Miguel de Tucumn       | Argentina                             | active |   1
 457 | Bill Gavin           | 1485 Bratislava Place           | 83183    | 924663855568 | Rockford                   | United States                         | active |   2
 577 | Clifton Malcolm      | 1489 Kakamigahara Lane          | 98883    | 29341849811  | Tanshui                    | Taiwan                                | active |   2
 555 | Dwight Lombardi      | 1497 Fengshan Drive             | 63022    | 368738360376 | Chatsworth                 | South Africa                          | active |   1
 252 | Mattie Hoffman       | 1497 Yuzhou Drive               | 3433     | 246810237916 | London                     | United Kingdom                        | active |   2
 497 | Gilbert Sledge       | 1515 Korla Way                  | 57197    | 959467760895 | York                       | United Kingdom                        | active |   2
 344 | Henry Billingsley    | 1516 Escobar Drive              | 46069    | 64536069371  | Nukualofa                  | Tonga                                 | active |   1
 268 | Nina Soto            | 1519 Ilorin Place               | 49298    | 357445645426 | Palghat (Palakkad)         | India                                 | active |   1
  94 | Norma Gonzales       | 152 Kitwe Parkway               | 53182    | 835433605312 | Bislig                     | Philippines                           | active |   1
  10 | Dorothy Taylor       | 1531 Sal Drive                  | 53628    | 648856936185 | Esfahan                    | Iran                                  | active |   1
 167 | Sally Pierce         | 1540 Wroclaw Drive              | 62686    | 182363341674 | Chandrapur                 | India                                 | active |   2
  11 | Lisa Anderson        | 1542 Tarlac Parkway             | 1027     | 635297277345 | Sagamihara                 | Japan                                 | active |   2
 165 | Lorraine Stephens    | 154 Tallahassee Loop            | 62250    | 935508855935 | Hami                       | China                                 | active |   2
  75 | Tammy Sanders        | 1551 Rampur Lane                | 72394    | 251164340471 | Changhwa                   | Taiwan                                | active |   2
  85 | Anne Powell          | 1557 Ktahya Boulevard           | 88002    | 720998247660 | Bradford                   | United Kingdom                        | active |   2
 151 | Megan Palmer         | 1560 Jelets Boulevard           | 77777    | 189446090264 | Laiwu                      | China                                 | active |   2
 365 | Bruce Schwarz        | 1565 Tangail Manor              | 45750    | 634445428822 | Okinawa                    | Japan                                 | active |   2
   4 | Barbara Jones        | 1566 Inegl Manor                | 53561    | 705814003527 | Myingyan                   | Myanmar                               | active |   2
 576 | Morris Mccarter      | 1568 Celaya Parkway             | 34750    | 278669994384 | Fengshan                   | Taiwan                                | active |   2
 511 | Chester Benner       | 1574 Goinia Boulevard           | 39529    | 59634255214  | Suihua                     | China                                 | active |   1
 583 | Marshall Thorn       | 1584 Ljubertsy Lane             | 22954    | 285710089439 | Southampton                | United Kingdom                        | active |   1
  67 | Kelly Torres         | 1586 Guaruj Place               | 5135     | 947233365992 | Xiangtan                   | China                                 | active |   1
 266 | Nora Herrera         | 1587 Loja Manor                 | 5410     | 621625204422 | Salzburg                   | Austria                               | active |   2
 426 | Bradley Motley       | 1596 Acua Parkway               | 70425    | 157133457169 | Purnea (Purnia)            | India                                 | active |   1
  97 | Annie Russell        | 1599 Plock Drive                | 71986    | 817248913162 | Tete                       | Mozambique                            | active |   2
 376 | Randy Gaither        | 1618 Olomouc Manor              | 26385    | 96846695220  | Kurgan                     | Russian Federation                    | active |   1
 462 | Warren Sherrod       | 1621 Tongliao Avenue            | 22173    | 209342540247 | Usolje-Sibirskoje          | Russian Federation                    | active |   2
 345 | Carl Artis           | 1628 Nagareyama Lane            | 60079    | 20064292617  | San Lorenzo                | Paraguay                              | active |   1
  42 | Carolyn Perez        | 1632 Bislig Avenue              | 61117    | 471675840679 | Pak Kret                   | Thailand                              | active |   2
 299 | James Gannon         | 1635 Kuwana Boulevard           | 52137    | 710603868323 | Hiroshima                  | Japan                                 | active |   2
 352 | Albert Crouse        | 1641 Changhwa Place             | 37636    | 256546485220 | Bamenda                    | Cameroon                              | active |   1
 363 | Roy Whiting          | 1658 Jastrzebie-Zdrj Loop       | 96584    | 568367775448 | Nyeri                      | Kenya                                 | active |   2
 140 | Eva Ramos            | 1666 Beni-Mellal Place          | 13377    | 9099941466   | Clarksville                | United States                         | active |   1
  30 | Melissa King         | 1668 Anpolis Street             | 50199    | 525255540978 | Lungtan                    | Taiwan                                | active |   1
 347 | Ryan Salisbury       | 1673 Tangail Drive              | 26857    | 627924259271 | Daugavpils                 | Latvia                                | active |   2
 396 | Earl Shanks          | 168 Cianjur Manor               | 73824    | 679095087143 | Iwatsuki                   | Japan                                 | active |   1
  95 | Paula Bryant         | 1697 Tanauan Lane               | 22870    | 4764773857   | Pathankot                  | India                                 | active |   2
 353 | Jonathan Scarborough | 1698 Southport Loop             | 49009    | 754358349853 | Pachuca de Soto            | Mexico                                | active |   1
  62 | Joan Cooper          | 1717 Guadalajara Lane           | 85505    | 914090181665 | Saint Louis                | United States                         | active |   1
  45 | Janet Phillips       | 1718 Valencia Street            | 37359    | 675292816413 | Antofagasta                | Chile                                 | active |   1
 423 | Alfred Casillas      | 1727 Matamoros Place            | 78813    | 129673677866 | Sawhaj                     | Egypt                                 | active |   2
 233 | Lillie Kim           | 1736 Cavite Place               | 98775    | 431770603551 | Idfu                       | Egypt                                 | active |   2
  87 | Wanda Patterson      | 1740 Portoviejo Avenue          | 29932    | 198123170793 | Sincelejo                  | Colombia                              | active |   1
 559 | Everett Banda        | 1741 Hoshiarpur Boulevard       | 22372    | 855066328617 | Bilbays                    | Egypt                                 | active |   2
 565 | Jaime Nettles        | 1746 Faaa Way                   | 32515    | 863080561151 | Hunuco                     | Peru                                  | active |   2
 509 | Raul Fortier         | 1747 Rustenburg Place           | 51369    | 442673923363 | Chapra                     | India                                 | active |   1
 137 | Rhonda Kennedy       | 1749 Daxian Place               | 11044    | 963369996279 | Apeldoorn                  | Netherlands                           | active |   2
 590 | Seth Hannon          | 1759 Niznekamsk Avenue          | 39414    | 864392582257 | al-Manama                  | Bahrain                               | active |   2
 249 | Dora Medina          | 1760 Oshawa Manor               | 38140    | 56257502250  | Tianjin                    | China                                 | active |   2
 267 | Margie Wade          | 1762 Paarl Parkway              | 53928    | 192459639410 | Lengshuijiang              | China                                 | active |   1
 516 | Elmer Noe            | 1768 Udine Loop                 | 32347    | 448876499197 | Battambang                 | Cambodia                              | active |   2
 318 | Brian Wyman          | 1769 Iwaki Lane                 | 25787    | 556100547674 | Bydgoszcz                  | Poland                                | active |   1
 313 | Donald Mahon         | 1774 Yaound Place               | 91400    | 613124286867 | Ezhou                      | China                                 | active |   2
 514 | Franklin Troutman    | 1778 Gijn Manor                 | 35156    | 288910576761 | Zaoyang                    | China                                 | active |   2
  23 | Sarah Lewis          | 1780 Hino Boulevard             | 7716     | 902731229323 | Liepaja                    | Latvia                                | active |   2
 386 | Todd Tan             | 1793 Meixian Place              | 33535    | 619966287415 | Kamjanets-Podilskyi        | Ukraine                               | active |   1
  53 | Heather Morris       | 17 Kabul Boulevard              | 38594    | 697760867968 | Nagareyama                 | Japan                                 | active |   1
 329 | Frank Waggoner       | 1816 Bydgoszcz Loop             | 64308    | 965273813662 | Jamalpur                   | Bangladesh                            | active |   2
 578 | Willard Lumpkin      | 1819 Alessandria Loop           | 53829    | 377633994405 | Carmen                     | Mexico                                | active |   2
 223 | Melinda Fernandez    | 1820 Maring Parkway             | 88307    | 99760893676  | Mandi Bahauddin            | Pakistan                              | active |   1
 428 | Herbert Kruger       | 1823 Hoshiarpur Lane            | 33191    | 307133768620 | Syktyvkar                  | Russian Federation                    | active |   2
 545 | Julio Noland         | 182 Nukualofa Drive             | 15414    | 426346224043 | Konotop                    | Ukraine                               | active |   2
 332 | Stephen Qualls       | 1838 Tabriz Lane                | 1195     | 38988715447  | Dhaka                      | Bangladesh                            | active |   1
 183 | Ida Andrews          | 1839 Szkesfehrvr Parkway        | 55709    | 947468818183 | Luzinia                    | Brazil                                | active |   2
 538 | Ted Breaux           | 183 Haiphong Street             | 69953    | 488600270038 | Baicheng                   | China                                 | active |   2
 174 | Yvonne Watkins       | 1848 Salala Boulevard           | 25220    | 48265851133  | Ocumare del Tuy            | Venezuela                             | active |   2
 474 | Dustin Gillette      | 1854 Okara Boulevard            | 42123    | 131912793873 | Emmen                      | Netherlands                           | active |   2
 129 | Carrie Porter        | 1854 Tieli Street               | 15819    | 509492324775 | Liaocheng                  | China                                 | active |   1
 487 | Hector Poindexter    | 185 Mannheim Lane               | 23661    | 589377568313 | Pjatigorsk                 | Russian Federation                    | active |   2
 420 | Jacob Lance          | 1866 al-Qatif Avenue            | 89420    | 546793516940 | El Monte                   | United States                         | active |   1
 575 | Isaac Oglesby        | 186 Skikda Lane                 | 89422    | 14465669789  | Cuernavaca                 | Mexico                                | active |   2
 464 | Jerome Kenyon        | 1872 Toulon Loop                | 7939     | 928809465153 | Rancagua                   | Chile                                 | active |   1
 170 | Beatrice Arnold      | 1877 Ezhou Lane                 | 63337    | 264541743403 | Udaipur                    | India                                 | active |   1
 301 | Robert Baughman      | 1883 Maikop Lane                | 68469    | 96110042435  | Kaliningrad                | Russian Federation                    | active |   2
 274 | Naomi Jennings       | 1884 Shikarpur Avenue           | 85548    | 959949395183 | Karnal                     | India                                 | active |   1
 456 | Ronnie Ricketts      | 1889 Valparai Way               | 75559    | 670370974122 | Ziguinchor                 | Senegal                               | active |   2
 593 | Rene Mcalister       | 1895 Zhezqazghan Drive          | 36693    | 137809746111 | Garden Grove               | United States                         | active |   2
 302 | Michael Silverman    | 1908 Gaziantep Place            | 58979    | 108053751300 | Tiefa                      | China                                 | active |   1
 339 | Walter Perryman      | 1909 Benguela Lane              | 19913    | 624138001031 | Xinxiang                   | China                                 | active |   2
 485 | Clyde Tobias         | 1909 Dayton Avenue              | 88513    | 702955450528 | Shaoguan                   | China                                 | active |   1
 366 | Brandon Huey         | 1912 Emeishan Drive             | 33050    | 99883471275  | Balikesir                  | Turkey                                | active |   1
   1 | Mary Smith           | 1913 Hanoi Way                  | 35200    | 28303384290  | Sasebo                     | Japan                                 | active |   1
 100 | Robin Hayes          | 1913 Kamakura Place             | 97287    | 942570536750 | Jelets                     | Russian Federation                    | active |   1
 553 | Max Pitt             | 1917 Kumbakonam Parkway         | 11892    | 698182547686 | Novi Sad                   | Yugoslavia                            | active |   1
 368 | Harry Arce           | 1922 Miraj Way                  | 13203    | 320471479776 | Najafabad                  | Iran                                  | active |   1
 441 | Mario Cheatham       | 1924 Shimonoseki Drive          | 52625    | 406784385440 | Batna                      | Algeria                               | active |   1
 221 | Bessie Morrison      | 1926 Gingoog Street             | 22824    | 469738825391 | Syrakusa                   | Italy                                 | active |   1
 291 | Toni Holt            | 1936 Cuman Avenue               | 61195    | 976798660411 | Roanoke                    | United States                         | active |   1
 536 | Fernando Churchill   | 193 Bhusawal Place              | 9750     | 745267607502 | Tonghae                    | South Korea                           | active |   2
  88 | Bonnie Hughes        | 1942 Ciparay Parkway            | 82624    | 978987363654 | Cheju                      | South Korea                           | active |   2
 276 | Brandy Graves        | 1944 Bamenda Way                | 24645    | 75975221996  | Warren                     | United States                         | active |   1
 419 | Chad Carbone         | 1948 Bayugan Parkway            | 60622    | 987306329957 | Katihar                    | India                                 | active |   1
 519 | Ron Deluca           | 1949 Sanya Street               | 61244    | 132100972047 | Isesaki                    | Japan                                 | active |   2
  90 | Ruby Washington      | 1952 Chatsworth Drive           | 25958    | 991562402283 | Meixian                    | China                                 | active |   2
 148 | Eleanor Hunt         | 1952 Pune Lane                  | 92150    | 354615066969 | Saint-Denis                | Runion                                | active |   1
 535 | Javier Elrod         | 195 Ilorin Street               | 49250    | 8912935608   | NDjamna                    | Chad                                  | active |   1
 152 | Alicia Mills         | 1963 Moscow Place               | 64863    | 761379480249 | Nagaon                     | India                                 | active |   1
 238 | Nellie Garrett       | 1964 Gijn Manor                 | 14408    | 918119601885 | Shimoga                    | India                                 | active |   1
  64 | Judith Cox           | 1966 Amroha Avenue              | 70385    | 333489324603 | Daxian                     | China                                 | active |   2
 117 | Edith Mcdonald       | 1967 Sincelejo Place            | 73644    | 577812616052 | Gandhinagar                | India                                 | active |   1
 275 | Carole Barnett       | 1980 Kamjanets-Podilskyi Street | 89502    | 874337098891 | Peoria                     | United States                         | active |   2
 521 | Roland South         | 1993 0 Loop                     | 41214    | 25865528181  | Yingkou                    | China                                 | active |   2
  44 | Marie Turner         | 1998 Halifax Drive              | 76022    | 177727722820 | Lipetsk                    | Russian Federation                    | active |   1
 226 | Maureen Little       | 201 Effon-Alaiye Way            | 64344    | 684192903087 | Asuncin                    | Paraguay                              | active |   2
 447 | Clifford Bowens      | 207 Cuernavaca Loop             | 52671    | 782900030287 | Nabereznyje Telny          | Russian Federation                    | active |   1
 377 | Howard Fortner       | 220 Hidalgo Drive               | 45298    | 342720754566 | Kermanshah                 | Iran                                  | active |   1
 214 | Kristin Johnston     | 226 Brest Manor                 | 2299     | 785881412500 | Sunnyvale                  | United States                         | active |   1
 283 | Felicia Sutton       | 226 Halifax Street              | 58492    | 790651020929 | Korla                      | China                                 | active |   1
 439 | Alexander Fennell    | 231 Kaliningrad Place           | 57833    | 575081026569 | Bergamo                    | Italy                                 | active |   2
 120 | Sylvia Ortiz         | 241 Mosul Lane                  | 76157    | 765345144779 | Dos Quebradas              | Colombia                              | active |   2
 584 | Salvador Teel        | 247 Jining Parkway              | 53446    | 170115379190 | Banjul                     | Gambia                                | active |   2
  13 | Karen Jackson        | 270 Amroha Parkway              | 29610    | 695479687538 | Osmaniye                   | Turkey                                | active |   2
 471 | Dean Sauer           | 270 Tambaram Parkway            | 9668     | 248446668735 | Johannesburg               | South Africa                          | active |   1
  17 | Donna Thompson       | 270 Toulon Boulevard            | 81766    | 407752414682 | Elista                     | Russian Federation                    | active |   1
 431 | Joel Francisco       | 287 Cuautla Boulevard           | 72736    | 82619513349  | Sucre                      | Bolivia                               | active |   2
 172 | Bernice Willis       | 29 Pyongyang Loop               | 47753    | 734780743462 | Batman                     | Turkey                                | active |   1
 245 | Courtney Day         | 300 Junan Street                | 81314    | 890289150158 | Uijongbu                   | South Korea                           | active |   1
 171 | Dolores Wagner       | 316 Uruapan Street              | 58194    | 275788967899 | Ipoh                       | Malaysia                              | active |   2
 493 | Brent Harkins        | 319 Plock Parkway               | 26101    | 854259976812 | Sultanbeyli                | Turkey                                | active |   1
 448 | Miguel Betancourt    | 319 Springs Loop                | 99552    | 72524459905  | Erlangen                   | Germany                               | active |   1
  81 | Andrea Henderson     | 320 Baiyin Parkway              | 37307    | 223664661973 | Mahajanga                  | Madagascar                            | active |   1
  18 | Carol Garcia         | 320 Brest Avenue                | 43331    | 747791594069 | Kaduna                     | Nigeria                               | active |   2
 294 | Shelly Watts         | 32 Pudukkottai Lane             | 38834    | 967274728547 | Dayton                     | United States                         | active |   2
 394 | Chris Brothers       | 331 Bydgoszcz Parkway           | 966      | 537374465982 | Gijn                       | Spain                                 | active |   2
 118 | Kim Cruz             | 333 Goinia Way                  | 78625    | 909029256431 | Grand Prairie              | United States                         | active |   1
 194 | Kristen Chavez       | 345 Oshawa Boulevard            | 32114    | 104491201771 | Hino                       | Japan                                 | active |   2
 234 | Claudia Fuller       | 346 Skikda Parkway              | 90628    | 630424482919 | Jalib al-Shuyukh           | Kuwait                                | active |   1
 229 | Tamara Nguyen        | 356 Olomouc Manor               | 93323    | 22326410776  | Anpolis                    | Brazil                                | active |   1
  16 | Sandra Martin        | 360 Toulouse Parkway            | 54308    | 949312333307 | Southend-on-Sea            | United Kingdom                        | active |   2
 495 | Charlie Bess         | 362 Rajkot Lane                 | 98030    | 962020153680 | Baiyin                     | China                                 | active |   2
 383 | Martin Bales         | 368 Hunuco Boulevard            | 17165    | 106439158941 | Namibe                     | Angola                                | active |   1
 541 | Darren Windham       | 379 Lublin Parkway              | 74568    | 921960450089 | Livorno                    | Italy                                 | active |   2
 348 | Roger Quintanilla    | 381 Kabul Way                   | 87272    | 55477302294  | Hsichuh                    | Taiwan                                | active |   2
 200 | Jeanne Lawson        | 387 Mwene-Ditu Drive            | 8073     | 764477681869 | Ashgabat                   | Turkmenistan                          | active |   2
 546 | Kelly Knott          | 390 Wroclaw Way                 | 5753     | 357593328658 | Sanya                      | China                                 | active |   1
  35 | Virginia Green       | 391 Callao Drive                | 34021    | 440512153169 | Toulouse                   | France                                | active |   2
 414 | Vincent Ralston      | 397 Sunnyvale Avenue            | 55566    | 680851640676 | Allende                    | Mexico                                | active |   1
 501 | Ruben Geary          | 414 Mandaluyong Street          | 16370    | 52709222667  | Lublin                     | Poland                                | active |   1
 564 | Bob Pfeiffer         | 415 Pune Avenue                 | 44274    | 203202500108 | Xintai                     | China                                 | active |   2
 475 | Pedro Chestnut       | 421 Yaound Street               | 11363    | 726875628268 | ostka                      | Ukraine                               | active |   2
  41 | Stephanie Mitchell   | 42 Brindisi Place               | 16744    | 42384721397  | Yerevan                    | Armenia                               | active |   1
 592 | Terrance Roush       | 42 Fontana Avenue               | 14684    | 437829801725 | Szkesfehrvr                | Hungary                               | active |   1
 227 | Colleen Burton       | 430 Alessandria Loop            | 47446    | 669828224459 | Saarbrcken                 | Germany                               | active |   1
 333 | Andrew Purdy         | 431 Szkesfehrvr Avenue          | 57828    | 119501405123 | Baku                       | Azerbaijan                            | active |   2
 175 | Annette Olson        | 431 Xiangtan Avenue             | 4854     | 230250973122 | Allappuzha (Alleppey)      | India                                 | active |   1
 369 | Fred Wheat           | 433 Florencia Street            | 91330    | 561729882725 | Jurez                      | Mexico                                | active |   2
 209 | Tonya Chapman        | 43 Dadu Avenue                  | 4855     | 95666951770  | Bhilwara                   | India                                 | active |   2
 537 | Clinton Buford       | 43 Vilnius Manor                | 79814    | 484500282381 | Aurora                     | United States                         | active |   2
 264 | Gwendolyn May        | 446 Kirovo-Tepetsk Lane         | 19428    | 303967439816 | Higashiosaka               | Japan                                 | active |   1
 193 | Katie Elliott        | 447 Surakarta Loop              | 10428    | 940830176580 | Kisumu                     | Kenya                                 | active |   2
 293 | Mae Fletcher         | 44 Najafabad Way                | 61391    | 96604821070  | Donostia-San Sebastin      | Spain                                 | active |   2
 401 | Tony Carranza        | 454 Patiala Lane                | 13496    | 794553031307 | Koriyama                   | Japan                                 | active |   2
 543 | Lance Pemberton      | 454 Qinhuangdao Drive           | 25866    | 786270036240 | Beni-Mellal                | Morocco                               | active |   1
 278 | Billie Horton        | 457 Tongliao Loop               | 56254    | 880756161823 | Inegl                      | Turkey                                | active |   2
 321 | Kevin Schuler        | 470 Boksburg Street             | 97960    | 908029859266 | Birgunj                    | Nepal                                 | active |   1
 168 | Regina Berry         | 475 Atinsk Way                  | 59571    | 201705577290 | Jinchang                   | China                                 | active |   1
   8 | Susan Wilson         | 478 Joliet Way                  | 77948    | 657282285970 | Hamilton                   | New Zealand                           | active |   2
 142 | April Burns          | 483 Ljubertsy Parkway           | 60562    | 581174211853 | Dundee                     | United Kingdom                        | active |   1
 528 | Claude Herzog        | 486 Ondo Parkway                | 35202    | 105882218332 | Benguela                   | Angola                                | active |   1
 440 | Bernard Colby        | 495 Bhimavaram Lane             | 3        | 82088937724  | Dhule (Dhulia)             | India                                 | active |   1
 503 | Angel Barclay        | 496 Celaya Drive                | 90797    | 759586584889 | Ueda                       | Japan                                 | active |   1
 384 | Ernest Stepp         | 500 Lincoln Parkway             | 95509    | 550306965159 | Huaian                     | China                                 | active |   2
 334 | Raymond Mcwhorter    | 503 Sogamoso Loop               | 49812    | 834626715837 | Sumqayit                   | Azerbaijan                            | active |   2
 558 | Jimmie Eggleston     | 505 Madiun Boulevard            | 97271    | 970638808606 | Wroclaw                    | Poland                                | active |   1
 335 | Gregory Mauldin      | 507 Smolensk Loop               | 22971    | 80303246192  | Sousse                     | Tunisia                               | active |   1
 387 | Jesse Schilling      | 514 Ife Way                     | 69973    | 900235712074 | Lubumbashi                 | Congo, The Democratic Republic of the | active |   2
 256 | Mabel Holland        | 51 Laredo Avenue                | 68146    | 884536620568 | Monywa                     | Myanmar                               | active |   2
 400 | Bryan Hardison       | 530 Lausanne Lane               | 11067    | 775235029633 | Dallas                     | United States                         | active |   2
 258 | Myrtle Fleming       | 532 Toulon Street               | 69517    | 46871694740  | Santiago de los Caballeros | Dominican Republic                    | active |   1
 182 | Renee Lane           | 533 al-Ayn Boulevard            | 8862     | 662227486184 | Compton                    | United States                         | active |   1
 566 | Casey Mena           | 539 Hami Way                    | 52196    | 525518075499 | Tokat                      | Turkey                                | active |   1
   5 | Elizabeth Brown      | 53 Idfu Parkway                 | 42399    | 10655648674  | Nantou                     | Taiwan                                | active |   1
 290 | Kristina Chambers    | 544 Tarsus Boulevard            | 53145    | 892523334    | Valle de la Pascua         | Venezuela                             | active |   1
 512 | Cecil Vines          | 548 Uruapan Street              | 35653    | 879347453467 | London                     | United Kingdom                        | active |   1
 527 | Cory Meehan          | 556 Asuncin Way                 | 35364    | 338244023543 | Mogiljov                   | Belarus                               | active |   1
 125 | Ethel Webb           | 569 Baicheng Lane               | 60304    | 490211944645 | Boksburg                   | South Africa                          | active |   1
  79 | Rachel Barnes        | 586 Tete Way                    | 1079     | 18581624103  | Kamakura                   | Japan                                 | active |   1
 330 | Scott Shelley        | 587 Benguela Manor              | 91590    | 165450987037 | Aurora                     | United States                         | active |   1
 433 | Don Bone             | 596 Huixquilucan Place          | 65892    | 342709348083 | Naala-Porto                | Mozambique                            | active |   1
  76 | Irene Price          | 602 Paarl Street                | 98889    | 896314772871 | Pavlodar                   | Kazakstan                             | active |   2
 358 | Samuel Marlow        | 604 Bern Place                  | 5373     | 620719383725 | Ranchi                     | India                                 | active |   2
 517 | Brad Mccurdy         | 608 Birgunj Parkway             | 400      | 627425618482 | Chungho                    | Taiwan                                | active |   2
   9 | Margaret Moore       | 613 Korolev Drive               | 45844    | 380657522649 | Masqat                     | Oman                                  | active |   2
 397 | Jimmy Schrader       | 616 Hagonoy Avenue              | 46043    | 604177838256 | Atinsk                     | Russian Federation                    | active |   1
 355 | Terry Grissom        | 619 Hunuco Avenue               | 81508    | 142596392389 | Matsue                     | Japan                                 | active |   2
  34 | Rebecca Scott        | 61 Tama Street                  | 94065    | 708403338270 | Kurashiki                  | Japan                                 | active |   2
 202 | Carla Gutierrez      | 642 Nador Drive                 | 3924     | 369050085652 | Bhusawal                   | India                                 | active |   2
 481 | Herman Devore        | 64 Korla Street                 | 25145    | 510383179153 | Mwanza                     | Tanzania                              | active |   1
 316 | Steven Curley        | 651 Pathankot Loop              | 59811    | 139378397418 | Miraj                      | India                                 | active |   1
 490 | Sam Mcduffie         | 656 Matamoros Drive             | 19489    | 17305839123  | Sogamoso                   | Colombia                              | active |   1
 212 | Wilma Richards       | 660 Jedda Boulevard             | 25053    | 168758068397 | Bellevue                   | United States                         | active |   2
 295 | Daisy Bates          | 661 Chisinau Lane               | 8856     | 816436065431 | Kolpino                    | Russian Federation                    | active |   1
  40 | Amanda Carter        | 671 Graz Street                 | 94399    | 680768868518 | Nador                      | Morocco                               | active |   2
  47 | Frances Parker       | 686 Garland Manor               | 52535    | 69493378813  | Juazeiro do Norte          | Brazil                                | active |   1
 303 | William Satterfield  | 687 Alessandria Parkway         | 57587    | 407218522294 | Sanaa                      | Yemen                                 | active |   2
 201 | Vicki Fields         | 68 Molodetno Manor              | 4662     | 146640639760 | Witten                     | Germany                               | active |   1
 340 | Patrick Newsom       | 68 Ponce Parkway                | 85926    | 870635127812 | Hanoi                      | Vietnam                               | active |   1
 408 | Manuel Murrell       | 692 Amroha Drive                | 35575    | 359478883004 | Jaffna                     | Sri Lanka                             | active |   1
   3 | Linda Williams       | 692 Joliet Street               | 83579    | 448477190408 | Athenai                    | Greece                                | active |   1
 483 | Vernon Chapa         | 698 Jelets Boulevard            | 2596     | 975185523021 | Denizli                    | Turkey                                | active |   2
  65 | Rose Howard          | 698 Otsu Street                 | 71110    | 409983924481 | Cayenne                    | French Guiana                         | active |   2
 435 | Ricky Shelby         | 722 Bradford Lane               | 90920    | 746251338300 | Junan                      | China                                 | active |   2
  49 | Joyce Edwards        | 725 Isesaki Place               | 74428    | 876295323994 | Jedda                      | Saudi Arabia                          | active |   2
 101 | Peggy Myers          | 733 Mandaluyong Place           | 77459    | 196568435814 | Abha                       | Saudi Arabia                          | active |   1
 399 | Danny Isom           | 734 Bchar Place                 | 30586    | 280578750435 | Okara                      | Pakistan                              | active |   1
 460 | Leon Bostic          | 734 Tanshui Avenue              | 70664    | 366776723320 | Florencia                  | Colombia                              | active |   1
 184 | Vivian Ruiz          | 741 Ambattur Manor              | 43310    | 302590383819 | s-Hertogenbosch            | Netherlands                           | active |   1
 311 | Paul Trout           | 746 Joliet Lane                 | 94878    | 688485191923 | Kursk                      | Russian Federation                    | active |   2
 210 | Ella Oliver          | 751 Lima Loop                   | 99405    | 756460337785 | Aden                       | Yemen                                 | active |   2
 253 | Terry Carlson        | 752 Ondo Loop                   | 32474    | 134673576619 | Miyakonojo                 | Japan                                 | active |   1
 389 | Alan Kahn            | 753 Ilorin Avenue               | 3656     | 464511145118 | Emeishan                   | China                                 | active |   1
 176 | June Carroll         | 757 Rustenburg Avenue           | 89668    | 506134035434 | Skikda                     | Algeria                               | active |   1
 130 | Charlotte Hunter     | 758 Junan Lane                  | 82639    | 935448624185 | guas Lindas de Gois        | Brazil                                | active |   1
 581 | Virgil Wofford       | 760 Miyakonojo Drive            | 64682    | 294449058179 | Jos Azueta                 | Mexico                                | active |   1
 134 | Emma Boyd            | 765 Southampton Drive           | 4285     | 23712411567  | Qalyub                     | Egypt                                 | active |   1
 391 | Clarence Gamez       | 767 Pyongyang Drive             | 83536    | 667736124769 | Izumisano                  | Japan                                 | active |   1
 459 | Tommy Collazo        | 76 Kermanshah Manor             | 23343    | 762361821578 | Qomsheh                    | Iran                                  | active |   1
  14 | Betty White          | 770 Bydgoszcz Avenue            | 16266    | 517338314235 | Citrus Heights             | United States                         | active |   2
 257 | Marsha Douglas       | 771 Yaound Manor                | 86768    | 245477603573 | Beira                      | Mozambique                            | active |   2
 491 | Rick Mattox          | 775 ostka Drive                 | 22358    | 171973024401 | Mit Ghamr                  | Egypt                                 | active |   2
 312 | Mark Rinehart        | 780 Kimberley Way               | 17032    | 824396883951 | Tabuk                      | Saudi Arabia                          | active |   2
 149 | Valerie Black        | 782 Mosul Street                | 25545    | 885899703621 | Brockton                   | United States                         | active |   1
  29 | Angela Hernandez     | 786 Aurora Avenue               | 65750    | 18461860151  | Shimonoseki                | Japan                                 | active |   2
 504 | Nathaniel Adam       | 786 Matsue Way                  | 37469    | 111177206479 | Joliet                     | United States                         | active |   1
 136 | Anita Morales        | 788 Atinsk Street               | 81691    | 146497509724 | Hubli-Dharwad              | India                                 | active |   2
 412 | Allen Butterfield    | 791 Salinas Street              | 40509    | 129953030512 | Hoshiarpur                 | India                                 | active |   2
 154 | Michele Grant        | 798 Cianjur Avenue              | 76990    | 499408708580 | Yuncheng                   | China                                 | active |   2
 127 | Elaine Stevens       | 801 Hagonoy Drive               | 8439     | 237426099212 | Smolensk                   | Russian Federation                    | active |   2
 110 | Tiffany Jordan       | 804 Elista Drive                | 61069    | 379804592943 | Enshi                      | China                                 | active |   2
  12 | Nancy Thomas         | 808 Bhopal Manor                | 10672    | 465887807014 | Yamuna Nagar               | India                                 | active |   1
 477 | Dan Paine            | 808 Naala-Porto Parkway         | 41060    | 553452430707 | Stockport                  | United Kingdom                        | active |   1
 451 | Jim Rea              | 814 Simferopol Loop             | 48745    | 524567129902 | El Fuerte                  | Mexico                                | active |   1
 262 | Patsy Davidson       | 816 Cayenne Parkway             | 93629    | 282874611748 | Portoviejo                 | Ecuador                               | active |   2
 197 | Sue Peters           | 817 Bradford Loop               | 89459    | 264286442804 | Changzhou                  | China                                 | active |   2
 364 | Benjamin Varney      | 817 Laredo Avenue               | 77449    | 151249681135 | Guadalajara                | Mexico                                | active |   1
  60 | Mildred Bailey       | 81 Hodeida Way                  | 55561    | 250767749542 | Jaipur                     | India                                 | active |   1
 304 | David Royal          | 827 Yuncheng Drive              | 79047    | 504434452842 | Callao                     | Peru                                  | active |   2
 164 | Joann Gardner        | 842 Salzburg Lane               | 3313     | 697151428760 | Tarsus                     | Turkey                                | active |   2
 595 | Terrence Gunderson   | 844 Bucuresti Place             | 36603    | 935952366111 | Jinzhou                    | China                                 | active |   1
 124 | Sheila Wells         | 848 Tafuna Manor                | 45142    | 614935229095 | Ktahya                     | Turkey                                | active |   1
 207 | Gertrude Castillo    | 850 Salala Loop                 | 10800    | 403404780639 | Nuuk                       | Greenland                             | active |   1
 556 | Armando Gruber       | 869 Shikarpur Way               | 57380    | 590764256785 | Southport                  | United Kingdom                        | active |   2
 288 | Bobbie Craig         | 86 Higashiosaka Lane            | 33768    | 957128697225 | Valle de Santiago          | Mexico                                | active |   1
  86 | Jacqueline Long      | 870 Ashqelon Loop               | 84931    | 135117278909 | Songkhla                   | Thailand                              | active |   2
 146 | Jamie Rice           | 879 Newcastle Way               | 90732    | 206841104594 | Sterling Heights           | United States                         | active |   1
 232 | Constance Reid       | 885 Yingkou Manor               | 31390    | 588964509072 | Zaria                      | Nigeria                               | active |   2
 510 | Ben Easter           | 886 Tonghae Place               | 19450    | 711928348157 | Kamyin                     | Russian Federation                    | active |   2
 298 | Erika Pena           | 898 Jining Lane                 | 40070    | 161643343536 | Oulu                       | Finland                               | active |   1
 552 | Hugh Waldrop         | 904 Clarksville Drive           | 52234    | 955349440539 | Haining                    | China                                 | active |   2
 270 | Leah Curtis          | 906 Goinia Way                  | 83565    | 701767622697 | Kalisz                     | Poland                                | active |   1
  48 | Ann Evans            | 909 Garland Manor               | 69367    | 705800322606 | Niznekamsk                 | Russian Federation                    | active |   1
  61 | Katherine Rivera     | 915 Ponce Place                 | 83980    | 1395251317   | Basel                      | Switzerland                           | active |   2
 269 | Cassandra Walters    | 920 Kumbakonam Loop             | 75090    | 685010736240 | Salinas                    | United States                         | active |   1
 574 | Julian Vest          | 923 Tangail Boulevard           | 33384    | 315528269898 | Akishima                   | Japan                                 | active |   2
 141 | Debbie Reyes         | 928 Jaffna Loop                 | 93762    | 581852137991 | Fukuyama                   | Japan                                 | active |   1
  83 | Louise Jenkins       | 929 Tallahassee Loop            | 74671    | 800716535041 | Springs                    | South Africa                          | active |   1
  52 | Julie Sanchez        | 939 Probolinggo Loop            | 4166     | 680428310138 | A Corua (La Corua)         | Spain                                 | active |   1
 135 | Juanita Mason        | 943 Johannesburg Avenue         | 5892     | 90921003005  | Pune                       | India                                 | active |   2
  57 | Evelyn Morgan        | 943 Tokat Street                | 45428    | 889318963672 | Vaduz                      | Liechtenstein                         | active |   2
 393 | Philip Causey        | 954 Lapu-Lapu Way               | 8816     | 737229003916 | Korolev                    | Russian Federation                    | active |   1
 531 | Jamie Waugh          | 958 Sagamihara Lane             | 88408    | 427274926505 | Kuwana                     | Japan                                 | active |   2
 416 | Jeffery Pinson       | 966 Arecibo Loop                | 94018    | 15273765306  | Dadu                       | Pakistan                              | active |   2
 582 | Andy Vanhorn         | 966 Asuncin Way                 | 62703    | 995527378381 | Huejutla de Reyes          | Mexico                                | active |   2
  24 | Kimberly Lee         | 96 Tafuna Way                   | 99865    | 934730187245 | Crdoba                     | Argentina                             | active |   2
 379 | Carlos Coughlin      | 97 Mogiljov Lane                | 89294    | 924815207181 | Bhavnagar                  | India                                 | active |   1
  92 | Tina Simmons         | 984 Effon-Alaiye Avenue         | 17119    | 132986892228 | Goinia                     | Brazil                                | active |   2
 480 | Corey Hauser         | 984 Novoterkassk Loop           | 28165    | 435118527255 | Gaziantep                  | Turkey                                | active |   1
 479 | Zachary Hite         | 98 Pyongyang Boulevard          | 88749    | 191958435142 | Akron                      | United States                         | active |   1
 415 | Glenn Pullen         | 992 Klerksdorp Loop             | 33711    | 855290087237 | Amersfoort                 | Netherlands                           | active |   1
 145 | Lucille Holmes       | 999 Sanaa Loop                  | 3439     | 918032330119 | Soshanguve                 | South Africa                          | active |   1
(353 rows)

SELECT * FROM customer_master where country='Canada';
 id  |      name       |     address      | zip code |    phone     |   city   | country | notes  | sid 
-----+-----------------+------------------+----------+--------------+----------+---------+--------+-----
 476 | Derrick Bourque | 1153 Allende Way | 20336    | 856872225376 | Gatineau | Canada  | active |   1
(1 row)

CREATE VIEW test_view AS SELECT city_id, country_id, city from city ORDER BY city;
SELECT * FROM test_view ORDER BY city;
 city_id | country_id |            city            
---------+------------+----------------------------
       2 |         82 | Abha
       3 |        101 | Abu Dhabi
       1 |         87 | A Corua (La Corua)
       4 |         60 | Acua
       5 |         97 | Adana
       6 |         31 | Addis Abeba
       7 |        107 | Aden
       8 |         44 | Adoni
       9 |         44 | Ahmadnagar
      10 |         50 | Akishima
      11 |        103 | Akron
      12 |        101 | al-Ayn
      17 |         49 | Alessandria
      13 |         82 | al-Hawiya
      18 |         44 | Allappuzha (Alleppey)
      19 |         60 | Allende
      14 |         11 | al-Manama
      20 |          6 | Almirante Brown
      15 |         89 | al-Qadarif
      16 |         82 | al-Qatif
      21 |         15 | Alvorada
      22 |         44 | Ambattur
      23 |         67 | Amersfoort
      24 |         44 | Amroha
      25 |         15 | Angra dos Reis
      26 |         15 | Anpolis
      27 |         22 | Antofagasta
      28 |         15 | Aparecida de Goinia
      29 |         67 | Apeldoorn
      30 |         15 | Araatuba
      31 |         46 | Arak
      32 |         77 | Arecibo
      33 |        103 | Arlington
      34 |         48 | Ashdod
      35 |         98 | Ashgabat
      36 |         48 | Ashqelon
      37 |         73 | Asuncin
      38 |         39 | Athenai
      39 |         80 | Atinsk
      40 |         60 | Atlixco
      41 |        103 | Augusta-Richmond County
      42 |        103 | Aurora
      43 |          6 | Avellaneda
      44 |         15 | Bag
      45 |          6 | Baha Blanca
      46 |         23 | Baicheng
      47 |         23 | Baiyin
      48 |         10 | Baku
      49 |         80 | Balaiha
      50 |         97 | Balikesir
      51 |         44 | Balurghat
      52 |         19 | Bamenda
      53 |         16 | Bandar Seri Begawan
      54 |         37 | Banjul
      55 |        104 | Barcelona
      56 |         91 | Basel
      58 |         97 | Batman
      59 |          2 | Batna
      60 |         18 | Battambang
      57 |         48 | Bat Yam
      61 |         75 | Baybay
      62 |         75 | Bayugan
      63 |          2 | Bchar
      64 |         63 | Beira
      65 |        103 | Bellevue
      66 |         15 | Belm
      67 |          4 | Benguela
      68 |         62 | Beni-Mellal
      69 |         69 | Benin City
      70 |         49 | Bergamo
      71 |         44 | Berhampore (Baharampur)
      72 |         91 | Bern
      73 |         44 | Bhavnagar
      74 |         44 | Bhilwara
      75 |         44 | Bhimavaram
      76 |         44 | Bhopal
      77 |         44 | Bhusawal
      78 |         44 | Bijapur
      79 |         29 | Bilbays
      80 |         23 | Binzhou
      81 |         66 | Birgunj
      82 |         75 | Bislig
      83 |         15 | Blumenau
      84 |         15 | Boa Vista
      85 |         85 | Boksburg
      86 |         78 | Botosani
      87 |         85 | Botshabelo
      88 |        102 | Bradford
      89 |         15 | Braslia
      90 |         84 | Bratislava
      91 |         49 | Brescia
      92 |         34 | Brest
      93 |         49 | Brindisi
      94 |        103 | Brockton
      95 |         78 | Bucuresti
      96 |         24 | Buenaventura
      97 |         76 | Bydgoszcz
      98 |         75 | Cabuyao
      99 |         74 | Callao
     100 |        105 | Cam Ranh
     101 |        103 | Cape Coral
     102 |        104 | Caracas
     103 |         60 | Carmen
     104 |         75 | Cavite
     105 |         35 | Cayenne
     106 |         60 | Celaya
     107 |         44 | Chandrapur
     108 |         92 | Changhwa
     109 |         23 | Changzhou
     110 |         44 | Chapra
     111 |        106 | Charlotte Amalie
     112 |         85 | Chatsworth
     113 |         86 | Cheju
     114 |         92 | Chiayi
     115 |         61 | Chisinau
     116 |         92 | Chungho
     117 |         45 | Cianjur
     118 |         45 | Ciomas
     119 |         45 | Ciparay
     120 |        103 | Citrus Heights
     121 |         41 | Citt del Vaticano
     122 |         73 | Ciudad del Este
     123 |        103 | Clarksville
     124 |         60 | Coacalco de Berriozbal
     125 |         60 | Coatzacoalcos
     126 |        103 | Compton
     127 |         22 | Coquimbo
     128 |          6 | Crdoba
     129 |         60 | Cuauhtmoc
     130 |         60 | Cuautla
     131 |         60 | Cuernavaca
     132 |        104 | Cuman
     133 |         76 | Czestochowa
     134 |         72 | Dadu
     135 |        103 | Dallas
     136 |         23 | Datong
     137 |         54 | Daugavpils
     138 |         75 | Davao
     139 |         23 | Daxian
     140 |        103 | Dayton
     141 |         69 | Deba Habe
     142 |         97 | Denizli
     143 |         12 | Dhaka
     144 |         44 | Dhule (Dhulia)
     145 |         23 | Dongying
     146 |         87 | Donostia-San Sebastin
     147 |         24 | Dos Quebradas
     148 |         38 | Duisburg
     149 |        102 | Dundee
     150 |         80 | Dzerzinsk
     151 |         67 | Ede
     152 |         69 | Effon-Alaiye
     153 |         14 | El Alto
     154 |         60 | El Fuerte
     156 |         80 | Elista
     155 |        103 | El Monte
     157 |         23 | Emeishan
     158 |         67 | Emmen
     159 |         23 | Enshi
     160 |         38 | Erlangen
     161 |          6 | Escobar
     162 |         46 | Esfahan
     163 |         97 | Eskisehir
     164 |         44 | Etawah
     165 |          6 | Ezeiza
     166 |         23 | Ezhou
     167 |         36 | Faaa
     168 |         92 | Fengshan
     169 |         44 | Firozabad
     170 |         24 | Florencia
     171 |        103 | Fontana
     172 |         50 | Fukuyama
     173 |         99 | Funafuti
     174 |         23 | Fuyu
     175 |         23 | Fuzhou
     176 |         44 | Gandhinagar
     177 |        103 | Garden Grove
     178 |        103 | Garland
     179 |         20 | Gatineau
     180 |         97 | Gaziantep
     181 |         87 | Gijn
     182 |         75 | Gingoog
     183 |         15 | Goinia
     184 |         45 | Gorontalo
     185 |        103 | Grand Prairie
     186 |          9 | Graz
     187 |        103 | Greensboro
     188 |         60 | Guadalajara
     189 |         15 | Guaruj
     190 |         15 | guas Lindas de Gois
     191 |         44 | Gulbarga
     192 |         75 | Hagonoy
     193 |         23 | Haining
     194 |        105 | Haiphong
     195 |         44 | Haldia
     196 |         20 | Halifax
     197 |         44 | Halisahar
     198 |         38 | Halle/Saale
     199 |         23 | Hami
     200 |         68 | Hamilton
     201 |        105 | Hanoi
     202 |         60 | Hidalgo
     203 |         50 | Higashiosaka
     204 |         50 | Hino
     205 |         50 | Hiroshima
     206 |        107 | Hodeida
     207 |         23 | Hohhot
     208 |         44 | Hoshiarpur
     209 |         92 | Hsichuh
     210 |         23 | Huaian
     211 |         44 | Hubli-Dharwad
     212 |         60 | Huejutla de Reyes
     213 |         60 | Huixquilucan
     214 |         74 | Hunuco
     215 |         15 | Ibirit
     216 |         29 | Idfu
     217 |         69 | Ife
     218 |         69 | Ikerre
     219 |         75 | Iligan
     220 |         69 | Ilorin
     221 |         75 | Imus
     222 |         97 | Inegl
     223 |         59 | Ipoh
     224 |         50 | Isesaki
     225 |         80 | Ivanovo
     226 |         50 | Iwaki
     227 |         50 | Iwakuni
     228 |         50 | Iwatsuki
     229 |         50 | Izumisano
     230 |         88 | Jaffna
     231 |         44 | Jaipur
     232 |         45 | Jakarta
     233 |         53 | Jalib al-Shuyukh
     234 |         12 | Jamalpur
     235 |         80 | Jaroslavl
     236 |         76 | Jastrzebie-Zdrj
     237 |         82 | Jedda
     238 |         80 | Jelets
     239 |         44 | Jhansi
     240 |         23 | Jinchang
     241 |         23 | Jining
     242 |         23 | Jinzhou
     243 |         44 | Jodhpur
     244 |         85 | Johannesburg
     245 |        103 | Joliet
     246 |         60 | Jos Azueta
     247 |         15 | Juazeiro do Norte
     248 |         15 | Juiz de Fora
     249 |         23 | Junan
     250 |         60 | Jurez
     251 |          1 | Kabul
     252 |         69 | Kaduna
     253 |         50 | Kakamigahara
     254 |         80 | Kaliningrad
     255 |         76 | Kalisz
     256 |         50 | Kamakura
     257 |         44 | Kamarhati
     258 |        100 | Kamjanets-Podilskyi
     259 |         80 | Kamyin
     260 |         50 | Kanazawa
     261 |         44 | Kanchrapara
     262 |        103 | Kansas City
     263 |         44 | Karnal
     264 |         44 | Katihar
     265 |         46 | Kermanshah
     266 |         97 | Kilis
     267 |         85 | Kimberley
     268 |         86 | Kimchon
     269 |         81 | Kingstown
     270 |         80 | Kirovo-Tepetsk
     271 |         52 | Kisumu
     272 |        109 | Kitwe
     273 |         85 | Klerksdorp
     274 |         80 | Kolpino
     275 |        100 | Konotop
     276 |         50 | Koriyama
     277 |         23 | Korla
     278 |         80 | Korolev
     279 |         42 | Kowloon and New Kowloon
     280 |        108 | Kragujevac
     281 |         97 | Ktahya
     282 |         59 | Kuching
     283 |         44 | Kumbakonam
     284 |         50 | Kurashiki
     285 |         80 | Kurgan
     286 |         80 | Kursk
     287 |         50 | Kuwana
     291 |         23 | Laiwu
     292 |        103 | Lancaster
     293 |         23 | Laohekou
     288 |         60 | La Paz
     289 |          6 | La Plata
     294 |         75 | Lapu-Lapu
     295 |        103 | Laredo
     290 |         27 | La Romana
     296 |         91 | Lausanne
     297 |         34 | Le Mans
     298 |         23 | Lengshuijiang
     299 |         23 | Leshan
     300 |         20 | Lethbridge
     301 |         45 | Lhokseumawe
     302 |         23 | Liaocheng
     303 |         54 | Liepaja
     304 |         58 | Lilongwe
     305 |         74 | Lima
     306 |        103 | Lincoln
     307 |          9 | Linz
     308 |         80 | Lipetsk
     309 |         49 | Livorno
     310 |         80 | Ljubertsy
     311 |         28 | Loja
     312 |        102 | London
     314 |         76 | Lublin
     315 |         25 | Lubumbashi
     316 |         92 | Lungtan
     317 |         15 | Luzinia
     318 |         45 | Madiun
     319 |         57 | Mahajanga
     320 |         80 | Maikop
     321 |         90 | Malm
     322 |        103 | Manchester
     323 |         75 | Mandaluyong
     324 |         72 | Mandi Bahauddin
     325 |         38 | Mannheim
     326 |        104 | Maracabo
     327 |         72 | Mardan
     328 |         15 | Maring
     329 |         71 | Masqat
     330 |         60 | Matamoros
     331 |         50 | Matsue
     332 |         23 | Meixian
     333 |        103 | Memphis
     334 |          6 | Merlo
     335 |         60 | Mexicali
     336 |         44 | Miraj
     337 |         29 | Mit Ghamr
     338 |         50 | Miyakonojo
     339 |         13 | Mogiljov
     340 |         13 | Molodetno
     341 |         60 | Monclova
     342 |         64 | Monywa
     343 |         80 | Moscow
     344 |         47 | Mosul
     345 |        100 | Mukateve
     346 |         44 | Munger (Monghyr)
     347 |         93 | Mwanza
     348 |         25 | Mwene-Ditu
     349 |         64 | Myingyan
     350 |         44 | Mysore
     351 |         63 | Naala-Porto
     352 |         80 | Nabereznyje Telny
     353 |         62 | Nador
     354 |         44 | Nagaon
     355 |         50 | Nagareyama
     356 |         46 | Najafabad
     357 |         86 | Naju
     358 |         94 | Nakhon Sawan
     359 |        105 | Nam Dinh
     360 |          4 | Namibe
     361 |         92 | Nantou
     362 |         23 | Nanyang
     363 |         21 | NDjamna
     364 |         85 | Newcastle
     313 |         20 | New London
     365 |         60 | Nezahualcyotl
     366 |        105 | Nha Trang
     367 |         80 | Niznekamsk
     368 |        108 | Novi Sad
     369 |         80 | Novoterkassk
     370 |         95 | Nukualofa
     371 |         40 | Nuuk
     372 |         52 | Nyeri
     373 |        104 | Ocumare del Tuy
     374 |         69 | Ogbomosho
     375 |         72 | Okara
     376 |         50 | Okayama
     377 |         50 | Okinawa
     378 |         26 | Olomouc
     379 |         89 | Omdurman
     380 |         50 | Omiya
     381 |         69 | Ondo
     382 |         50 | Onomichi
     383 |         20 | Oshawa
     384 |         97 | Osmaniye
     385 |        100 | ostka
     386 |         50 | Otsu
     387 |         33 | Oulu
     388 |         87 | Ourense (Orense)
     389 |         69 | Owo
     390 |         69 | Oyo
     391 |         75 | Ozamis
     392 |         85 | Paarl
     393 |         60 | Pachuca de Soto
     394 |         94 | Pak Kret
     395 |         44 | Palghat (Palakkad)
     396 |         45 | Pangkal Pinang
     397 |         36 | Papeete
     398 |         44 | Parbhani
     399 |         44 | Pathankot
     400 |         44 | Patiala
     401 |         39 | Patras
     402 |         51 | Pavlodar
     403 |         45 | Pemalang
     404 |        103 | Peoria
     405 |         24 | Pereira
     406 |         18 | Phnom Penh
     407 |         23 | Pingxiang
     408 |         80 | Pjatigorsk
     409 |         76 | Plock
     410 |         15 | Po
     411 |         77 | Ponce
     412 |         45 | Pontianak
     413 |         15 | Poos de Caldas
     414 |         28 | Portoviejo
     415 |         45 | Probolinggo
     416 |         44 | Pudukkottai
     417 |         44 | Pune
     418 |         44 | Purnea (Purnia)
     419 |         45 | Purwakarta
     420 |         70 | Pyongyang
     421 |         29 | Qalyub
     422 |         23 | Qinhuangdao
     423 |         46 | Qomsheh
     424 |          6 | Quilmes
     425 |         44 | Rae Bareli
     426 |         44 | Rajkot
     427 |         44 | Rampur
     428 |         22 | Rancagua
     429 |         44 | Ranchi
     430 |         20 | Richmond Hill
     431 |         15 | Rio Claro
     432 |         23 | Rizhao
     433 |        103 | Roanoke
     434 |         28 | Robamba
     435 |        103 | Rockford
     436 |         17 | Ruse
     437 |         85 | Rustenburg
     439 |         38 | Saarbrcken
     440 |         50 | Sagamihara
     442 |         79 | Saint-Denis
     441 |        103 | Saint Louis
     443 |         62 | Sal
     444 |         71 | Salala
     445 |         60 | Salamanca
     446 |        103 | Salinas
     447 |          9 | Salzburg
     448 |         44 | Sambhal
     455 |        107 | Sanaa
     449 |        103 | San Bernardino
     451 |         60 | San Felipe del Progreso
     450 |         27 | San Felipe de Puerto Plata
     452 |         60 | San Juan Bautista Tuxtepec
     453 |         73 | San Lorenzo
     454 |          6 | San Miguel de Tucumn
     456 |         15 | Santa Brbara dOeste
     457 |          6 | Santa F
     458 |         75 | Santa Rosa
     459 |         87 | Santiago de Compostela
     460 |         27 | Santiago de los Caballeros
     461 |         15 | Santo Andr
     462 |         23 | Sanya
     463 |         50 | Sasebo
     464 |         44 | Satna
     465 |         29 | Sawhaj
     466 |         80 | Serpuhov
     467 |         46 | Shahr-e Kord
     468 |         23 | Shanwei
     469 |         23 | Shaoguan
     470 |        101 | Sharja
     471 |         23 | Shenzhen
     438 |         67 | s-Hertogenbosch
     472 |         72 | Shikarpur
     473 |         44 | Shimoga
     474 |         50 | Shimonoseki
     475 |         44 | Shivapuri
     476 |         29 | Shubra al-Khayma
     477 |         38 | Siegen
     478 |         44 | Siliguri (Shiliguri)
     479 |        100 | Simferopol
     480 |         24 | Sincelejo
     481 |         46 | Sirjan
     482 |         97 | Sivas
     483 |          2 | Skikda
     484 |         80 | Smolensk
     485 |         15 | So Bernardo do Campo
     487 |         24 | Sogamoso
     488 |         69 | Sokoto
     486 |         15 | So Leopoldo
     489 |         94 | Songkhla
     490 |         15 | Sorocaba
     491 |         85 | Soshanguve
     492 |         96 | Sousse
     494 |        102 | Southampton
     495 |        102 | Southend-on-Sea
     493 |          5 | South Hill
     496 |        102 | Southport
     497 |         85 | Springs
     498 |         17 | Stara Zagora
     499 |        103 | Sterling Heights
     500 |        102 | Stockport
     501 |         14 | Sucre
     502 |         23 | Suihua
     503 |         74 | Sullana
     504 |         97 | Sultanbeyli
     505 |         10 | Sumqayit
     506 |        100 | Sumy
     507 |         59 | Sungai Petani
     508 |        103 | Sunnyvale
     509 |         45 | Surakarta
     510 |         80 | Syktyvkar
     511 |         49 | Syrakusa
     512 |         43 | Szkesfehrvr
     513 |         93 | Tabora
     514 |         46 | Tabriz
     515 |         82 | Tabuk
     516 |          3 | Tafuna
     517 |         75 | Taguig
     518 |        107 | Taizz
     519 |         75 | Talavera
     520 |        103 | Tallahassee
     521 |         50 | Tama
     522 |         44 | Tambaram
     523 |         75 | Tanauan
     524 |          6 | Tandil
     525 |         12 | Tangail
     526 |         92 | Tanshui
     527 |         75 | Tanza
     528 |         75 | Tarlac
     529 |         97 | Tarsus
     530 |         30 | Tartu
     531 |         80 | Teboksary
     532 |         45 | Tegal
     533 |         48 | Tel Aviv-Jaffa
     534 |         63 | Tete
     535 |         23 | Tianjin
     536 |         23 | Tiefa
     537 |         23 | Tieli
     538 |         97 | Tokat
     539 |         86 | Tonghae
     540 |         23 | Tongliao
     541 |         60 | Torren
     542 |         92 | Touliu
     543 |         34 | Toulon
     544 |         34 | Toulouse
     545 |         32 | Trshavn
     546 |         92 | Tsaotun
     547 |         50 | Tsuyama
     548 |         75 | Tuguegarao
     549 |         76 | Tychy
     550 |         44 | Udaipur
     551 |         49 | Udine
     552 |         50 | Ueda
     553 |         86 | Uijongbu
     554 |         44 | Uluberia
     555 |         50 | Urawa
     556 |         60 | Uruapan
     557 |         97 | Usak
     558 |         80 | Usolje-Sibirskoje
     559 |         44 | Uttarpara-Kotrung
     560 |         55 | Vaduz
     561 |        104 | Valencia
     562 |        104 | Valle de la Pascua
     563 |         60 | Valle de Santiago
     564 |         44 | Valparai
     565 |         20 | Vancouver
     566 |         44 | Varanasi (Benares)
     567 |          6 | Vicente Lpez
     568 |         44 | Vijayawada
     569 |         15 | Vila Velha
     570 |         56 | Vilnius
     571 |        105 | Vinh
     572 |         15 | Vitria de Santo Anto
     573 |        103 | Warren
     574 |         23 | Weifang
     575 |         38 | Witten
     576 |          8 | Woodridge
     577 |         76 | Wroclaw
     578 |         23 | Xiangfan
     579 |         23 | Xiangtan
     580 |         23 | Xintai
     581 |         23 | Xinxiang
     582 |         44 | Yamuna Nagar
     583 |         65 | Yangor
     584 |         23 | Yantai
     585 |         19 | Yaound
     586 |          7 | Yerevan
     587 |         23 | Yinchuan
     588 |         23 | Yingkou
     589 |        102 | York
     590 |         23 | Yuncheng
     591 |         23 | Yuzhou
     592 |         23 | Zalantun
     593 |         93 | Zanzibar
     594 |         23 | Zaoyang
     595 |         60 | Zapopan
     596 |         69 | Zaria
     597 |         80 | Zeleznogorsk
     598 |         51 | Zhezqazghan
     599 |         23 | Zhoushan
     600 |         83 | Ziguinchor
(600 rows)

DROP VIEW customer_master;
DROP VIEW test_view;
DROP table customer cascade;
DROP table address cascade;
DROP table city cascade;
DROP table country cascade;
DROP CLIENT MASTER KEY MyCMK CASCADE;
NOTICE:  drop cascades to column encryption key: mycek
\! gs_ktool -d all
DELETE ALL
 1