[open-ils-commits] [GIT] Evergreen ILS branch master updated. 4bbe4a9636490c587ca763fb0aedcbf29f33d8a8

Evergreen Git git at git.evergreen-ils.org
Tue Mar 6 10:07:26 EST 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  4bbe4a9636490c587ca763fb0aedcbf29f33d8a8 (commit)
       via  1c70183c9ae7415e7f7794a86a4e80096a6d16ae (commit)
       via  177d2bb133b2704cc507f570fbea2d17c239d0b9 (commit)
      from  fb08c4afe5807040bdc8a940d8197d92dc24665b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4bbe4a9636490c587ca763fb0aedcbf29f33d8a8
Author: Bill Erickson <berick at esilibrary.com>
Date:   Fri Feb 10 15:32:51 2012 -0500

    Rename sample patron file for clarity/consistency
    
    We now have users_patrons_* and users_staff_*
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

diff --git a/Open-ILS/tests/datasets/patrons100.sql b/Open-ILS/tests/datasets/users_patrons_100.sql
similarity index 100%
rename from Open-ILS/tests/datasets/patrons100.sql
rename to Open-ILS/tests/datasets/users_patrons_100.sql

commit 1c70183c9ae7415e7f7794a86a4e80096a6d16ae
Author: Bill Erickson <berick at esilibrary.com>
Date:   Fri Feb 10 15:30:35 2012 -0500

    Sample staff user data
    
    134 staff users
    
    * Each user has 1 address and one card
    * Barcodes take the form 99999 + 6 random digits
    * Usernames == lowercase(work_org_shortmae + first initial + last name)
    * Passwords = lowercase(firstname + last initial + 1234)
    * There are 2 staff for each can_have_users org unit for each staff
    profile, minus Global Admin.
    * There are two Global Admin staff in total, at orgs 4 and 6
    
    See also LP #926281
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

diff --git a/Open-ILS/tests/datasets/users_staff_134.sql b/Open-ILS/tests/datasets/users_staff_134.sql
new file mode 100644
index 0000000..f66ba9b
--- /dev/null
+++ b/Open-ILS/tests/datasets/users_staff_134.sql
@@ -0,0 +1,3621 @@
+BEGIN;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (13, 3, 'sforbes', 6, 'Forbes', 'samuelf1234', 
+        'Samuel', 'Eugene', '2009-01-16', '1975-06-26', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '40065', '8751 Gentleman Burgs', 'f', 
+        'KY', 'Shelbyville', '', 'Shelby', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336514', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (13, 1, 'vcampbell', 4, 'Campbell', 'vincentc1234', 
+        'Vincent', 'Lawrence', '2014-03-03', '1998-10-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '45633', '5489 Suitable Way Knoll', 'f', 
+        'OH', 'Hallsville', '', 'Ross', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999338171', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'afrey', 9, 'Frey', 'annief1234', 
+        'Annie', 'Jessica', '2010-02-07', '1997-12-07', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '54409', '7918 Subjective Volume Trail', 'f', 
+        'WI', 'Antigo', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999364116', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'msalinas', 9, 'Salinas', 'marks1234', 
+        'Mark', 'Christopher', '2007-06-08', '1999-06-13', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '25529', '1790 Lively Attitude Falls', 't', 
+        'WV', 'Julian', '', 'Boone', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999313813', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 1, 'klindsey', 8, 'Lindsey', 'kennethl1234', 
+        'Kenneth', 'Jesse', '2014-12-27', '1964-10-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '89077', '1552 Okay Communication Motorway', 'f', 
+        'NV', 'Henderson', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999334832', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'mdavis', 8, 'Davis', 'marthad1234', 
+        'Martha', '', '2008-10-27', '1983-05-13', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '13156', '8717 Cabinet Fords', 'f', 
+        'NY', 'Sterling', '', 'Cayuga', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999315736', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'vfreeman', 7, 'Freeman', 'virginiaf1234', 
+        'Virginia', 'Johanna', '2009-10-05', '1967-07-23', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '33122', '4033 Instant Matter Cape', 'f', 
+        'FL', 'Miami', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999301938', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'lmartinez', 7, 'Martinez', 'leroym1234', 
+        'Leroy', 'Brian', '2013-05-19', '1968-03-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '55046', '2511 Other Stream', 'f', 
+        'MN', 'Lonsdale', '', 'Rice', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999385425', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 1, 'warmstrong', 6, 'Armstrong', 'williama1234', 
+        'William', 'William', '2014-05-28', '1980-08-13', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '55959', '1671 Cabinet Orchard', 'f', 
+        'MN', 'Minnesota city', '', 'Winona', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999378711', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'acotton', 6, 'Cotton', 'amyc1234', 
+        'Amy', 'Ada', '2012-08-01', '1984-12-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '34202', '1488 Glamorous Alternative Forks', 'f', 
+        'FL', 'Bradenton', '', 'Manatee', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999323866', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 1, 'sbarton', 5, 'Barton', 'sarahb1234', 
+        'Sarah', 'Valerie', '2015-07-08', '1984-03-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '54655', '6986 Delighted Design Trail', 't', 
+        'WI', 'Soldiers grove', '', 'Crawford', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999327258', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 1, 'jhammond', 5, 'Hammond', 'jamesh1234', 
+        'James', 'Michael', '2007-11-13', '1988-02-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '88211', '9144 White Support Squares', 'f', 
+        'NM', 'Artesia', '', 'Eddy', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999385896', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'ajoseph', 4, 'Joseph', 'alexj1234', 
+        'Alex', 'Edward', '2008-05-19', '1968-02-14', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '56308', '9081 Awake Minute Spring', 't', 
+        'MN', 'Alexandria', '', 'Douglas', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999378073', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (15, 3, 'imccoy', 4, 'Mccoy', 'idam1234', 
+        'Ida', 'Gloria', '2015-09-12', '1963-08-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '40046', '9875 Support Row', 'f', 
+        'KY', 'Mount eden', '', 'Spencer', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999321047', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'dwright', 9, 'Wright', 'dennisw1234', 
+        'Dennis', 'Ernest', '2010-01-06', '1998-07-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '03457', '2063 Sophisticated Status Plaza', 'f', 
+        'NH', 'Nelson', '', 'Cheshire', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999348121', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 1, 'alynch', 9, 'Lynch', 'armandol1234', 
+        'Armando', '', '2015-05-16', '1967-08-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '31126', '7394 Show Valley', 'f', 
+        'GA', 'Atlanta', '', 'Fulton', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384116', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'rgraham', 8, 'Graham', 'robertg1234', 
+        'Robert', '', '2007-12-28', '1987-03-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '98807', '2577 Stuck Benefit Tunnel', 'f', 
+        'WA', 'Wenatchee', '', 'Chelan', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999311950', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 1, 'sthompson', 8, 'Thompson', 'sherrit1234', 
+        'Sherri', '', '2010-12-25', '1964-01-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '31758', '3587 Name Neck', 'f', 
+        'GA', 'Thomasville', '', 'Thomas', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384066', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 1, 'ngarcia', 7, 'Garcia', 'nanetteg1234', 
+        'Nanette', 'Helen', '2007-12-02', '1972-12-01', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '11733', '6990 Icy Scene Street', 'f', 
+        'NY', 'East setauket', '', 'Suffolk', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999332719', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'rcook', 7, 'Cook', 'raymondc1234', 
+        'Raymond', 'Boyd', '2008-11-11', '1968-12-05', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '94533', '2004 Harsh Gold Tunnel', 'f', 
+        'CA', 'Fairfield', '', 'Solano', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999392343', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'kbrewer', 6, 'Brewer', 'katherineb1234', 
+        'Katherine', '', '2006-01-16', '1980-12-04', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '59053', '6732 Recognition Street', 't', 
+        'MT', 'Martinsdale', '', 'Meagher', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999383479', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 1, 'cwashington', 6, 'Washington', 'christopherw1234', 
+        'Christopher', '', '2006-06-25', '1998-08-05', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '47360', '9934 Coloured Bar Grove', 'f', 
+        'IN', 'Mooreland', '', 'Henry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999380284', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'dmurray', 5, 'Murray', 'dawnm1234', 
+        'Dawn', 'Katherine', '2007-09-05', '1973-05-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '59868', '4426 Temporary Demand River', 'f', 
+        'MT', 'Seeley lake', '', 'Missoula', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999347656', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 1, 'bwatts', 5, 'Watts', 'barbaraw1234', 
+        'Barbara', 'Gloria', '2006-07-07', '1973-02-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '51036', '4020 Marked Chemical Bayoo', 'f', 
+        'IA', 'Maurice', '', 'Sioux', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384489', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'mmartin', 4, 'Martin', 'marym1234', 
+        'Mary', 'Shannon', '2013-11-16', '1974-06-10', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '16657', '7511 Fortunate Length Parkway', 't', 
+        'PA', 'James creek', '', 'Huntingdon', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336634', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (14, 3, 'vford', 4, 'Ford', 'vivianf1234', 
+        'Vivian', 'Darlene', '2011-02-28', '1971-08-03', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '23023', '3414 Energetic Weekend Circles', 'f', 
+        'VA', 'Bruington', '', 'King and queen', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999361251', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'gsuarez', 9, 'Suarez', 'garys1234', 
+        'Gary', 'Joel', '2007-10-23', '1971-07-05', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '19244', '1613 Legislation River', 't', 
+        'PA', 'Philadelphia', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999372079', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'eellis', 9, 'Ellis', 'edwarde1234', 
+        'Edward', 'David', '2010-10-23', '1998-05-05', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '17349', '1977 Profound Conference Path', 'f', 
+        'PA', 'New freedom', '', 'York', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999354444', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'nward', 8, 'Ward', 'naomiw1234', 
+        'Naomi', 'Angela', '2010-10-07', '1987-02-23', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '20109', '2689 Standard Interview Vista', 't', 
+        'VA', 'Manassas', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999326817', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'jrichards', 8, 'Richards', 'josephr1234', 
+        'Joseph', 'Thomas', '2008-04-15', '1976-03-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '78658', '3275 Error Freeway', 'f', 
+        'TX', 'Ottine', '', 'Gonzales', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999318881', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 3, 'rsanders', 7, 'Sanders', 'roslyns1234', 
+        'Roslyn', '', '2007-08-15', '1995-05-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '19975', '6946 Constitutional Word Freeway', 'f', 
+        'DE', 'Selbyville', '', 'Sussex', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999356038', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'nrivera', 7, 'Rivera', 'nancyr1234', 
+        'Nancy', 'Anita', '2007-12-15', '1990-03-22', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '27373', '263 Catholic End Field', 'f', 
+        'NC', 'Wallburg', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999302274', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'cmartin', 6, 'Martin', 'carlm1234', 
+        'Carl', 'Charles', '2007-12-09', '1976-09-01', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '61452', '6985 Welcome Statement Fort', 'f', 
+        'IL', 'Littleton', '', 'Schuyler', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999339237', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'telliott', 6, 'Elliott', 'thomase1234', 
+        'Thomas', 'Marcus', '2010-09-07', '1973-05-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '97624', '1283 Splendid West Manor', 'f', 
+        'OR', 'Chiloquin', '', 'Klamath', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340230', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 3, 'ocherry', 5, 'Cherry', 'olgac1234', 
+        'Olga', 'Marie', '2008-01-12', '1976-05-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '17081', '9657 Scared Kind Street', 'f', 
+        'PA', 'Plainfield', '', 'Cumberland', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384061', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 1, 'gdavenport', 5, 'Davenport', 'gwendolynd1234', 
+        'Gwendolyn', '', '2011-11-26', '1974-06-28', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '85014', '110 Logical Tone Drive', 'f', 
+        'AZ', 'Phoenix', '', 'Maricopa', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999372586', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 3, 'sbrock', 4, 'Brock', 'scottb1234', 
+        'Scott', 'George', '2013-08-01', '1994-07-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '60132', '1760 Channel Bottom', 'f', 
+        'IL', 'Carol stream', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336715', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (12, 3, 'rjackson', 4, 'Jackson', 'ronaldj1234', 
+        'Ronald', 'Robert', '2011-08-21', '1998-12-07', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '04985', '5561 Native Reduction Crossing', 't', 
+        'ME', 'West forks', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335465', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 1, 'wjames', 9, 'James', 'waynej1234', 
+        'Wayne', 'George', '2013-04-20', '1976-01-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '27014', '5542 Politics Hollow', 'f', 
+        'NC', 'Cooleemee', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999379835', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 1, 'shernandez', 9, 'Hernandez', 'sarahh1234', 
+        'Sarah', 'Elaine', '2014-06-09', '1986-06-27', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '89151', '4939 Family Divide', 't', 
+        'NV', 'Las vegas', '', 'Clark', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999346587', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'latkins', 8, 'Atkins', 'louisa1234', 
+        'Louis', 'Edward', '2009-02-26', '1995-02-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '44705', '2794 Uniform Value Square', 'f', 
+        'OH', 'Canton', '', 'Stark', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999377256', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'wneal', 8, 'Neal', 'waynen1234', 
+        'Wayne', '', '2011-03-15', '1977-06-05', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '35501', '6178 Relieved Rain Wells', 'f', 
+        'AL', 'Jasper', '', 'Walker', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999377249', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'mharrison', 7, 'Harrison', 'michelleh1234', 
+        'Michelle', 'Patricia', '2015-12-05', '1979-12-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '05345', '1766 Victorious Estate Avenue', 't', 
+        'VT', 'Newfane', '', 'Windham', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999376642', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'hwomack', 7, 'Womack', 'howardw1234', 
+        'Howard', '', '2012-06-12', '1963-03-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '06262', '5472 Exhibition Trace', 't', 
+        'CT', 'Quinebaug', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999342319', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'vbacon', 6, 'Bacon', 'virginiab1234', 
+        'Virginia', 'Celia', '2010-08-13', '1992-11-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '61638', '4639 Family Tunnel', 't', 
+        'IL', 'Peoria', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999362019', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 1, 'lbrooks', 6, 'Brooks', 'lonnieb1234', 
+        'Lonnie', 'William', '2010-08-22', '1981-03-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '83836', '8823 Side Fall', 'f', 
+        'ID', 'Hope', '', 'Bonner', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999326493', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'mgonzales', 5, 'Gonzales', 'maryg1234', 
+        'Mary', 'Jessica', '2006-12-21', '1988-03-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '16213', '6608 Weary Drawing Lakes', 'f', 
+        'PA', 'Callensburg', '', 'Clarion', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999337760', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 1, 'mterry', 5, 'Terry', 'michellet1234', 
+        'Michelle', 'Kristy', '2006-05-05', '1972-03-26', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '30817', '1658 Organisational Bedroom Square', 'f', 
+        'GA', 'Lincolnton', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999390692', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'mmeeks', 4, 'Meeks', 'michellem1234', 
+        'Michelle', 'Myra', '2011-08-21', '1966-01-23', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '88240', '7269 Sister Gardens', 'f', 
+        'NM', 'Hobbs', '', 'Lea', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999396672', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (11, 3, 'epalmer', 4, 'Palmer', 'elvap1234', 
+        'Elva', 'Tiffany', '2009-05-01', '1987-08-21', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '50595', '7864 Remarkable Status River', 'f', 
+        'IA', 'Webster city', '', 'Hamilton', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335171', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 3, 'mwilliams', 9, 'Williams', 'mattheww1234', 
+        'Matthew', '', '2007-01-20', '1977-10-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '60064', '7230 Trend Mount', 'f', 
+        'IL', 'North chicago', '', 'Lake', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999365046', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'nperez', 9, 'Perez', 'nicholasp1234', 
+        'Nicholas', 'Joseph', '2008-01-11', '1990-09-27', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '55076', '9299 Democratic Hill Cliffs', 'f', 
+        'MN', 'Inver grove heights', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999391887', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 3, 'bfisher', 8, 'Fisher', 'barbaraf1234', 
+        'Barbara', '', '2008-02-03', '1960-10-04', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '61756', '9822 Excess Start Lock', 'f', 
+        'IL', 'Maroa', '', 'Macon', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999325028', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 3, 'mmendoza', 8, 'Mendoza', 'miguelm1234', 
+        'Miguel', '', '2015-04-15', '1980-05-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '58773', '5831 Residential Respect Track', 'f', 
+        'ND', 'Powers lake', '', 'Burke', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999338966', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'ldickinson', 7, 'Dickinson', 'leed1234', 
+        'Lee', 'Annie', '2014-07-19', '1986-02-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '12803', '5030 Vision Loop', 'f', 
+        'NY', 'South glens falls', '', 'Saratoga', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999328210', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'awilliams', 7, 'Williams', 'angelinaw1234', 
+        'Angelina', 'Joan', '2012-06-28', '1995-08-01', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '25054', '1723 Multiple Object Canyon', 'f', 
+        'WV', 'Dawes', '', 'Kanawha', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999373939', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'bsanchez', 6, 'Sanchez', 'beths1234', 
+        'Beth', 'Deborah', '2015-08-21', '1974-10-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '36426', '5148 Shaggy Farm Center', 'f', 
+        'AL', 'Brewton', '', 'Escambia', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999354471', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 3, 'ethompson', 6, 'Thompson', 'elvint1234', 
+        'Elvin', '', '2009-08-26', '1968-06-21', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '67664', '2800 Cheerful Animal Valley', 'f', 
+        'KS', 'Prairie view', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999320974', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'dlawson', 5, 'Lawson', 'doral1234', 
+        'Dora', '', '2009-08-26', '1978-05-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '63957', '6016 General Dog Divide', 'f', 
+        'MO', 'Piedmont', '', 'Wayne', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394437', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'lvargas', 5, 'Vargas', 'laurav1234', 
+        'Laura', 'Mildred', '2013-04-01', '1989-07-04', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '62526', '4689 Alert Minute Court', 'f', 
+        'IL', 'Decatur', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999317988', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 3, 'wrandall', 4, 'Randall', 'williamr1234', 
+        'William', 'James', '2015-04-25', '1976-10-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '72117', '3448 Minor Solicitor Junction', 'f', 
+        'AR', 'North little rock', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999393617', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (10, 1, 'csmith', 4, 'Smith', 'cathys1234', 
+        'Cathy', 'Cheryl', '2014-07-22', '1989-02-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '81420', '784 Striking Theatre Fords', 't', 
+        'CO', 'Lazear', '', 'Delta', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999389406', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'alopez', 9, 'Lopez', 'arlinel1234', 
+        'Arline', 'Amber', '2013-03-28', '1985-05-05', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '19053', '5012 Unemployed Other Harbor', 'f', 
+        'PA', 'Feasterville trevose', '', 'Bucks', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999330939', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'epeterson', 9, 'Peterson', 'emmap1234', 
+        'Emma', '', '2015-06-11', '1962-09-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '07095', '9931 Hushed Passage Turnpike', 'f', 
+        'NJ', 'Woodbridge', '', 'Middlesex', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999346297', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'okelly', 8, 'Kelly', 'opalk1234', 
+        'Opal', 'Sara', '2008-05-25', '1975-01-18', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '79550', '8572 Ltd Bar Brook', 't', 
+        'TX', 'Snyder', '', 'Scurry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999355455', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'cdonovan', 8, 'Donovan', 'charlied1234', 
+        'Charlie', 'David', '2009-06-18', '1981-09-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '54017', '1926 Double Effort Spring', 'f', 
+        'WI', 'New richmond', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999348978', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 3, 'msmith', 7, 'Smith', 'marthas1234', 
+        'Martha', 'Raquel', '2014-12-24', '1962-06-21', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '80534', '7185 Arbitrary Contrast Freeway', 'f', 
+        'CO', 'Johnstown', '', 'Weld', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394964', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 3, 'chouston', 7, 'Houston', 'cherylh1234', 
+        'Cheryl', '', '2014-09-18', '1975-12-15', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '93703', '2782 Awake Day Square', 't', 
+        'CA', 'Fresno', '', 'Fresno', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999320969', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'kwright', 6, 'Wright', 'kayw1234', 
+        'Kay', 'Anna', '2015-01-23', '1965-05-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '22834', '4585 Whole Harbor', 't', 
+        'VA', 'Linville', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999398195', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 3, 'mlane', 6, 'Lane', 'michellel1234', 
+        'Michelle', 'Andrea', '2006-12-28', '1963-06-14', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '98110', '8676 Thundering Loss Field', 't', 
+        'WA', 'Bainbridge island', '', 'Kitsap', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999333153', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'rsmith', 5, 'Smith', 'roberts1234', 
+        'Robert', '', '2006-05-01', '1987-06-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '00983', '231 Causal Expert Highway', 'f', 
+        'PR', 'Carolina', '', 'Carolina', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999362675', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'cdodson', 5, 'Dodson', 'cleod1234', 
+        'Cleo', '', '2007-02-09', '1974-11-14', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '25266', '53 Nice Customer Green', 'f', 
+        'WV', 'Newton', '', 'Roane', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999362218', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 1, 'mneal', 4, 'Neal', 'melvinn1234', 
+        'Melvin', 'Richard', '2007-03-14', '1993-08-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '10150', '668 Unconscious Gun Spring', 'f', 
+        'NY', 'New york', '', 'New york', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999317310', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (9, 3, 'awilliams', 4, 'Williams', 'annaw1234', 
+        'Anna', 'Justine', '2010-12-27', '1990-11-09', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '45809', '749 Software Center', 't', 
+        'OH', 'Gomer', '', 'Allen', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999392361', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'emiller', 9, 'Miller', 'edmondm1234', 
+        'Edmond', 'Vance', '2008-05-04', '1993-05-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '92007', '2632 Unlikely Assumption Tunnel', 'f', 
+        'CA', 'Cardiff by the sea', '', 'San diego', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999371777', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 3, 'vlogan', 9, 'Logan', 'vanessal1234', 
+        'Vanessa', 'Cassandra', '2009-05-17', '1991-02-01', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '44470', '2823 Eventual Hour Gateway', 'f', 
+        'OH', 'Southington', '', 'Trumbull', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999372363', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'lthompson', 8, 'Thompson', 'lisat1234', 
+        'Lisa', 'Shirley', '2011-05-19', '1972-05-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '45690', '2166 Newspaper Grove', 't', 
+        'OH', 'Waverly', '', 'Pike', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999321149', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'oshaffer', 8, 'Shaffer', 'ollies1234', 
+        'Ollie', 'Monica', '2006-05-16', '1977-01-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '15534', '2134 Inc Boat Turnpike', 't', 
+        'PA', 'Buffalo mills', '', 'Bedford', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335455', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'randrews', 7, 'Andrews', 'raymonda1234', 
+        'Raymond', 'Willie', '2013-02-17', '1996-11-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '06018', '1944 Hot Tape Valley', 't', 
+        'CT', 'Canaan', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999346031', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 3, 'emartinez', 7, 'Martinez', 'ednam1234', 
+        'Edna', 'Judith', '2007-04-22', '1990-04-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '49270', '121 Consequence Club', 'f', 
+        'MI', 'Petersburg', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336926', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 3, 'jdavis', 6, 'Davis', 'jamesd1234', 
+        'James', 'Jerry', '2009-02-26', '1970-06-11', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '58064', '5708 Brainy West Bend', 'f', 
+        'ND', 'Page', '', 'Cass', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999363070', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'droberts', 6, 'Roberts', 'dianer1234', 
+        'Diane', 'Teresa', '2006-12-18', '1969-02-18', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '00692', '9609 Advanced Tool Mountain', 't', 
+        'PR', 'Vega alta', '', 'Vega alta', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999357381', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'psantiago', 5, 'Santiago', 'paiges1234', 
+        'Paige', 'Helen', '2011-06-07', '1979-08-23', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '91608', '2852 Key Incident Avenue', 't', 
+        'CA', 'Universal city', '', 'Los angeles', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394956', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'awright', 5, 'Wright', 'alyssaw1234', 
+        'Alyssa', 'Christine', '2008-10-19', '1994-05-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '80295', '7771 Alive Iron Mission', 'f', 
+        'CO', 'Denver', '', 'Denver', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999367802', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 3, 'dbeck', 4, 'Beck', 'dianab1234', 
+        'Diana', 'Wilma', '2010-08-09', '1971-04-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '58776', '1146 Ability Centers', 'f', 
+        'ND', 'Ross', '', 'Mountrail', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999361901', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (8, 1, 'mclark', 4, 'Clark', 'montyc1234', 
+        'Monty', 'Daniel', '2006-09-13', '1984-05-19', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '55168', '3541 Radical Sir Avenue', 'f', 
+        'MN', 'Saint paul', '', 'Ramsey', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999381970', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'hstone', 9, 'Stone', 'hazels1234', 
+        'Hazel', 'Sylvia', '2009-07-08', '1980-12-09', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '93247', '4171 Impossible Defence Overpass', 'f', 
+        'CA', 'Lindsay', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999367834', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 1, 'dgarza', 9, 'Garza', 'davidg1234', 
+        'David', 'Steven', '2014-04-28', '1969-03-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '22513', '3627 Retail Kind Lodge', 'f', 
+        'VA', 'Merry point', '', 'Lancaster', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999377760', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'jevans', 8, 'Evans', 'johne1234', 
+        'John', 'Timothy', '2006-01-16', '1973-09-26', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '64778', '1212 Mid Top Parkway', 'f', 
+        'MO', 'Richards', '', 'Vernon', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999367573', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'rpayton', 8, 'Payton', 'robertp1234', 
+        'Robert', 'Steven', '2006-05-21', '1994-05-07', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '55336', '1642 Minor Potential Corners', 'f', 
+        'MN', 'Glencoe', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394830', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'ddavis', 7, 'Davis', 'donaldd1234', 
+        'Donald', 'Gene', '2009-09-15', '1999-11-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '48749', '5946 Gas Way', 't', 
+        'MI', 'Omer', '', 'Arenac', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340278', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 1, 'gadams', 7, 'Adams', 'genea1234', 
+        'Gene', '', '2007-03-24', '1974-02-18', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '88525', '8265 Phone Trail', 't', 
+        'TX', 'El paso', '', 'El paso', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999349290', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 1, 'hwhite', 6, 'White', 'humbertow1234', 
+        'Humberto', 'Kevin', '2011-07-06', '1997-09-08', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '25926', '6558 Willing Master Valley', 'f', 
+        'WV', 'Sprague', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999309750', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'asnyder', 6, 'Snyder', 'anas1234', 
+        'Ana', '', '2007-12-19', '1991-05-23', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '00922', '8532 Spare Offer Cliffs', 'f', 
+        'PR', 'San juan', '', 'San juan', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999332335', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 1, 'jroberts', 5, 'Roberts', 'johnr1234', 
+        'John', 'Theodore', '2015-08-16', '1960-09-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '79550', '279 Passing Conference Street', 't', 
+        'TX', 'Snyder', '', 'Scurry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999367122', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'sheath', 5, 'Heath', 'stevenh1234', 
+        'Steven', 'Luke', '2013-01-18', '1988-11-15', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '94547', '4666 Pain Isle', 'f', 
+        'CA', 'Hercules', '', 'Contra costa', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999375796', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 1, 'krush', 4, 'Rush', 'keithr1234', 
+        'Keith', '', '2009-08-26', '1978-01-18', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '15257', '4464 Sense Station', 'f', 
+        'PA', 'Pittsburgh', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999345655', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (7, 3, 'lfarrell', 4, 'Farrell', 'lindaf1234', 
+        'Linda', 'Linda', '2013-12-28', '1996-12-05', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '75155', '7746 Cooperative Fall Shoal', 'f', 
+        'TX', 'Rice', '', 'Navarro', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999344872', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 3, 'rharrison', 9, 'Harrison', 'richardh1234', 
+        'Richard', 'Melvin', '2007-04-07', '1974-01-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '06601', '2896 Jewish Lack Lodge', 'f', 
+        'CT', 'Bridgeport', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999399702', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'ksmith', 9, 'Smith', 'kevins1234', 
+        'Kevin', 'Timothy', '2012-01-16', '1965-12-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '81523', '5119 Lot Isle', 't', 
+        'CO', 'Glade park', '', 'Mesa', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394646', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'fmoore', 8, 'Moore', 'florencem1234', 
+        'Florence', 'Michelle', '2010-07-20', '1977-02-07', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '39440', '6398 Mathematical Condition Arcade', 't', 
+        'MS', 'Laurel', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999341034', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'bcruz', 8, 'Cruz', 'bettyc1234', 
+        'Betty', 'Shirley', '2015-04-26', '1993-08-10', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '33630', '1062 Scornful Air Fort', 'f', 
+        'FL', 'Tampa', '', 'Hillsborough', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999363183', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'jjohnson', 7, 'Johnson', 'joelj1234', 
+        'Joel', 'Allen', '2009-09-06', '1991-07-02', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '36028', '3220 Drunk Message Parkway', 'f', 
+        'AL', 'Dozier', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999370090', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'kburton', 7, 'Burton', 'kristenb1234', 
+        'Kristen', 'Dena', '2011-08-07', '1986-08-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '42413', '4924 Part-time Charge Knoll', 'f', 
+        'KY', 'Hanson', '', 'Hopkins', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999372936', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'rpineda', 6, 'Pineda', 'robertp1234', 
+        'Robert', 'Gordon', '2011-06-14', '1985-09-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '47703', '1587 Labour Holiday Park', 't', 
+        'IN', 'Evansville', '', 'Vanderburgh', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999349988', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'avaldez', 6, 'Valdez', 'alissav1234', 
+        'Alissa', 'Gladys', '2013-05-24', '1994-03-25', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '64735', '4372 Fact Junction', 'f', 
+        'MO', 'Clinton', '', 'Henry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999332255', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 3, 'krowland', 5, 'Rowland', 'kennethr1234', 
+        'Kenneth', 'Ernest', '2006-05-03', '1978-10-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '98131', '8373 Resonant Investment Mission', 'f', 
+        'WA', 'Seattle', '', 'King', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999354715', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'thansen', 5, 'Hansen', 'terranceh1234', 
+        'Terrance', '', '2008-02-17', '1969-10-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '16550', '4446 Formidable Way Knolls', 't', 
+        'PA', 'Erie', '', 'Erie', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999363646', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 3, 'breid', 4, 'Reid', 'barbarar1234', 
+        'Barbara', 'Amanda', '2014-06-15', '1992-07-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '04056', '3517 Hot School Brook', 'f', 
+        'ME', 'Newfield', '', 'York', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999365307', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (6, 1, 'mroberts', 4, 'Roberts', 'michaelr1234', 
+        'Michael', 'Stephen', '2007-08-12', '1994-10-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '63541', '4668 Start Inlet', 'f', 
+        'MO', 'Glenwood', '', 'Schuyler', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999332788', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'rkaufman', 9, 'Kaufman', 'rachelk1234', 
+        'Rachel', 'Vickie', '2008-04-24', '1962-01-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '68659', '7270 Development Row', 'f', 
+        'NE', 'Rogers', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340790', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'csims', 9, 'Sims', 'christophers1234', 
+        'Christopher', 'John', '2015-10-05', '1991-01-07', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '89013', '5637 Plastic Mill', 't', 
+        'NV', 'Goldfield', '', 'Esmeralda', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999386091', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 1, 'srobinson', 8, 'Robinson', 'sarahr1234', 
+        'Sarah', '', '2006-03-04', '1996-01-28', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '65897', '8092 Pure Name Bridge', 'f', 
+        'MO', 'Springfield', '', 'Greene', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340199', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'jpayton', 8, 'Payton', 'johnnyp1234', 
+        'Johnny', 'Vincent', '2008-10-19', '1965-09-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '85738', '8772 Forthcoming Hope Fort', 'f', 
+        'AZ', 'Catalina', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999387186', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'djamison', 7, 'Jamison', 'davidj1234', 
+        'David', 'Eric', '2009-07-04', '1993-08-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '59604', '9218 Moral Worker Summit', 'f', 
+        'MT', 'Helena', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340530', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'jford', 7, 'Ford', 'jamief1234', 
+        'Jamie', '', '2014-06-22', '1974-08-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '41746', '8268 Hill Valleys', 't', 
+        'KY', 'Happy', '', 'Perry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384455', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 1, 'gwatson', 6, 'Watson', 'geraldw1234', 
+        'Gerald', 'Larry', '2006-10-09', '1967-11-15', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '85063', '881 Scary Holiday Radial', 'f', 
+        'AZ', 'Phoenix', '', 'Maricopa', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999385100', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 1, 'clambert', 6, 'Lambert', 'charlesl1234', 
+        'Charles', 'William', '2013-06-14', '1995-09-22', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '40291', '6026 Wide Development Port', 'f', 
+        'KY', 'Louisville', '', 'Jefferson', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335749', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 1, 'mbarber', 5, 'Barber', 'michealb1234', 
+        'Micheal', 'Ramon', '2010-10-04', '1988-11-26', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '91357', '9727 Proposed Executive Plaza', 't', 
+        'CA', 'Tarzana', '', 'Los angeles', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999361522', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'tcruz', 5, 'Cruz', 'tomc1234', 
+        'Tom', 'Eugene', '2013-09-11', '1970-09-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '40546', '7481 Reform Road', 't', 
+        'KY', 'Lexington', '', 'Fayette', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394278', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 1, 'iwalton', 4, 'Walton', 'inezw1234', 
+        'Inez', 'Amanda', '2011-05-19', '1986-10-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '29053', '8589 Official Valleys', 'f', 
+        'SC', 'Gaston', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999356283', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (5, 3, 'mtownsend', 4, 'Townsend', 'maryt1234', 
+        'Mary', '', '2015-04-06', '1995-03-03', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '72464', '3321 Answer Stravenue', 't', 
+        'AR', 'Saint francis', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336350', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'cmartinez', 9, 'Martinez', 'carolynm1234', 
+        'Carolyn', 'Sandra', '2007-04-03', '1988-07-18', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '49654', '7081 Appalling Plant Causeway', 't', 
+        'MI', 'Leland', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999397121', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 1, 'jjohnson', 9, 'Johnson', 'jeremyj1234', 
+        'Jeremy', 'Mark', '2014-09-01', '1970-03-14', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '70358', '4786 Prior Politics Mission', 'f', 
+        'LA', 'Grand isle', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999397850', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 9);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 1, 'mscott', 8, 'Scott', 'maes1234', 
+        'Mae', 'Sue', '2011-10-01', '1964-12-02', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '14723', '1060 Letter Stravenue', 'f', 
+        'NY', 'Cherry creek', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999395984', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'rstevens', 8, 'Stevens', 'russells1234', 
+        'Russell', 'Daniel', '2011-08-15', '1973-08-15', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '29582', '7735 Street Creek', 'f', 
+        'SC', 'North myrtle beach', '', 'Horry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340524', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 8);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'therrera', 7, 'Herrera', 'tracih1234', 
+        'Traci', 'Edith', '2009-10-13', '1994-07-07', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '84133', '7301 Watery Arrangement Radial', 'f', 
+        'UT', 'Salt lake city', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999386259', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'vgrimes', 7, 'Grimes', 'virginiag1234', 
+        'Virginia', 'Jennifer', '2012-07-27', '1984-03-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '87027', '8666 Fluttering Situation Heights', 'f', 
+        'NM', 'La jara', '', 'Sandoval', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999318163', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 7);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 1, 'pward', 6, 'Ward', 'paulw1234', 
+        'Paul', '', '2006-09-02', '1985-05-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '38233', '8859 Roasted Energy Falls', 'f', 
+        'TN', 'Kenton', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999346968', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'bgreen', 6, 'Green', 'beatriceg1234', 
+        'Beatrice', 'Janette', '2014-12-09', '1964-12-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '65438', '9082 Plain Bed Avenue', 'f', 
+        'MO', 'Birch tree', '', 'Shannon', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999345139', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 6);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 1, 'sschmidt', 5, 'Schmidt', 'scotts1234', 
+        'Scott', 'Kyle', '2006-04-02', '1987-07-07', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '99670', '2204 Status Avenue', 'f', 
+        'AK', 'South naknek', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999393981', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'jclark', 5, 'Clark', 'joannec1234', 
+        'Joanne', 'Andrea', '2009-10-21', '1985-03-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '35175', '7622 Thoughtless Science Pines', 'f', 
+        'AL', 'Union grove', '', 'Marshall', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999366354', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 5);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 1, 'bbrown', 4, 'Brown', 'beverlyb1234', 
+        'Beverly', 'Florence', '2011-06-27', '1961-07-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '29058', '2991 Trip Crescent', 't', 
+        'SC', 'Heath springs', '', 'Lancaster', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999338317', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (4, 3, 'jmcginnis', 4, 'Mcginnis', 'josem1234', 
+        'Jose', 'David', '2015-10-22', '1976-01-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '65055', '8231 Relieved Debt Cape', 'f', 
+        'MO', 'Mc girk', '', 'Moniteau', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999316430', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+INSERT INTO permission.usr_work_ou_map (usr, work_ou) 
+    VALUES (CURRVAL('actor.usr_id_seq'), 4);
+
+UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname 
+    FROM actor.org_unit aou 
+    WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4;
+
+COMMIT;

commit 177d2bb133b2704cc507f570fbea2d17c239d0b9
Author: Bill Erickson <berick at esilibrary.com>
Date:   Thu Feb 9 17:52:11 2012 +0000

    Sample patron data
    
    100 Patron users
    
    * Each user has 1 address and one card
    * Barcodes take the form 99999 + 6 random digits
    * Usernames == barcodes
    * Passwords = lowercase(firstname + last initial + 1234)
    * Home org units were randomly set.  Each can_have_users org unit should have several patrons
    
    See also LP #926281
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>

diff --git a/Open-ILS/tests/datasets/patrons100.sql b/Open-ILS/tests/datasets/patrons100.sql
new file mode 100644
index 0000000..1f46a91
--- /dev/null
+++ b/Open-ILS/tests/datasets/patrons100.sql
@@ -0,0 +1,2103 @@
+BEGIN;
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999395390', 9, 'Brooks', 'terrib1234', 
+        'Terri', 'Maria', '2011-05-03', '1973-03-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '32961', '1809 Target Way', 't', 
+        'FL', 'Vero beach', '', 'Indian river', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999395390', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999320945', 5, 'Jackson', 'shannonj1234', 
+        'Shannon', 'Thomas', '2014-04-22', '1981-11-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '41301', '3481 Facility Island', 'f', 
+        'KY', 'Campton', '', 'Wolfe', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999320945', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999355250', 5, 'Jones', 'gregoryj1234', 
+        'Gregory', '', '2014-05-07', '1967-05-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '55927', '5150 Dinner Expressway', 'f', 
+        'MN', 'Dodge center', '', 'Dodge', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999355250', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999387993', 9, 'Moran', 'vincentm1234', 
+        'Vincent', 'Kenneth', '2010-12-03', '1996-05-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '22611', '8496 Random Trust Points', 'f', 
+        'VA', 'Berryville', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999387993', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999335859', 8, 'Jones', 'gregoryj1234', 
+        'Gregory', 'Adam', '2015-07-13', '1987-03-06', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '99502', '7626 Secret Institute Courts', 'f', 
+        'AK', 'Anchorage', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335859', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999373186', 7, 'Walker', 'brittanyw1234', 
+        'Brittany', 'Geraldine', '2015-10-03', '1995-02-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '40445', '7044 Regular Index Path', 'f', 
+        'KY', 'Livingston', '', 'Rockcastle', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999373186', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999384262', 9, 'Miller', 'ernestom1234', 
+        'Ernesto', 'Robert', '2008-07-12', '1997-02-02', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '33157', '3403 Thundering Heat Meadows', 'f', 
+        'FL', 'Miami', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999384262', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999373998', 9, 'Hill', 'roberth1234', 
+        'Robert', 'Louis', '2009-11-13', '1998-05-02', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '18960', '759 Doubtful Government Extension', 't', 
+        'PA', 'Sellersville', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999373998', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999376669', 7, 'Lopez', 'edwardl1234', 
+        'Edward', 'Robert', '2009-03-11', '1994-08-21', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '29593', '5431 Japanese Work Rapid', 'f', 
+        'SC', 'Society hill', '', 'Darlington', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999376669', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999361076', 8, 'Bell', 'andrewb1234', 
+        'Andrew', 'Alberto', '2006-03-12', '1999-04-16', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '61936', '5253 Agricultural Exhibition Stravenue', 'f', 
+        'IL', 'La place', '', 'Piatt', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999361076', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999376988', 9, 'Mitchell', 'jenniferm1234', 
+        'Jennifer', 'Dorothy', '2007-04-07', '1981-08-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '61822', '8649 Raspy Goal Terrace', 't', 
+        'IL', 'Champaign', '', 'Champaign', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999376988', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999390791', 7, 'Ortiz', 'richardo1234', 
+        'Richard', '', '2008-05-27', '1978-06-13', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '23885', '2433 Uncomfortable Nature Greens', 'f', 
+        'VA', 'Sutherland', '', 'Dinwiddie', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999390791', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999378730', 6, 'Wade', 'robertw1234', 
+        'Robert', 'Coy', '2013-08-09', '1985-12-21', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '55796', '3241 Communist Boat Boulevard', 'f', 
+        'MN', 'Winton', '', 'Saint louis', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999378730', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999360638', 5, 'Wise', 'janetw1234', 
+        'Janet', '', '2010-02-27', '1992-08-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '64126', '6773 Government Hill', 'f', 
+        'MO', 'Kansas city', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999360638', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999350419', 4, 'Torres', 'donaldt1234', 
+        'Donald', 'Arnold', '2007-04-02', '1974-06-26', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '40847', '7194 Gorgeous Edge Dale', 'f', 
+        'KY', 'Kenvir', '', 'Harlan', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999350419', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999354736', 4, 'Miller', 'jeffm1234', 
+        'Jeff', 'James', '2013-02-19', '1977-03-17', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '80920', '9674 Filthy Firm Meadows', 'f', 
+        'CO', 'Colorado springs', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999354736', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999329662', 9, 'Estes', 'leonarde1234', 
+        'Leonard', '', '2012-10-24', '1994-05-07', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '20724', '6145 Superior Dress Prairie', 't', 
+        'MD', 'Laurel', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999329662', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999397601', 8, 'Dunn', 'brittneyd1234', 
+        'Brittney', 'Pamela', '2015-07-26', '1998-06-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '73838', '9753 Confident Limit Shoal', 'f', 
+        'OK', 'Chester', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999397601', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999377594', 4, 'Wiggins', 'jeanw1234', 
+        'Jean', 'Verna', '2009-05-25', '1991-09-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '23018', '6115 Thoughtful Country Ridge', 'f', 
+        'VA', 'Bena', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999377594', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999371252', 9, 'Thomas', 'lelat1234', 
+        'Lela', 'Sarah', '2015-04-14', '1968-04-11', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '60609', '4223 Spotty Chemical Stravenue', 'f', 
+        'IL', 'Chicago', '', 'Cook', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999371252', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999398023', 8, 'Phillips', 'noahp1234', 
+        'Noah', 'Joseph', '2012-02-18', '1993-03-17', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '33593', '2005 Inner Entry Harbor', 'f', 
+        'FL', 'Trilby', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999398023', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999324566', 5, 'Mitchell', 'carolynm1234', 
+        'Carolyn', 'Patrica', '2015-11-05', '1981-09-03', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '50652', '5259 Film Crossing', 't', 
+        'IA', 'Lincoln', '', 'Tama', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999324566', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999379221', 5, 'Wells', 'kristenw1234', 
+        'Kristen', 'Vivian', '2013-11-20', '1971-01-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '12450', '2302 Prisoner Way', 'f', 
+        'NY', 'Lanesville', '', 'Greene', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999379221', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999373350', 8, 'Lindsey', 'noahl1234', 
+        'Noah', 'Keith', '2007-06-19', '1972-11-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '50108', '7583 Low Surface Overpass', 'f', 
+        'IA', 'Grand river', '', 'Decatur', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999373350', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999340920', 4, 'Williams', 'berthaw1234', 
+        'Bertha', 'Katherine', '2010-03-19', '1986-12-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '20646', '3301 Acid Canyon', 'f', 
+        'MD', 'La plata', '', 'Charles', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999340920', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999398482', 7, 'Rodriguez', 'jamesr1234', 
+        'James', '', '2008-10-14', '1993-09-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '95066', '9801 Working-class Flower Meadow', 'f', 
+        'CA', 'Scotts valley', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999398482', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999394378', 5, 'Byrd', 'matthewb1234', 
+        'Matthew', 'David', '2007-05-02', '1965-12-15', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '43015', '9029 Note Court', 't', 
+        'OH', 'Delaware', '', 'Delaware', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394378', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999382659', 4, 'Kelley', 'sandrak1234', 
+        'Sandra', 'Pearlie', '2011-06-06', '1977-01-18', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '56568', '4246 Fun Post Street', 'f', 
+        'MN', 'Nielsville', '', 'Polk', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999382659', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999387130', 7, 'Wilson', 'bethw1234', 
+        'Beth', 'Michelle', '2010-06-08', '1966-07-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '15341', '7780 Horrible Winner Island', 'f', 
+        'PA', 'Holbrook', '', 'Greene', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999387130', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999310765', 8, 'Daniels', 'randyd1234', 
+        'Randy', 'Lawrence', '2012-06-01', '1971-03-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '29680', '4697 Subsequent Culture Pass', 'f', 
+        'SC', 'Simpsonville', '', 'Greenville', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999310765', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999335545', 9, 'Simpson', 'steves1234', 
+        'Steve', 'Raymond', '2011-02-09', '1961-07-04', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '88118', '2400 Communication Mount', 'f', 
+        'NM', 'Floyd', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335545', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999360529', 5, 'Hoskins', 'jimh1234', 
+        'Jim', 'Michael', '2008-11-15', '1983-08-02', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '15015', '7815 Principal Element Center', 't', 
+        'PA', 'Bradfordwoods', '', 'Allegheny', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999360529', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999357038', 5, 'May', 'michaelm1234', 
+        'Michael', '', '2014-07-25', '1988-03-06', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '20064', '4827 Shoulder Center', 'f', 
+        'DC', 'Washington', '', 'District of columbia', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999357038', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999371688', 8, 'Ellison', 'done1234', 
+        'Don', 'John', '2015-08-09', '1999-10-26', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '20643', '1298 Golden Speed Hills', 't', 
+        'MD', 'Ironsides', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999371688', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999312757', 4, 'Hughes', 'josephh1234', 
+        'Joseph', 'Bryant', '2011-10-13', '1998-05-13', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '48613', '9736 Profitable Wine Spring', 'f', 
+        'MI', 'Bentley', '', 'Bay', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999312757', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999399015', 8, 'Turner', 'cristinat1234', 
+        'Cristina', 'Karen', '2008-07-15', '1985-12-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '45844', '6445 Turkish Strike Shoal', 't', 
+        'OH', 'Fort jennings', '', 'Putnam', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999399015', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999313973', 4, 'Langley', 'victorl1234', 
+        'Victor', 'James', '2011-04-02', '1993-01-09', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '94576', '1082 Capacity Hill', 'f', 
+        'CA', 'Deer park', '', 'Napa', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999313973', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999311521', 6, 'Fields', 'davidf1234', 
+        'David', '', '2013-09-03', '1990-08-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '73939', '8788 Religious Writer Isle', 'f', 
+        'OK', 'Goodwell', '', 'Texas', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999311521', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999388816', 7, 'Hoffman', 'gregoryh1234', 
+        'Gregory', 'Thomas', '2012-11-04', '1999-11-13', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '47163', '4971 Assembly Parkways', 'f', 
+        'IN', 'Otisco', '', 'Clark', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999388816', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999345160', 8, 'Gonzalez', 'natalieg1234', 
+        'Natalie', 'Joan', '2007-10-22', '1991-04-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '17120', '8835 Amazing Reduction Course', 'f', 
+        'PA', 'Harrisburg', '', 'Dauphin', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999345160', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999328966', 9, 'Rucker', 'drewr1234', 
+        'Drew', '', '2007-03-23', '1965-12-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '92253', '5158 Redundant Reality Creek', 'f', 
+        'CA', 'La quinta', '', 'Riverside', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999328966', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999394635', 9, 'Mitchell', 'kimberlym1234', 
+        'Kimberly', '', '2013-01-02', '1971-02-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '85375', '9724 Land Corner', 'f', 
+        'AZ', 'Sun city west', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394635', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999333308', 7, 'Murray', 'heatherm1234', 
+        'Heather', 'Margaret', '2013-08-18', '1969-05-21', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '51239', '5555 Project Bypass', 'f', 
+        'IA', 'Hull', '', 'Sioux', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999333308', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999316647', 7, 'Sosa', 'robertas1234', 
+        'Roberta', 'Norma', '2011-08-18', '1962-09-02', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '94010', '4571 Jealous Comparison Wells', 'f', 
+        'CA', 'Burlingame', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999316647', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999389066', 4, 'Ramos', 'annetter1234', 
+        'Annette', 'Angela', '2006-05-06', '1967-11-04', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '29621', '9196 Old Future Fort', 'f', 
+        'SC', 'Anderson', '', 'Anderson', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999389066', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999380162', 8, 'Jackson', 'paulj1234', 
+        'Paul', '', '2015-10-14', '1969-05-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '77651', '9869 Convention Pine', 't', 
+        'TX', 'Port neches', '', 'Jefferson', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999380162', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999318240', 7, 'Graham', 'johng1234', 
+        'John', 'Charles', '2007-05-15', '1998-12-23', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '03216', '3676 Sweet Campaign Courts', 'f', 
+        'NH', 'Andover', '', 'Merrimack', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999318240', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999347267', 7, 'Michael', 'adamm1234', 
+        'Adam', 'John', '2015-09-03', '1966-09-18', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '68113', '7244 Brief Tree Crescent', 'f', 
+        'NE', 'Offutt a f b', '', 'Sarpy', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999347267', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999344618', 7, 'Thomas', 'helent1234', 
+        'Helen', '', '2006-03-27', '1998-07-15', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '43534', '5066 Disabled Drink Ford', 'f', 
+        'OH', 'Mc clure', '', 'Henry', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999344618', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999301966', 7, 'Rivas', 'meghanr1234', 
+        'Meghan', '', '2007-11-21', '1977-08-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '48328', '1604 Other Factor Harbor', 't', 
+        'MI', 'Waterford', '', 'Oakland', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999301966', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999306663', 5, 'Hurst', 'williamh1234', 
+        'William', 'Ian', '2011-10-24', '1995-03-27', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '76937', '7986 Line Grove', 'f', 
+        'TX', 'Eola', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999306663', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999329410', 8, 'Bridges', 'kimberlyb1234', 
+        'Kimberly', 'Anna', '2014-04-19', '1981-01-13', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '21047', '9992 Show Village', 'f', 
+        'MD', 'Fallston', '', 'Harford', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999329410', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999396820', 6, 'Stewart', 'beatrices1234', 
+        'Beatrice', 'Gloria', '2015-02-04', '1966-12-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '64123', '7373 Social Fact Roads', 'f', 
+        'MO', 'Kansas city', '', 'Jackson', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999396820', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999398998', 7, 'Welsh', 'alejandraw1234', 
+        'Alejandra', 'Christine', '2009-03-24', '1973-11-18', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '91615', '4270 Deafening Speed Stream', 'f', 
+        'CA', 'North hollywood', '', 'Los angeles', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999398998', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999308688', 9, 'Osborne', 'leonao1234', 
+        'Leona', '', '2014-01-10', '1999-04-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '65261', '1368 Defiant Visit Drive', 'f', 
+        'MO', 'Keytesville', '', 'Chariton', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999308688', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999321465', 4, 'Sinclair', 'luellas1234', 
+        'Luella', 'Carole', '2015-04-06', '1993-10-15', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '45314', '3011 Thoughtful Law Terrace', 'f', 
+        'OH', 'Cedarville', '', 'Greene', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999321465', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999399294', 5, 'Jones', 'joej1234', 
+        'Joe', 'Wayne', '2006-09-23', '1963-12-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '12167', '1641 Jolly Period Bend', 'f', 
+        'NY', 'Stamford', '', 'Delaware', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999399294', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999355645', 6, 'Duncan', 'willied1234', 
+        'Willie', '', '2009-12-11', '1971-09-27', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '34682', '9904 Australian Cash Squares', 'f', 
+        'FL', 'Palm harbor', '', 'Pinellas', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999355645', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999359616', 6, 'Carney', 'andreac1234', 
+        'Andrea', '', '2008-11-16', '1989-04-18', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '23442', '9706 Jealous Alternative Fort', 't', 
+        'VA', 'Temperanceville', '', 'Accomack', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999359616', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999359143', 9, 'Hunt', 'howardh1234', 
+        'Howard', 'Ralph', '2011-06-06', '1971-05-09', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '49337', '1182 Radical Letter Square', 'f', 
+        'MI', 'Newaygo', '', 'Newaygo', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999359143', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999389009', 6, 'Martin', 'eddiem1234', 
+        'Eddie', 'Anthony', '2007-11-07', '1997-12-09', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '95031', '1938 Fundamental Distribution Lane', 'f', 
+        'CA', 'Los gatos', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999389009', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999327461', 9, 'Barry', 'paulb1234', 
+        'Paul', 'Richard', '2014-06-04', '1974-04-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '40583', '9317 Testy Soil Place', 'f', 
+        'KY', 'Lexington', '', 'Fayette', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999327461', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999319193', 7, 'Wright', 'dennisw1234', 
+        'Dennis', 'Jimmie', '2014-12-16', '1992-09-05', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '24925', '7338 Drab Development Underpass', 't', 
+        'WV', 'Caldwell', '', 'Greenbrier', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999319193', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999378520', 5, 'Saunders', 'rubens1234', 
+        'Ruben', 'Eric', '2011-06-25', '1975-06-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '32648', '2941 Conservation Race Haven', 'f', 
+        'FL', 'Horseshoe beach', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999378520', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999366196', 7, 'Lane', 'jenniferl1234', 
+        'Jennifer', '', '2008-05-23', '1961-10-22', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '12456', '5547 Knee Underpass', 'f', 
+        'NY', 'Mount marion', '', 'Ulster', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999366196', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999324371', 5, 'Madden', 'jom1234', 
+        'Jo', 'Mae', '2013-02-14', '1976-04-01', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '19612', '3125 League Brook', 'f', 
+        'PA', 'Reading', '', 'Berks', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999324371', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999316280', 8, 'Harding', 'naomih1234', 
+        'Naomi', 'Julie', '2006-09-02', '1986-05-21', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '93021', '6693 Thin Entry Lake', 't', 
+        'CA', 'Moorpark', '', 'Ventura', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999316280', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999388575', 5, 'Davis', 'blaked1234', 
+        'Blake', 'George', '2009-06-26', '1977-06-17', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '13856', '8634 Need Bridge', 'f', 
+        'NY', 'Walton', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999388575', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999336610', 4, 'Barnes', 'normab1234', 
+        'Norma', 'Gail', '2009-11-01', '1983-01-09', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '23107', '218 Region River', 'f', 
+        'VA', 'Maryus', '', 'Gloucester', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999336610', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999376864', 4, 'Anderson', 'leona1234', 
+        'Leon', '', '2013-05-24', '1986-09-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '27315', '9834 Standard Stravenue', 'f', 
+        'NC', 'Providence', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999376864', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999391951', 7, 'Gillespie', 'mistyg1234', 
+        'Misty', 'Margaret', '2008-10-12', '1993-10-19', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '47273', '4151 Severe Look Fort', 'f', 
+        'IN', 'Scipio', '', 'Jennings', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999391951', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999368950', 7, 'Santos', 'esthers1234', 
+        'Esther', 'Mary', '2009-11-08', '1961-12-17', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '06468', '2774 Melted Stone Islands', 'f', 
+        'CT', 'Monroe', '', 'Fairfield', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999368950', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999343281', 7, 'Bradley', 'rebeccab1234', 
+        'Rebecca', 'Vanessa', '2009-03-06', '1991-04-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '66948', '5933 Changing Terms Pike', 'f', 
+        'KS', 'Jamestown', '', 'Cloud', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999343281', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999394534', 4, 'Hart', 'victorh1234', 
+        'Victor', '', '2006-07-04', '1977-01-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '16833', '677 Breezy Agreement Mountain', 'f', 
+        'PA', 'Curwensville', '', 'Clearfield', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394534', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999323404', 8, 'Riley', 'edwardr1234', 
+        'Edward', 'Lonnie', '2010-10-06', '1992-07-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '84412', '5806 Metropolitan Problem Annex', 'f', 
+        'UT', 'Ogden', '', 'Weber', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999323404', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999375760', 5, 'Jordan', 'michellej1234', 
+        'Michelle', '', '2014-12-09', '1973-05-07', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '46970', '8951 Great Arrangement Mills', 'f', 
+        'IN', 'Peru', '', 'Miami', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999375760', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999315742', 7, 'Brown', 'maryb1234', 
+        'Mary', 'Jill', '2009-12-19', '1973-11-10', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '75663', '4845 Boat Course', 'f', 
+        'TX', 'Kilgore', '', 'Gregg', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999315742', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999322514', 7, 'Barber', 'shawnb1234', 
+        'Shawn', 'Thomas', '2013-06-22', '1988-10-21', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '98464', '7111 Accurate Talk Canyon', 't', 
+        'WA', 'Tacoma', '', 'Pierce', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999322514', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999342144', 8, 'Harrison', 'williamh1234', 
+        'William', 'Phillip', '2008-09-15', '1990-04-09', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '79085', '9798 Marked West Fork', 't', 
+        'TX', 'Summerfield', '', 'Castro', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999342144', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999320546', 7, 'Porter', 'darlenep1234', 
+        'Darlene', 'Lisa', '2015-07-15', '1987-02-23', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '24910', '3522 Channel Radial', 'f', 
+        'WV', 'Alderson', '', 'Monroe', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999320546', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999315474', 8, 'Lopez', 'joycel1234', 
+        'Joyce', 'Donna', '2010-02-06', '1980-06-28', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '89101', '9734 Civilian Position Hollow', 'f', 
+        'NV', 'Las vegas', '', 'Clark', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999315474', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999371586', 9, 'Stevenson', 'larrys1234', 
+        'Larry', '', '2013-04-25', '1990-12-20', 'Sr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '46241', '5799 Constitutional Roof Groves', 'f', 
+        'IN', 'Indianapolis', '', 'Marion', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999371586', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999329832', 4, 'Kinney', 'nicholask1234', 
+        'Nicholas', '', '2009-02-19', '1989-05-24', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '90606', '411 Preliminary Library Square', 't', 
+        'CA', 'Whittier', '', 'Los angeles', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999329832', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999342948', 5, 'Bernard', 'omarb1234', 
+        'Omar', 'David', '2013-01-04', '1981-08-19', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '41567', '2546 Marvellous Index Ways', 'f', 
+        'KY', 'Stone', '', 'Pike', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999342948', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999335091', 9, 'Brown', 'maryb1234', 
+        'Mary', 'Annie', '2006-04-28', '1978-04-02', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '07630', '48 Look Ridge', 'f', 
+        'NJ', 'Emerson', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999335091', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999303411', 8, 'Smith', 'sarahs1234', 
+        'Sarah', '', '2006-03-23', '1990-01-13', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '34972', '845 Relative Dress Mall', 'f', 
+        'FL', 'Okeechobee', '', 'Okeechobee', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999303411', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999327083', 8, 'Jones', 'coraj1234', 
+        'Cora', '', '2009-09-18', '1968-06-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '65262', '9202 Tight Subject Highway', 'f', 
+        'MO', 'Kingdom city', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999327083', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999300523', 7, 'Little', 'shawnl1234', 
+        'Shawn', 'Joseph', '2008-11-13', '1991-01-11', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '86343', '8169 Vast Passage Key', 'f', 
+        'AZ', 'Crown king', '', 'Yavapai', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999300523', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999328829', 6, 'Thurman', 'luannt1234', 
+        'Luann', 'Donna', '2008-05-19', '1990-08-19', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '63463', '1967 Interesting Court Ford', 'f', 
+        'MO', 'Philadelphia', '', 'Marion', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999328829', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999394673', 6, 'Scott', 'patricias1234', 
+        'Patricia', 'Robin', '2008-11-08', '1998-08-28', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '44241', '8955 Due Population Alley', 'f', 
+        'OH', 'Streetsboro', '', 'Portage', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999394673', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999355318', 5, 'Lamb', 'esperanzal1234', 
+        'Esperanza', 'Beth', '2013-07-17', '1995-06-13', 'III');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '05501', '9042 Just Show Turnpike', 'f', 
+        'MA', 'Andover', '', 'Essex', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999355318', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999377675', 8, 'Brown', 'wendib1234', 
+        'Wendi', 'Mary', '2012-09-21', '1996-10-12', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '37721', '7546 Rude Agreement Highway', 'f', 
+        'TN', 'Corryton', '', 'Knox', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999377675', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999363186', 5, 'Clarke', 'lawrencec1234', 
+        'Lawrence', 'Vern', '2015-01-10', '1982-05-20', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '76234', '7903 Surprised Rule Loop', 'f', 
+        'TX', 'Decatur', '', 'Wise', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999363186', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999346314', 8, 'Clark', 'danielc1234', 
+        'Daniel', 'Ricky', '2009-08-24', '1989-08-25', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '70706', '8604 Defensive Case Trace', 't', 
+        'LA', 'Denham springs', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999346314', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999353477', 6, 'Dennis', 'johnd1234', 
+        'John', 'Robert', '2012-04-16', '1986-12-08', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '14480', '8712 Legislative Box Shore', 'f', 
+        'NY', 'Lakeville', '', 'Livingston', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999353477', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999312358', 4, 'Copeland', 'janc1234', 
+        'Jan', 'Lindsey', '2015-08-08', '1998-06-14', 'Jr');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 'f', '83204', '6713 River Bridge', 'f', 
+        'ID', 'Pocatello', '', 'Bannock', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999312358', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999360839', 8, 'Brooks', 'pennyb1234', 
+        'Penny', 'Martha', '2013-11-28', '1980-03-13', 'II');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '79120', '8208 Death Ramp', 'f', 
+        'TX', 'Amarillo', '', 'Potter', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999360839', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999342446', 8, 'Johnson', 'jeannej1234', 
+        'Jeanne', '', '2008-10-16', '1974-12-14', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '85036', '9634 Tough Division Junction', 't', 
+        'AZ', 'Phoenix', '', '', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999342446', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 1, '99999358416', 4, 'Sanford', 'elizabeths1234', 
+        'Elizabeth', 'Vanessa', '2011-11-21', '1960-12-04', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '98357', '6767 Application Course', 'f', 
+        'WA', 'Neah bay', '', 'Clallam', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999358416', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+
+INSERT INTO actor.usr 
+    (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) 
+    VALUES (2, 3, '99999361389', 9, 'Ramirez', 'alanr1234', 
+        'Alan', 'Claude', '2008-12-02', '1984-10-16', '');
+
+INSERT INTO actor.usr_address 
+    (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) 
+    VALUES ('USA', 't', '76060', '9964 Skinny Party Orchard', 't', 
+        'TX', 'Kennedale', '', 'Tarrant', CURRVAL('actor.usr_id_seq'));
+
+INSERT INTO actor.card (barcode, usr) 
+    VALUES ('99999361389', CURRVAL('actor.usr_id_seq'));
+
+UPDATE actor.usr SET 
+    card = CURRVAL('actor.card_id_seq'), 
+    billing_address = CURRVAL('actor.usr_address_id_seq'), 
+    credit_forward_balance = '0', 
+    mailing_address = CURRVAL('actor.usr_address_id_seq') 
+    WHERE id=CURRVAL('actor.usr_id_seq');
+
+COMMIT;

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/tests/datasets/users_patrons_100.sql | 2103 ++++++++++++++
 Open-ILS/tests/datasets/users_staff_134.sql   | 3621 +++++++++++++++++++++++++
 2 files changed, 5724 insertions(+), 0 deletions(-)
 create mode 100644 Open-ILS/tests/datasets/users_patrons_100.sql
 create mode 100644 Open-ILS/tests/datasets/users_staff_134.sql


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list