CREATE TABLE acquisitions_memberships ( id character varying(36) NOT NULL, acquisitions_unit_id character varying(36), user_id character varying(36), data json ); CREATE TABLE acquisitions_units ( id character varying(36) NOT NULL, is_deleted boolean, name character varying(4), protect_create boolean, protect_delete boolean, protect_read boolean, protect_update boolean, data json ); CREATE TABLE audit_circulation_logs ( id character varying(36) NOT NULL, data json ); CREATE TABLE circulation_cancellation_reasons ( id character varying(36) NOT NULL, description character varying(34), name character varying(26), public_description character varying(39), requires_additional_information boolean, data json ); CREATE TABLE circulation_check_ins ( id character varying(36) NOT NULL, data json ); CREATE TABLE circulation_loan_history ( id character varying(36) NOT NULL, created_date character varying(29), operation character varying(1), data json ); CREATE TABLE circulation_loan_policies ( id character varying(36) NOT NULL, description character varying(22), loanable boolean, name character varying(19), renewable boolean, data json ); CREATE TABLE circulation_loans ( id character varying(36) NOT NULL, action character varying(15), due_date timestamp with time zone, item_id character varying(36), item_status character varying(11), loan_date timestamp with time zone, proxy_user_id character varying(36), renewal_count bigint, return_date timestamp with time zone, user_id character varying(36), data json, checkin_service_point_id character varying(1), claimed_returned_date timestamp with time zone, system_return_date timestamp with time zone ); CREATE TABLE circulation_patron_notice_policies ( id character varying(36) NOT NULL, active boolean, description character varying(54), name character varying(15), data json ); CREATE TABLE circulation_request_policies ( id character varying(36) NOT NULL, description character varying(23), name character varying(9), data json ); CREATE TABLE circulation_request_preference ( id character varying(36) NOT NULL, data json ); CREATE TABLE circulation_requests ( id character varying(36) NOT NULL, data json ); CREATE TABLE circulation_staff_slips ( id character varying(36) NOT NULL, active boolean, name character varying(16), template character varying(7), data json ); CREATE TABLE configuration_entries ( id character varying(36) NOT NULL, code character varying(15), config_name character varying(14), "default" boolean, description character varying(37), enabled boolean, module character varying(11), value character varying(182), data json ); CREATE TABLE course_copyrightstatuses ( id character varying(36) NOT NULL, description character varying(63), name character varying(19), data json ); CREATE TABLE course_courselistings ( id character varying(36) NOT NULL, course_type_id character varying(36), external_id character varying(10), location_id character varying(36), registrar_id character varying(10), servicepoint_id character varying(36), term_id character varying(36), data json ); CREATE TABLE course_courses ( id character varying(36) NOT NULL, course_listing_id character varying(36), course_number character varying(5), department_id character varying(36), description character varying(44), name character varying(22), number_of_students bigint, section_name character varying(4), data json ); CREATE TABLE course_coursetypes ( id character varying(36) NOT NULL, description character varying(36), name character varying(16), data json ); CREATE TABLE course_departments ( id character varying(36) NOT NULL, description character varying(46), name character varying(14), data json ); CREATE TABLE course_processingstatuses ( id character varying(36) NOT NULL, description character varying(31), name character varying(13), data json ); CREATE TABLE course_reserves ( id character varying(36) NOT NULL, course_listing_id character varying(36), item_id character varying(36), temporary_loan_type_id character varying(36), data json ); CREATE TABLE course_terms ( id character varying(36) NOT NULL, end_date character varying(10), name character varying(15), start_date character varying(10), data json ); CREATE TABLE email_email ( id character varying(36) NOT NULL, data json ); CREATE TABLE feesfines_accounts ( id character varying(36) NOT NULL, data json ); CREATE TABLE feesfines_comments ( id character varying(36) NOT NULL, data json ); CREATE TABLE feesfines_feefineactions ( id character varying(36) NOT NULL, data json ); CREATE TABLE feesfines_feefines ( id character varying(36) NOT NULL, automatic boolean, fee_fine_type character varying(27), data json ); CREATE TABLE feesfines_lost_item_fees_policies ( id character varying(36) NOT NULL, charge_amount_item_patron boolean, charge_amount_item_system boolean, description character varying(25), lost_item_processing_fee numeric(12,2), lost_item_returned character varying(6), name character varying(20), replaced_lost_item_processing_fee boolean, replacement_allowed boolean, replacement_processing_fee numeric(12,2), returned_lost_item_processing_fee boolean, data json ); CREATE TABLE feesfines_overdue_fines_policies ( id character varying(36) NOT NULL, count_closed boolean, description character varying(24), forgive_overdue_fine boolean, grace_period_recall boolean, max_overdue_fine numeric(12,2), max_overdue_recall_fine numeric(12,2), name character varying(19), data json ); CREATE TABLE feesfines_owners ( id character varying(36) NOT NULL, data json ); CREATE TABLE finance_budgets ( id character varying(36) NOT NULL, allocated numeric(12,2), allocation_from numeric(12,2), allocation_to numeric(12,2), allowable_encumbrance numeric(12,2), allowable_expenditure numeric(12,2), available numeric(12,2), awaiting_payment numeric(12,2), budget_status character varying(6), cash_balance numeric(12,2), encumbered numeric(12,2), expenditures numeric(12,2), fiscal_year_id character varying(36), fund_id character varying(36), initial_allocation numeric(12,2), name character varying(21), net_transfers numeric(12,2), over_encumbrance numeric(12,2), over_expended numeric(12,2), total_funding numeric(12,2), unavailable numeric(12,2), data json ); CREATE TABLE finance_expense_classes ( id character varying(36) NOT NULL, code character varying(4), external_account_number_ext character varying(2), name character varying(10), data json ); CREATE TABLE finance_fiscal_years ( id character varying(36) NOT NULL, code character varying(6), currency character varying(3), description character varying(20), name character varying(16), period_end timestamp with time zone, period_start timestamp with time zone, series character varying(2), data json ); CREATE TABLE finance_fund_types ( id character varying(36) NOT NULL, name character varying(24), data json ); CREATE TABLE finance_funds ( id character varying(36) NOT NULL, code character varying(14), description character varying(172), external_account_no character varying(15), fund_status character varying(8), fund_type_id character varying(36), ledger_id character varying(36), name character varying(33), data json ); CREATE TABLE finance_group_fund_fiscal_years ( id character varying(36) NOT NULL, budget_id character varying(36), fiscal_year_id character varying(36), fund_id character varying(36), group_id character varying(36), data json ); CREATE TABLE finance_groups ( id character varying(36) NOT NULL, code character varying(4), description character varying(183), name character varying(7), status character varying(6), data json ); CREATE TABLE finance_ledgers ( id character varying(36) NOT NULL, code character varying(8), currency character varying(3), description character varying(42), fiscal_year_one_id character varying(36), ledger_status character varying(6), name character varying(12), restrict_encumbrance boolean, restrict_expenditures boolean, data json ); CREATE TABLE finance_transactions ( id character varying(36) NOT NULL, amount numeric(12,2), currency character varying(3), description character varying(25), fiscal_year_id character varying(36), from_fund_id character varying(36), source character varying(4), source_fiscal_year_id character varying(36), to_fund_id character varying(36), transaction_type character varying(10), data json ); CREATE TABLE inventory_alternative_title_types ( id character varying(36) NOT NULL, name character varying(22), source character varying(5), data json ); CREATE TABLE inventory_call_number_types ( id character varying(36) NOT NULL, name character varying(43), source character varying(5), data json ); CREATE TABLE inventory_campuses ( id character varying(36) NOT NULL, code character varying(2), institution_id character varying(36), name character varying(11), data json ); CREATE TABLE inventory_classification_types ( id character varying(36) NOT NULL, name character varying(29), source character varying(5), data json ); CREATE TABLE inventory_contributor_name_types ( id character varying(36) NOT NULL, name character varying(16), ordering character varying(1), data json ); CREATE TABLE inventory_contributor_types ( id character varying(36) NOT NULL, code character varying(3), name character varying(39), source character varying(11), data json ); CREATE TABLE inventory_electronic_access_relationships ( id character varying(36) NOT NULL, name character varying(29), source character varying(5), data json ); CREATE TABLE inventory_holdings ( id character varying(36) NOT NULL, _version bigint, acquisition_method character varying(8), call_number character varying(32), call_number_prefix character varying(1), call_number_type_id character varying(36), copy_number character varying(1), effective_location_id character varying(36), holdings_type_id character varying(36), hrid character varying(16), ill_policy_id character varying(36), instance_id character varying(36), permanent_location_id character varying(36), receipt_status character varying(22), retention_policy character varying(21), shelving_title character varying(13), source_id character varying(36), data json ); CREATE TABLE inventory_holdings_note_types ( id character varying(36) NOT NULL, name character varying(20), source character varying(5), data json ); CREATE TABLE inventory_holdings_sources ( id character varying(36) NOT NULL, name character varying(5), source character varying(5), data json ); CREATE TABLE inventory_holdings_types ( id character varying(36) NOT NULL, name character varying(20), source character varying(5), data json ); CREATE TABLE inventory_identifier_types ( id character varying(36) NOT NULL, name character varying(32), source character varying(5), data json ); CREATE TABLE inventory_ill_policies ( id character varying(36) NOT NULL, name character varying(27), source character varying(5), data json ); CREATE TABLE inventory_instance_formats ( id character varying(36) NOT NULL, code character varying(2), name character varying(40), read_only boolean, source character varying(10), data json ); CREATE TABLE inventory_instance_note_types ( id character varying(36) NOT NULL, name character varying(46), source character varying(5), data json ); CREATE TABLE inventory_instance_relationship_types ( id character varying(36) NOT NULL, name character varying(19), data json ); CREATE TABLE inventory_instance_relationships ( id character varying(36) NOT NULL, instance_relationship_type_id character varying(36), sub_instance_id character varying(36), super_instance_id character varying(36), data json ); CREATE TABLE inventory_instance_statuses ( id character varying(36) NOT NULL, code character varying(5), name character varying(16), source character varying(5), data json ); CREATE TABLE inventory_instance_types ( id character varying(36) NOT NULL, code character varying(3), name character varying(43), source character varying(10), data json ); CREATE TABLE inventory_instances ( id character varying(36) NOT NULL, _version bigint, cataloged_date character varying(10), discovery_suppress boolean, hrid character varying(16), index_title character varying(33), instance_type_id character varying(36), mode_of_issuance_id character varying(36), previously_held boolean, source character varying(5), staff_suppress boolean, status_id character varying(36), status_updated_date timestamp with time zone, title character varying(270), data json ); CREATE TABLE inventory_institutions ( id character varying(36) NOT NULL, code character varying(2), name character varying(23), data json ); CREATE TABLE inventory_item_damaged_statuses ( id character varying(36) NOT NULL, name character varying(11), source character varying(5), data json ); CREATE TABLE inventory_item_note_types ( id character varying(36) NOT NULL, name character varying(20), source character varying(5), data json ); CREATE TABLE inventory_items ( id character varying(36) NOT NULL, _version bigint, barcode character varying(15), chronology character varying(24), copy_number character varying(6), effective_location_id character varying(36), effective_shelving_order character varying(54), enumeration character varying(17), holdings_record_id character varying(36), hrid character varying(16), item_level_call_number character varying(32), material_type_id character varying(36), number_of_pieces character varying(1), permanent_loan_type_id character varying(36), permanent_location_id character varying(36), temporary_loan_type_id character varying(36), temporary_location_id character varying(36), data json ); CREATE TABLE inventory_libraries ( id character varying(36) NOT NULL, campus_id character varying(36), code character varying(2), name character varying(19), data json ); CREATE TABLE inventory_loan_types ( id character varying(36) NOT NULL, name character varying(15), data json ); CREATE TABLE inventory_locations ( id character varying(36) NOT NULL, campus_id character varying(36), code character varying(10), description character varying(24), discovery_display_name character varying(6), institution_id character varying(36), is_active boolean, library_id character varying(36), name character varying(26), primary_service_point character varying(36), data json ); CREATE TABLE inventory_material_types ( id character varying(36) NOT NULL, name character varying(19), source character varying(5), data json ); CREATE TABLE inventory_modes_of_issuance ( id character varying(36) NOT NULL, name character varying(20), source character varying(12), data json ); CREATE TABLE inventory_nature_of_content_terms ( id character varying(36) NOT NULL, name character varying(31), source character varying(5), data json ); CREATE TABLE inventory_service_points ( id character varying(36) NOT NULL, code character varying(6), discovery_display_name character varying(33), name character varying(11), pickup_location boolean, shelving_lag_time bigint, data json ); CREATE TABLE inventory_service_points_users ( id character varying(36) NOT NULL, default_service_point_id character varying(36), user_id character varying(36), data json ); CREATE TABLE inventory_statistical_code_types ( id character varying(36) NOT NULL, name character varying(24), source character varying(5), data json ); CREATE TABLE inventory_statistical_codes ( id character varying(36) NOT NULL, code character varying(9), name character varying(38), source character varying(5), statistical_code_type_id character varying(36), data json ); CREATE TABLE invoice_invoices ( id character varying(36) NOT NULL, data json ); CREATE TABLE organization_categories ( id character varying(36) NOT NULL, value character varying(16), data json ); CREATE TABLE organization_contacts ( id character varying(36) NOT NULL, first_name character varying(8), inactive boolean, language character varying(18), last_name character varying(10), notes character varying(19), prefix character varying(6), data json ); CREATE TABLE organization_interfaces ( id character varying(36) NOT NULL, available boolean, delivery_method character varying(6), locally_stored character varying(55), name character varying(38), notes character varying(69), online_location character varying(51), statistics_format character varying(11), statistics_notes character varying(59), uri character varying(152), data json ); CREATE TABLE organization_organizations ( id character varying(36) NOT NULL, access_provider boolean, claiming_interval bigint, code character varying(17), description character varying(419), discount_percent numeric(12,2), erp_code character varying(12), expected_activation_interval bigint, expected_invoice_interval bigint, expected_receipt_interval bigint, export_to_accounting boolean, governmental boolean, is_vendor boolean, language character varying(18), liable_for_vat boolean, licensor boolean, material_supplier boolean, name character varying(31), payment_method character varying(14), renewal_activation_interval bigint, san_code character varying(7), status character varying(8), subscription_interval bigint, tax_id character varying(9), tax_percentage numeric(12,2), data json ); CREATE TABLE po_alerts ( id character varying(36) NOT NULL, alert character varying(15), data json ); CREATE TABLE po_lines ( id character varying(36) NOT NULL, acquisition_method character varying(36), agreement_id character varying(36), cancellation_restriction boolean, cancellation_restriction_note character varying(1), checkin_items boolean, collection boolean, description character varying(1), donor character varying(1), edition character varying(14), is_package boolean, order_format character varying(17), payment_status character varying(7), po_line_description character varying(1), po_line_number character varying(8), publication_date character varying(4), publisher character varying(24), purchase_order_id character varying(36), receipt_status character varying(7), requester character varying(1), rush boolean, selector character varying(3), source character varying(4), title_or_package character varying(45), data json ); CREATE TABLE po_order_templates ( id character varying(36) NOT NULL, acquisition_method character varying(36), approved boolean, bill_to character varying(36), cancellation_restriction boolean, collection boolean, instance_id character varying(1), manual_po boolean, order_format character varying(19), order_type character varying(8), payment_status character varying(20), publication_date character varying(4), publisher character varying(20), re_encumber boolean, receipt_status character varying(20), selector character varying(15), ship_to character varying(36), template_code character varying(19), template_description character varying(95), template_name character varying(23), vendor character varying(36), data json ); CREATE TABLE po_pieces ( id character varying(36) NOT NULL, data json ); CREATE TABLE po_purchase_orders ( id character varying(36) NOT NULL, approval_date timestamp with time zone, approved boolean, approved_by_id character varying(36), manual_po boolean, order_type character varying(8), po_number character varying(6), re_encumber boolean, vendor character varying(36), workflow_status character varying(7), data json ); CREATE TABLE po_receiving_history ( id character varying(36) NOT NULL, data json ); CREATE TABLE po_reporting_codes ( id character varying(36) NOT NULL, code character varying(5), data json ); CREATE TABLE user_addresstypes ( id character varying(36) NOT NULL, address_type character varying(7), "desc" character varying(15), data json ); CREATE TABLE user_groups ( id character varying(36) NOT NULL, "desc" character varying(21), expiration_offset_in_days bigint, "group" character varying(9), data json ); CREATE TABLE user_users ( id character varying(36) NOT NULL, active boolean, barcode character varying(19), created_date timestamp with time zone, enrollment_date timestamp with time zone, expiration_date timestamp with time zone, patron_group character varying(36), type character varying(6), updated_date timestamp with time zone, username character varying(23), data json ); INSERT INTO acquisitions_memberships VALUES ('6bad4244-0922-450a-bcef-cfa4233a0f7f', '0ebb1f7d-983f-3026-8a4c-5318e0ebc041', '4f0e711c-d583-41e0-9555-b62f1725023f', '{ "id": "6bad4244-0922-450a-bcef-cfa4233a0f7f", "acquisitionsUnitId": "0ebb1f7d-983f-3026-8a4c-5318e0ebc041", "metadata": { "createdDate": "2021-12-06T01:50:50.043+00:00", "updatedDate": "2021-12-06T01:50:50.043+00:00" }, "userId": "4f0e711c-d583-41e0-9555-b62f1725023f" }'); -- -- TOC entry 4261 (class 0 OID 88216032) -- Dependencies: 506 -- Data for Name: acquisitions_units; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO acquisitions_units VALUES ('0ebb1f7d-983f-3026-8a4c-5318e0ebc041', false, 'main', true, true, false, true, '{ "id": "0ebb1f7d-983f-3026-8a4c-5318e0ebc041", "isDeleted": false, "metadata": { "createdDate": "2021-12-06T01:50:50.027+00:00", "updatedDate": "2021-12-06T01:50:50.027+00:00" }, "name": "main", "protectCreate": true, "protectDelete": true, "protectRead": false, "protectUpdate": true }'); -- -- TOC entry 4174 (class 0 OID 88214471) -- Dependencies: 419 -- Data for Name: audit_circulation_logs; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4184 (class 0 OID 88214680) -- Dependencies: 429 -- Data for Name: circulation_cancellation_reasons; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_cancellation_reasons VALUES ('1c0e9ba1-6a97-4bbc-94fc-83eecc32f5fd', 'Item is needed for course reserves', 'Needed For Course Reserves', 'Item is no longer available for request', false, '{ "id": "1c0e9ba1-6a97-4bbc-94fc-83eecc32f5fd", "description": "Item is needed for course reserves", "metadata": { "createdDate": "2021-12-06T01:51:20.853+00:00", "updatedDate": "2021-12-06T01:51:20.853+00:00" }, "name": "Needed For Course Reserves", "publicDescription": "Item is no longer available for request", "requiresAdditionalInformation": false }'); INSERT INTO circulation_cancellation_reasons VALUES ('75187e8d-e25a-47a7-89ad-23ba612338de', 'Cancelled at patron’s request', 'Patron Cancelled', NULL, false, '{ "id": "75187e8d-e25a-47a7-89ad-23ba612338de", "description": "Cancelled at patron’s request", "metadata": { "createdDate": "2021-12-06T01:51:20.863+00:00", "updatedDate": "2021-12-06T01:51:20.863+00:00" }, "name": "Patron Cancelled", "requiresAdditionalInformation": false }'); INSERT INTO circulation_cancellation_reasons VALUES ('941c7055-04f8-4db3-82cb-f63965c1506f', NULL, 'INN-Reach', NULL, false, '{ "id": "941c7055-04f8-4db3-82cb-f63965c1506f", "metadata": { "createdDate": "2021-12-06T01:53:01.252+00:00", "updatedDate": "2021-12-06T01:53:01.252+00:00" }, "name": "INN-Reach", "requiresAdditionalInformation": false }'); INSERT INTO circulation_cancellation_reasons VALUES ('b548b182-55c2-4741-b169-616d9cd995a8', 'Other', 'Other', NULL, true, '{ "id": "b548b182-55c2-4741-b169-616d9cd995a8", "description": "Other", "metadata": { "createdDate": "2021-12-06T01:51:20.840+00:00", "updatedDate": "2021-12-06T01:51:20.840+00:00" }, "name": "Other", "requiresAdditionalInformation": true }'); INSERT INTO circulation_cancellation_reasons VALUES ('ff474f60-d9ce-4bd8-8659-eb51af825a56', 'Item is no longer available', 'Item Not Available', NULL, false, '{ "id": "ff474f60-d9ce-4bd8-8659-eb51af825a56", "description": "Item is no longer available", "metadata": { "createdDate": "2021-12-06T01:51:20.873+00:00", "updatedDate": "2021-12-06T01:51:20.873+00:00" }, "name": "Item Not Available", "requiresAdditionalInformation": false }'); -- -- TOC entry 4185 (class 0 OID 88214699) -- Dependencies: 430 -- Data for Name: circulation_check_ins; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4186 (class 0 OID 88214713) -- Dependencies: 431 -- Data for Name: circulation_fixed_due_date_schedules; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4173 (class 0 OID 88214454) -- Dependencies: 418 -- Data for Name: circulation_loan_history; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_loan_history VALUES ('1e0218d5-78b8-48f0-8b28-c9a7b8f4860a', '2021-12-06 01:51:20.975674+00', 'I', '{ "id": "1e0218d5-78b8-48f0-8b28-c9a7b8f4860a", "createdDate": "2021-12-06 01:51:20.975674+00", "loan": { "id": "40f5e9d9-38ac-458e-ade7-7795bd821652", "action": "checkedout", "dueDate": "2017-03-19T18:32:31.000+00:00", "itemId": "1b6d3338-186e-4e35-9e75-1b886b0da53e", "itemStatus": "Checked out", "loanDate": "2017-03-05T18:32:31Z", "metadata": { "createdDate": "2021-12-06T01:51:20.974+00:00", "updatedDate": "2021-12-06T01:51:20.974+00:00" }, "renewalCount": 0, "status": { "name": "Open" }, "userId": "47f7eaea-1a18-4058-907c-62b7d095c61b" }, "operation": "I" }'); INSERT INTO circulation_loan_history VALUES ('287b0e60-1697-4807-825a-6f462853809a', '2021-12-06 01:51:20.952194+00', 'I', '{ "id": "287b0e60-1697-4807-825a-6f462853809a", "createdDate": "2021-12-06 01:51:20.952194+00", "loan": { "id": "3fd2d7aa-a6fe-4794-9d34-837a6bd31a8b", "action": "holdrequested", "dueDate": "2017-01-19T12:42:21.000+00:00", "itemId": "bb5a6689-c008-4c96-8f8f-b666850ee12d", "itemStatus": "Checked out", "loanDate": "2017-01-05T12:42:21Z", "metadata": { "createdDate": "2021-12-06T01:51:20.894+00:00", "updatedDate": "2021-12-06T01:51:20.894+00:00" }, "status": { "name": "Open" }, "userId": "ab579dc3-219b-4f5b-8068-ab1c7a55c402" }, "operation": "I" }'); INSERT INTO circulation_loan_history VALUES ('8236d046-e4bc-49c1-8fc1-20bc070d0016', '2021-12-06 01:51:20.963025+00', 'I', '{ "id": "8236d046-e4bc-49c1-8fc1-20bc070d0016", "createdDate": "2021-12-06 01:51:20.963025+00", "loan": { "id": "959f65f6-ce51-4984-99fa-5e11c1f5661c", "action": "recallrequested", "dueDate": "2017-03-17T15:41:54.000+00:00", "itemId": "23f2c8e1-bd5d-4f27-9398-a688c998808a", "itemStatus": "Checked out", "loanDate": "2017-03-03T15:41:54Z", "metadata": { "createdDate": "2021-12-06T01:51:20.961+00:00", "updatedDate": "2021-12-06T01:51:20.961+00:00" }, "renewalCount": 1, "status": { "name": "Open" }, "userId": "d0fc4228-2e42-49b2-a5b0-9df48897e8c0" }, "operation": "I" }'); INSERT INTO circulation_loan_history VALUES ('c4facea4-afe9-46fe-8a3f-b6a562958f29', '2021-12-06 01:51:20.970095+00', 'I', '{ "id": "c4facea4-afe9-46fe-8a3f-b6a562958f29", "createdDate": "2021-12-06 01:51:20.970095+00", "loan": { "id": "0bab56e5-1ab6-4ac2-afdf-8b2df0434378", "action": "checkedin", "dueDate": "2017-02-17T08:43:15.000+00:00", "itemId": "459afaba-5b39-468d-9072-eb1685e0ddf4", "itemStatus": "Available", "loanDate": "2017-02-03T08:43:15Z", "metadata": { "createdDate": "2021-12-06T01:51:20.967+00:00", "updatedDate": "2021-12-06T01:51:20.967+00:00" }, "proxyUserId": "a13dda6b-51ce-4543-be9c-eff894c0c2d0", "renewalCount": 0, "returnDate": "2017-03-01T11:35:12Z", "status": { "name": "Closed" }, "userId": "ab579dc3-219b-4f5b-8068-ab1c7a55c402" }, "operation": "I" }'); INSERT INTO circulation_loan_history VALUES ('fab849a1-19fe-44f1-8761-61ecceae7ae4', '2021-12-06 01:51:20.980923+00', 'I', '{ "id": "fab849a1-19fe-44f1-8761-61ecceae7ae4", "createdDate": "2021-12-06 01:51:20.980923+00", "loan": { "id": "21b34ab5-fdb1-4922-88ba-4f32750f61da", "action": "checkedin", "dueDate": "2017-03-19T18:32:31.000+00:00", "itemId": "23fdb0bc-ab58-442a-b326-577a96204487", "itemStatus": "Available", "loanDate": "2017-03-05T18:32:31Z", "metadata": { "createdDate": "2021-12-06T01:51:20.979+00:00", "updatedDate": "2021-12-06T01:51:20.979+00:00" }, "renewalCount": 0, "status": { "name": "Closed" }, "userId": "9ad09b01-7429-455f-9f64-e3897027db61" }, "operation": "I" }'); -- -- TOC entry 4187 (class 0 OID 88214728) -- Dependencies: 432 -- Data for Name: circulation_loan_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_loan_policies VALUES ('43198de5-f56a-4a53-a0bd-5a324418967a', NULL, true, 'One Hour', true, '{ "id": "43198de5-f56a-4a53-a0bd-5a324418967a", "loanable": true, "loansPolicy": { "closedLibraryDueDateManagementId": "CURRENT_DUE_DATE_TIME", "period": { "duration": 1, "intervalId": "Hours" }, "profileId": "Rolling" }, "metadata": { "createdDate": "2021-12-06T01:51:20.627+00:00", "updatedDate": "2021-12-06T01:51:20.627+00:00" }, "name": "One Hour", "renewable": true, "renewalsPolicy": { "differentPeriod": false, "numberAllowed": 3.0, "renewFromId": "SYSTEM_DATE", "unlimited": false } }'); INSERT INTO circulation_loan_policies VALUES ('d9cd0bed-1b49-4b5e-a7bd-064b8d177231', 'An example loan policy', true, 'Example Loan Policy', true, '{ "id": "d9cd0bed-1b49-4b5e-a7bd-064b8d177231", "description": "An example loan policy", "loanable": true, "loansPolicy": { "closedLibraryDueDateManagementId": "CURRENT_DUE_DATE", "gracePeriod": { "duration": 7, "intervalId": "Days" }, "period": { "duration": 60, "intervalId": "Days" }, "profileId": "Rolling" }, "metadata": { "createdDate": "2021-12-06T01:51:20.676+00:00", "updatedDate": "2021-12-06T01:51:20.676+00:00" }, "name": "Example Loan Policy", "renewable": true, "renewalsPolicy": { "differentPeriod": true, "period": { "duration": 30, "intervalId": "Days" }, "renewFromId": "CURRENT_DUE_DATE", "unlimited": true }, "requestManagement": { "recalls": { "allowRecallsToExtendOverdueLoans": false, "minimumGuaranteedLoanPeriod": { "duration": 30, "intervalId": "Days" }, "recallReturnInterval": { "duration": 5, "intervalId": "Days" } } } }'); -- -- TOC entry 4178 (class 0 OID 88214540) -- Dependencies: 423 -- Data for Name: circulation_loans; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_loans VALUES ('0bab56e5-1ab6-4ac2-afdf-8b2df0434378', 'checkedin', '2017-02-17 08:43:15+00', '459afaba-5b39-468d-9072-eb1685e0ddf4', 'Available', '2017-02-03 08:43:15+00', 'a13dda6b-51ce-4543-be9c-eff894c0c2d0', 0, '2017-03-01 11:35:12+00', 'ab579dc3-219b-4f5b-8068-ab1c7a55c402', '{ "id": "0bab56e5-1ab6-4ac2-afdf-8b2df0434378", "action": "checkedin", "dueDate": "2017-02-17T08:43:15.000+00:00", "itemId": "459afaba-5b39-468d-9072-eb1685e0ddf4", "itemStatus": "Available", "loanDate": "2017-02-03T08:43:15Z", "metadata": { "createdDate": "2021-12-06T01:51:20.967+00:00", "updatedDate": "2021-12-06T01:51:20.967+00:00" }, "proxyUserId": "a13dda6b-51ce-4543-be9c-eff894c0c2d0", "renewalCount": 0, "returnDate": "2017-03-01T11:35:12Z", "status": { "name": "Closed" }, "userId": "ab579dc3-219b-4f5b-8068-ab1c7a55c402" }', NULL, NULL, NULL); INSERT INTO circulation_loans VALUES ('21b34ab5-fdb1-4922-88ba-4f32750f61da', 'checkedin', '2017-03-19 18:32:31+00', '23fdb0bc-ab58-442a-b326-577a96204487', 'Available', '2017-03-05 18:32:31+00', NULL, 0, NULL, '9ad09b01-7429-455f-9f64-e3897027db61', '{ "id": "21b34ab5-fdb1-4922-88ba-4f32750f61da", "action": "checkedin", "dueDate": "2017-03-19T18:32:31.000+00:00", "itemId": "23fdb0bc-ab58-442a-b326-577a96204487", "itemStatus": "Available", "loanDate": "2017-03-05T18:32:31Z", "metadata": { "createdDate": "2021-12-06T01:51:20.979+00:00", "updatedDate": "2021-12-06T01:51:20.979+00:00" }, "renewalCount": 0, "status": { "name": "Closed" }, "userId": "9ad09b01-7429-455f-9f64-e3897027db61" }', NULL, NULL, NULL); INSERT INTO circulation_loans VALUES ('3fd2d7aa-a6fe-4794-9d34-837a6bd31a8b', 'holdrequested', '2017-01-19 12:42:21+00', 'bb5a6689-c008-4c96-8f8f-b666850ee12d', 'Checked out', '2017-01-05 12:42:21+00', NULL, NULL, NULL, 'ab579dc3-219b-4f5b-8068-ab1c7a55c402', '{ "id": "3fd2d7aa-a6fe-4794-9d34-837a6bd31a8b", "action": "holdrequested", "dueDate": "2017-01-19T12:42:21.000+00:00", "itemId": "bb5a6689-c008-4c96-8f8f-b666850ee12d", "itemStatus": "Checked out", "loanDate": "2017-01-05T12:42:21Z", "metadata": { "createdDate": "2021-12-06T01:51:20.894+00:00", "updatedDate": "2021-12-06T01:51:20.894+00:00" }, "status": { "name": "Open" }, "userId": "ab579dc3-219b-4f5b-8068-ab1c7a55c402" }', NULL, NULL, NULL); INSERT INTO circulation_loans VALUES ('40f5e9d9-38ac-458e-ade7-7795bd821652', 'checkedout', '2017-03-19 18:32:31+00', '1b6d3338-186e-4e35-9e75-1b886b0da53e', 'Checked out', '2017-03-05 18:32:31+00', NULL, 0, NULL, '47f7eaea-1a18-4058-907c-62b7d095c61b', '{ "id": "40f5e9d9-38ac-458e-ade7-7795bd821652", "action": "checkedout", "dueDate": "2017-03-19T18:32:31.000+00:00", "itemId": "1b6d3338-186e-4e35-9e75-1b886b0da53e", "itemStatus": "Checked out", "loanDate": "2017-03-05T18:32:31Z", "metadata": { "createdDate": "2021-12-06T01:51:20.974+00:00", "updatedDate": "2021-12-06T01:51:20.974+00:00" }, "renewalCount": 0, "status": { "name": "Open" }, "userId": "47f7eaea-1a18-4058-907c-62b7d095c61b" }', NULL, NULL, NULL); INSERT INTO circulation_loans VALUES ('959f65f6-ce51-4984-99fa-5e11c1f5661c', 'recallrequested', '2017-03-17 15:41:54+00', '23f2c8e1-bd5d-4f27-9398-a688c998808a', 'Checked out', '2017-03-03 15:41:54+00', NULL, 1, NULL, 'd0fc4228-2e42-49b2-a5b0-9df48897e8c0', '{ "id": "959f65f6-ce51-4984-99fa-5e11c1f5661c", "action": "recallrequested", "dueDate": "2017-03-17T15:41:54.000+00:00", "itemId": "23f2c8e1-bd5d-4f27-9398-a688c998808a", "itemStatus": "Checked out", "loanDate": "2017-03-03T15:41:54Z", "metadata": { "createdDate": "2021-12-06T01:51:20.961+00:00", "updatedDate": "2021-12-06T01:51:20.961+00:00" }, "renewalCount": 1, "status": { "name": "Open" }, "userId": "d0fc4228-2e42-49b2-a5b0-9df48897e8c0" }', NULL, NULL, NULL); -- -- TOC entry 4189 (class 0 OID 88214762) -- Dependencies: 434 -- Data for Name: circulation_patron_notice_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_patron_notice_policies VALUES ('122b3d2b-4788-4f1e-9117-56daa91cb75c', true, 'A basic notice policy that does not define any notices', 'Send No Notices', '{ "id": "122b3d2b-4788-4f1e-9117-56daa91cb75c", "active": true, "description": "A basic notice policy that does not define any notices", "feeFineNotices": [], "loanNotices": [], "metadata": { "createdDate": "2021-12-06T01:51:20.760+00:00", "updatedDate": "2021-12-06T01:51:20.760+00:00" }, "name": "Send No Notices", "requestNotices": [] }'); -- -- TOC entry 4190 (class 0 OID 88214779) -- Dependencies: 435 -- Data for Name: circulation_request_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_request_policies VALUES ('334e5a9e-94f9-4673-8d1d-ab552863886b', 'Allow all request types', 'Allow All', '{ "id": "334e5a9e-94f9-4673-8d1d-ab552863886b", "description": "Allow all request types", "metadata": { "createdDate": "2021-12-06T01:51:20.697+00:00", "updatedDate": "2021-12-06T01:51:20.697+00:00" }, "name": "Allow All", "requestTypes": [ "Hold", "Page", "Recall" ] }'); INSERT INTO circulation_request_policies VALUES ('4c6e1fb0-2ef1-4666-bd15-f9190ff89060', 'Only allow holds', 'Hold only', '{ "id": "4c6e1fb0-2ef1-4666-bd15-f9190ff89060", "description": "Only allow holds", "metadata": { "createdDate": "2021-12-06T01:51:20.713+00:00", "updatedDate": "2021-12-06T01:51:20.713+00:00" }, "name": "Hold only", "requestTypes": [ "Hold" ] }'); -- -- TOC entry 4191 (class 0 OID 88214796) -- Dependencies: 436 -- Data for Name: circulation_request_preference; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4192 (class 0 OID 88214811) -- Dependencies: 437 -- Data for Name: circulation_requests; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4194 (class 0 OID 88214839) -- Dependencies: 439 -- Data for Name: circulation_staff_slips; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO circulation_staff_slips VALUES ('1ed55c5c-64d9-40eb-8b80-7438a262288b', true, 'Request delivery', '

', '{ "id": "1ed55c5c-64d9-40eb-8b80-7438a262288b", "active": true, "metadata": { "createdDate": "2021-12-06T01:51:20.796+00:00", "updatedDate": "2021-12-06T01:51:20.796+00:00" }, "name": "Request delivery", "template": "

" }'); INSERT INTO circulation_staff_slips VALUES ('6a6e72f0-69da-4b4c-8254-7154679e9d88', true, 'Hold', '

', '{ "id": "6a6e72f0-69da-4b4c-8254-7154679e9d88", "active": true, "metadata": { "createdDate": "2021-12-06T01:51:20.791+00:00", "updatedDate": "2021-12-06T01:51:20.791+00:00" }, "name": "Hold", "template": "

" }'); INSERT INTO circulation_staff_slips VALUES ('8812bae1-2738-442c-bc20-fe4bb38a11f8', true, 'Pick slip', '

', '{ "id": "8812bae1-2738-442c-bc20-fe4bb38a11f8", "active": true, "metadata": { "createdDate": "2021-12-06T01:51:20.773+00:00", "updatedDate": "2021-12-06T01:51:20.773+00:00" }, "name": "Pick slip", "template": "

" }'); INSERT INTO circulation_staff_slips VALUES ('f838cdaf-555a-473f-abf1-f35ef6ab8ae1', true, 'Transit', '

', '{ "id": "f838cdaf-555a-473f-abf1-f35ef6ab8ae1", "active": true, "metadata": { "createdDate": "2021-12-06T01:51:20.800+00:00", "updatedDate": "2021-12-06T01:51:20.800+00:00" }, "name": "Transit", "template": "

" }'); -- -- TOC entry 4195 (class 0 OID 88214863) -- Dependencies: 440 -- Data for Name: configuration_entries; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO configuration_entries VALUES ('024861cd-4614-45de-ab57-de3400eb970c', 'EMAIL_PASSWORD', 'email', true, 'smtp password', true, 'SMTP_SERVER', 'BLmCTxkywpvFmpRw4UeOiKXseMPWw5TJl488ETodvrpg', '{ "id": "024861cd-4614-45de-ab57-de3400eb970c", "code": "EMAIL_PASSWORD", "configName": "email", "default": true, "description": "smtp password", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:34.114+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:34.114+00:00" }, "module": "SMTP_SERVER", "value": "BLmCTxkywpvFmpRw4UeOiKXseMPWw5TJl488ETodvrpg" }'); INSERT INTO configuration_entries VALUES ('065546db-7779-46cf-8a0e-6a659ef658ef', NULL, 'technical', NULL, NULL, true, 'OAIPMH', '{"enableValidation":"false","formattedOutput":"false","srsClientIdleTimeoutSec":"20","maxRecordsPerResponse":"50","srsHttpRequestRetryAttempts":"50"}', '{ "id": "065546db-7779-46cf-8a0e-6a659ef658ef", "configName": "technical", "enabled": true, "metadata": { "createdDate": "2021-12-06T01:53:02.441+00:00", "updatedDate": "2021-12-06T01:53:02.441+00:00" }, "module": "OAIPMH", "value": "{\"enableValidation\":\"false\",\"formattedOutput\":\"false\",\"srsClientIdleTimeoutSec\":\"20\",\"maxRecordsPerResponse\":\"50\",\"srsHttpRequestRetryAttempts\":\"50\"}" }'); INSERT INTO configuration_entries VALUES ('0f5476e5-707a-418a-bd81-a50769787da3', 'EMAIL_SMTP_HOST', 'email', true, 'email smtp host', true, 'SMTP_SERVER', 'email-smtp.us-east-1.amazonaws.com', '{ "id": "0f5476e5-707a-418a-bd81-a50769787da3", "code": "EMAIL_SMTP_HOST", "configName": "email", "default": true, "description": "email smtp host", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:35.853+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:35.853+00:00" }, "module": "SMTP_SERVER", "value": "email-smtp.us-east-1.amazonaws.com" }'); INSERT INTO configuration_entries VALUES ('2ac277e3-2b3b-4c87-9c09-ecd5cc9ad613', NULL, 'localeSettings', NULL, NULL, true, 'ORG', '{"locale":"zh-CN","timezone":"UTC","currency":"USD"}', '{ "id": "2ac277e3-2b3b-4c87-9c09-ecd5cc9ad613", "configName": "localeSettings", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:12:45.637+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:12:45.637+00:00" }, "module": "ORG", "value": "{\"locale\":\"zh-CN\",\"timezone\":\"UTC\",\"currency\":\"USD\"}" }'); INSERT INTO configuration_entries VALUES ('81dc421a-8997-4ec9-b125-26a82a14d778', NULL, 'general', NULL, NULL, true, 'OAIPMH', '{"administratorEmail":"oai-pmh@folio.org","repositoryName":"FOLIO_OAI_Repository","enableOaiService":"true","timeGranularity":"YYYY-MM-DDThh:mm:ssZ","baseUrl":"http://folio.org/oai"}', '{ "id": "81dc421a-8997-4ec9-b125-26a82a14d778", "configName": "general", "enabled": true, "metadata": { "createdDate": "2021-12-06T01:53:02.438+00:00", "updatedDate": "2021-12-06T01:53:02.438+00:00" }, "module": "OAIPMH", "value": "{\"administratorEmail\":\"oai-pmh@folio.org\",\"repositoryName\":\"FOLIO_OAI_Repository\",\"enableOaiService\":\"true\",\"timeGranularity\":\"YYYY-MM-DDThh:mm:ssZ\",\"baseUrl\":\"http://folio.org/oai\"}" }'); INSERT INTO configuration_entries VALUES ('859583f2-a7d4-4e92-b73c-46114d13a3ec', 'EMAIL_SMTP_PORT', 'email', true, 'smtp port', true, 'SMTP_SERVER', '587', '{ "id": "859583f2-a7d4-4e92-b73c-46114d13a3ec", "code": "EMAIL_SMTP_PORT", "configName": "email", "default": true, "description": "smtp port", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:37.364+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:37.364+00:00" }, "module": "SMTP_SERVER", "value": "587" }'); INSERT INTO configuration_entries VALUES ('9802bb58-ee93-406a-b185-b290f73c701d', 'FOLIO_HOST', 'FOLIO host', true, 'FOLIO host address for password reset', true, 'USERSBL', 'https://folio-snapshot.dev.folio.org', '{ "id": "9802bb58-ee93-406a-b185-b290f73c701d", "code": "FOLIO_HOST", "configName": "FOLIO host", "default": true, "description": "FOLIO host address for password reset", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:40.626+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:40.626+00:00" }, "module": "USERSBL", "value": "https://folio-snapshot.dev.folio.org" }'); INSERT INTO configuration_entries VALUES ('a4614efa-5fcf-4f1b-afd2-aef3f8a657cd', 'EMAIL_FROM', 'email', true, 'smtp from', true, 'SMTP_SERVER', 'noreply@folio.org', '{ "id": "a4614efa-5fcf-4f1b-afd2-aef3f8a657cd", "code": "EMAIL_FROM", "configName": "email", "default": true, "description": "smtp from", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:32.508+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:32.508+00:00" }, "module": "SMTP_SERVER", "value": "noreply@folio.org" }'); INSERT INTO configuration_entries VALUES ('a5a977c7-3405-4ed2-a86a-aa314c341bc0', 'EMAIL_USERNAME', 'email', true, 'smtp username', true, 'SMTP_SERVER', 'AKIA2VGNPE73AUEYWBPB', '{ "id": "a5a977c7-3405-4ed2-a86a-aa314c341bc0", "code": "EMAIL_USERNAME", "configName": "email", "default": true, "description": "smtp username", "enabled": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:39.113+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:39.113+00:00" }, "module": "SMTP_SERVER", "value": "AKIA2VGNPE73AUEYWBPB" }'); INSERT INTO configuration_entries VALUES ('c8be6cba-ab96-41b9-8b82-3006a91b3fa5', NULL, 'behavior', NULL, NULL, true, 'OAIPMH', '{"suppressedRecordsProcessing":"false","deletedRecordsSupport":"persistent","errorsProcessing":"200"}', '{ "id": "c8be6cba-ab96-41b9-8b82-3006a91b3fa5", "configName": "behavior", "enabled": true, "metadata": { "createdDate": "2021-12-06T01:53:02.428+00:00", "updatedDate": "2021-12-06T01:53:02.428+00:00" }, "module": "OAIPMH", "value": "{\"suppressedRecordsProcessing\":\"false\",\"deletedRecordsSupport\":\"persistent\",\"errorsProcessing\":\"200\"}" }'); -- -- TOC entry 4196 (class 0 OID 88214884) -- Dependencies: 441 -- Data for Name: course_copyrightstatuses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_copyrightstatuses VALUES ('04521370-886e-41de-afbe-55a8b9fe782a', 'Patron may not copy at all', 'All rights reserved', '{ "id": "04521370-886e-41de-afbe-55a8b9fe782a", "description": "Patron may not copy at all", "metadata": { "createdDate": "2021-12-06T01:52:15.078+00:00", "updatedDate": "2021-12-06T01:52:15.078+00:00" }, "name": "All rights reserved" }'); INSERT INTO course_copyrightstatuses VALUES ('0a598dcc-237f-4d74-8444-9ac5a8f9d4a8', 'Creative Commons attribution license', 'CC By', '{ "id": "0a598dcc-237f-4d74-8444-9ac5a8f9d4a8", "description": "Creative Commons attribution license", "metadata": { "createdDate": "2021-12-06T01:52:15.046+00:00", "updatedDate": "2021-12-06T01:52:15.046+00:00" }, "name": "CC By" }'); INSERT INTO course_copyrightstatuses VALUES ('a18564cf-8b83-44d4-9c58-b793f1d3d754', 'Creative Commons attribution non-commercial license', 'CC By-NC', '{ "id": "a18564cf-8b83-44d4-9c58-b793f1d3d754", "description": "Creative Commons attribution non-commercial license", "metadata": { "createdDate": "2021-12-06T01:52:15.071+00:00", "updatedDate": "2021-12-06T01:52:15.071+00:00" }, "name": "CC By-NC" }'); INSERT INTO course_copyrightstatuses VALUES ('b8beb40f-9fbe-4d54-8cb6-0d16067492ab', 'Creative Commons attribution non-commercial share-alike license', 'CC By-NC-SA', '{ "id": "b8beb40f-9fbe-4d54-8cb6-0d16067492ab", "description": "Creative Commons attribution non-commercial share-alike license", "metadata": { "createdDate": "2021-12-06T01:52:15.056+00:00", "updatedDate": "2021-12-06T01:52:15.056+00:00" }, "name": "CC By-NC-SA" }'); INSERT INTO course_copyrightstatuses VALUES ('fb68f59b-940e-446a-893d-89069d15b803', 'No copyright at all', 'Public domain', '{ "id": "fb68f59b-940e-446a-893d-89069d15b803", "description": "No copyright at all", "metadata": { "createdDate": "2021-12-06T01:52:15.064+00:00", "updatedDate": "2021-12-06T01:52:15.064+00:00" }, "name": "Public domain" }'); -- -- TOC entry 4197 (class 0 OID 88214900) -- Dependencies: 442 -- Data for Name: course_courselistings; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_courselistings VALUES ('1049e672-dcde-4c7c-b95b-edf9f60c6cbd', '0350e271-ddb8-4def-a6a8-a3cf4f01bbfd', 'external2c', '53cf956f-c1df-410b-8bea-27f712cca7c0', 'external1c', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', 'f9712294-2037-44f7-8066-216ae950c26c', '{ "id": "1049e672-dcde-4c7c-b95b-edf9f60c6cbd", "courseTypeId": "0350e271-ddb8-4def-a6a8-a3cf4f01bbfd", "externalId": "external2c", "instructorObjects": [], "locationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "metadata": { "createdDate": "2021-12-06T01:52:15.201+00:00", "updatedDate": "2021-12-06T01:52:15.201+00:00" }, "registrarId": "external1c", "servicepointId": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "termId": "f9712294-2037-44f7-8066-216ae950c26c" }'); INSERT INTO course_courselistings VALUES ('c03bcba3-a6a0-4251-b316-0631bb2e6f21', 'f5063ee8-b18c-402b-b0c9-1b0f93d8570b', 'external2', '53cf956f-c1df-410b-8bea-27f712cca7c0', 'external1', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', 'cd1eb7ed-2704-4b6a-9037-d7f1a5351f6b', '{ "id": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "courseTypeId": "f5063ee8-b18c-402b-b0c9-1b0f93d8570b", "externalId": "external2", "instructorObjects": [ { "id": "f61c6a9e-92b5-470c-8463-6494afd108e6", "courseListingId": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "metadata": { "createdDate": "2021-12-06T01:52:15.290+00:00", "updatedDate": "2021-12-06T01:52:15.290+00:00" }, "name": "Taylor, Mike", "userId": "b7ad6a2b-73d3-41e0-ae10-8fc3db4e57ec" }, { "id": "9cc888e5-f6d7-4709-b113-3040e8fbe648", "courseListingId": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "metadata": { "createdDate": "2021-12-06T01:52:15.345+00:00", "updatedDate": "2021-12-06T01:52:15.345+00:00" }, "name": "Aagard, Madgeline", "userId": "b2aeb3de-a156-4a8b-a25b-72d7febe1674" }, { "id": "2e53ca2f-9bd9-424d-bcef-67f5f268edb0", "courseListingId": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "metadata": { "createdDate": "2021-12-06T01:52:15.364+00:00", "updatedDate": "2021-12-06T01:52:15.364+00:00" }, "name": "Adams, Christa A", "userId": "3579811e-379f-4c09-8b2b-a0a08c94fe30" } ], "locationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "metadata": { "createdDate": "2021-12-06T01:52:15.214+00:00", "updatedDate": "2021-12-06T01:52:15.214+00:00" }, "registrarId": "external1", "servicepointId": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "termId": "cd1eb7ed-2704-4b6a-9037-d7f1a5351f6b" }'); INSERT INTO course_courselistings VALUES ('cef52efb-b3fd-4450-9960-1745026a99d1', '9154048b-3698-42ec-a5ca-cfcebf04e094', 'external2b', '53cf956f-c1df-410b-8bea-27f712cca7c0', 'external1b', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', 'aa59adff-9e2b-473d-89ad-b2b506b475a2', '{ "id": "cef52efb-b3fd-4450-9960-1745026a99d1", "courseTypeId": "9154048b-3698-42ec-a5ca-cfcebf04e094", "externalId": "external2b", "instructorObjects": [], "locationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "metadata": { "createdDate": "2021-12-06T01:52:15.221+00:00", "updatedDate": "2021-12-06T01:52:15.221+00:00" }, "registrarId": "external1b", "servicepointId": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "termId": "aa59adff-9e2b-473d-89ad-b2b506b475a2" }'); -- -- TOC entry 4198 (class 0 OID 88214925) -- Dependencies: 443 -- Data for Name: course_courses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_courses VALUES ('04ea3db8-e42a-4e18-b98d-cc447e3f9a57', 'cef52efb-b3fd-4450-9960-1745026a99d1', '67890', '1fc91124-cd2a-4fae-9ae4-40368d80982d', 'Advanced differentiation and integration', 'Calculus 201', NULL, 'Sole', '{ "id": "04ea3db8-e42a-4e18-b98d-cc447e3f9a57", "courseListingId": "cef52efb-b3fd-4450-9960-1745026a99d1", "courseListingObject": null, "courseNumber": "67890", "departmentId": "1fc91124-cd2a-4fae-9ae4-40368d80982d", "departmentObject": null, "description": "Advanced differentiation and integration", "metadata": { "createdDate": "2021-12-06T01:52:15.248+00:00", "updatedDate": "2021-12-06T01:52:15.248+00:00" }, "name": "Calculus 201", "sectionName": "Sole" }'); INSERT INTO course_courses VALUES ('3df7f087-281b-46c9-b6c3-8aeaaf44af97', '1049e672-dcde-4c7c-b95b-edf9f60c6cbd', '24601', '1fc91124-cd2a-4fae-9ae4-40368d80982d', 'Life in prehistoric times', 'Intro to Palaeobiology', 24, '1', '{ "id": "3df7f087-281b-46c9-b6c3-8aeaaf44af97", "courseListingId": "1049e672-dcde-4c7c-b95b-edf9f60c6cbd", "courseListingObject": null, "courseNumber": "24601", "departmentId": "1fc91124-cd2a-4fae-9ae4-40368d80982d", "departmentObject": null, "description": "Life in prehistoric times", "metadata": { "createdDate": "2021-12-06T01:52:15.270+00:00", "updatedDate": "2021-12-06T01:52:15.270+00:00" }, "name": "Intro to Palaeobiology", "numberOfStudents": 24, "sectionName": "1" }'); INSERT INTO course_courses VALUES ('72435b5c-0495-4043-9b3a-5763b2f59eb9', '1049e672-dcde-4c7c-b95b-edf9f60c6cbd', '13579', '1fc91124-cd2a-4fae-9ae4-40368d80982d', 'Wizard-level differentiation and integration', 'Calculus 301', 42, 'Sole', '{ "id": "72435b5c-0495-4043-9b3a-5763b2f59eb9", "courseListingId": "1049e672-dcde-4c7c-b95b-edf9f60c6cbd", "courseListingObject": null, "courseNumber": "13579", "departmentId": "1fc91124-cd2a-4fae-9ae4-40368d80982d", "departmentObject": null, "description": "Wizard-level differentiation and integration", "metadata": { "createdDate": "2021-12-06T01:52:15.275+00:00", "updatedDate": "2021-12-06T01:52:15.275+00:00" }, "name": "Calculus 301", "numberOfStudents": 42, "sectionName": "Sole" }'); INSERT INTO course_courses VALUES ('83034b0a-bf71-4495-b642-2e998f721e5d', 'c03bcba3-a6a0-4251-b316-0631bb2e6f21', '12345', '1fc91124-cd2a-4fae-9ae4-40368d80982d', 'Basic differentiation and integration', 'Calculus 101', NULL, 'Main', '{ "id": "83034b0a-bf71-4495-b642-2e998f721e5d", "courseListingId": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "courseListingObject": null, "courseNumber": "12345", "departmentId": "1fc91124-cd2a-4fae-9ae4-40368d80982d", "departmentObject": null, "description": "Basic differentiation and integration", "metadata": { "createdDate": "2021-12-06T01:52:15.263+00:00", "updatedDate": "2021-12-06T01:52:15.263+00:00" }, "name": "Calculus 101", "sectionName": "Main" }'); INSERT INTO course_courses VALUES ('aabf7f46-9a38-4c72-b3b1-45a55077436a', '1049e672-dcde-4c7c-b95b-edf9f60c6cbd', '24680', '1566841c-51ce-4d4c-aa09-0ea21b00904a', 'Study of ancient life', 'Intro to Palaeontology', NULL, 'Sole', '{ "id": "aabf7f46-9a38-4c72-b3b1-45a55077436a", "courseListingId": "1049e672-dcde-4c7c-b95b-edf9f60c6cbd", "courseListingObject": null, "courseNumber": "24680", "departmentId": "1566841c-51ce-4d4c-aa09-0ea21b00904a", "departmentObject": null, "description": "Study of ancient life", "metadata": { "createdDate": "2021-12-06T01:52:15.258+00:00", "updatedDate": "2021-12-06T01:52:15.258+00:00" }, "name": "Intro to Palaeontology", "sectionName": "Sole" }'); -- -- TOC entry 4199 (class 0 OID 88214946) -- Dependencies: 444 -- Data for Name: course_coursetypes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_coursetypes VALUES ('0350e271-ddb8-4def-a6a8-a3cf4f01bbfd', 'Both online and in-person components', 'Online/In person', '{ "id": "0350e271-ddb8-4def-a6a8-a3cf4f01bbfd", "description": "Both online and in-person components", "metadata": { "createdDate": "2021-12-06T01:52:15.153+00:00", "updatedDate": "2021-12-06T01:52:15.153+00:00" }, "name": "Online/In person" }'); INSERT INTO course_coursetypes VALUES ('9154048b-3698-42ec-a5ca-cfcebf04e094', 'No online component', 'In person', '{ "id": "9154048b-3698-42ec-a5ca-cfcebf04e094", "description": "No online component", "metadata": { "createdDate": "2021-12-06T01:52:15.139+00:00", "updatedDate": "2021-12-06T01:52:15.139+00:00" }, "name": "In person" }'); INSERT INTO course_coursetypes VALUES ('f5063ee8-b18c-402b-b0c9-1b0f93d8570b', 'No in-person component', 'Online', '{ "id": "f5063ee8-b18c-402b-b0c9-1b0f93d8570b", "description": "No in-person component", "metadata": { "createdDate": "2021-12-06T01:52:15.146+00:00", "updatedDate": "2021-12-06T01:52:15.146+00:00" }, "name": "Online" }'); -- -- TOC entry 4200 (class 0 OID 88214962) -- Dependencies: 445 -- Data for Name: course_departments; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_departments VALUES ('1566841c-51ce-4d4c-aa09-0ea21b00904a', 'Including geology, petrology and palaeontology', 'Earth Sciences', '{ "id": "1566841c-51ce-4d4c-aa09-0ea21b00904a", "description": "Including geology, petrology and palaeontology", "metadata": { "createdDate": "2021-12-06T01:52:15.092+00:00", "updatedDate": "2021-12-06T01:52:15.092+00:00" }, "name": "Earth Sciences" }'); INSERT INTO course_departments VALUES ('1fc91124-cd2a-4fae-9ae4-40368d80982d', 'Including both pure and applied maths', 'Mathematics', '{ "id": "1fc91124-cd2a-4fae-9ae4-40368d80982d", "description": "Including both pure and applied maths", "metadata": { "createdDate": "2021-12-06T01:52:15.099+00:00", "updatedDate": "2021-12-06T01:52:15.099+00:00" }, "name": "Mathematics" }'); -- -- TOC entry 4201 (class 0 OID 88214978) -- Dependencies: 446 -- Data for Name: course_processingstatuses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_processingstatuses VALUES ('1585a99d-0b46-48b3-9a32-4050f1039a61', 'Received but not yet catalogued', 'In cataloging', '{ "id": "1585a99d-0b46-48b3-9a32-4050f1039a61", "description": "Received but not yet catalogued", "metadata": { "createdDate": "2021-12-06T01:52:15.114+00:00", "updatedDate": "2021-12-06T01:52:15.114+00:00" }, "name": "In cataloging" }'); INSERT INTO course_processingstatuses VALUES ('8bf28ac6-accd-4575-8ffa-365850be1851', 'Recalled and unavailable', 'Recalled', '{ "id": "8bf28ac6-accd-4575-8ffa-365850be1851", "description": "Recalled and unavailable", "metadata": { "createdDate": "2021-12-06T01:52:15.128+00:00", "updatedDate": "2021-12-06T01:52:15.128+00:00" }, "name": "Recalled" }'); INSERT INTO course_processingstatuses VALUES ('a8d247c8-e8af-4a16-8b17-09647863e334', 'Ordered, but not yet available', 'On order', '{ "id": "a8d247c8-e8af-4a16-8b17-09647863e334", "description": "Ordered, but not yet available", "metadata": { "createdDate": "2021-12-06T01:52:15.123+00:00", "updatedDate": "2021-12-06T01:52:15.123+00:00" }, "name": "On order" }'); -- -- TOC entry 4202 (class 0 OID 88214994) -- Dependencies: 447 -- Data for Name: course_reserves; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_reserves VALUES ('58e857de-0d18-46d0-b607-781e180ce95c', '1049e672-dcde-4c7c-b95b-edf9f60c6cbd', 'd6f7c1ba-a237-465e-94ed-f37e91bc64bd', 'e8b311a6-3b21-43f2-a269-dd9310cb2d0e', '{ "id": "58e857de-0d18-46d0-b607-781e180ce95c", "copiedItem": { "barcode": "4539876054383", "callNumber": "PR6056.I4588 B749 2016", "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Fielding, Helen" } ], "copy": "Copy 3", "holdingsId": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "instanceDiscoverySuppress": true, "instanceHrid": "inst000000000006", "instanceId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "permanentLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "publication": [ { "dateOfPublication": "2016", "place": "New York", "publisher": "Alfred A. Knopf" } ], "temporaryLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "title": "Bridget Jones''s Baby: the diaries" }, "courseListingId": "1049e672-dcde-4c7c-b95b-edf9f60c6cbd", "itemId": "d6f7c1ba-a237-465e-94ed-f37e91bc64bd", "metadata": { "createdDate": "2021-12-06T01:52:15.429+00:00", "updatedDate": "2021-12-06T01:52:15.429+00:00" }, "temporaryLoanTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0e" }'); INSERT INTO course_reserves VALUES ('67227d94-7333-4d22-98a0-718b49d36595', 'c03bcba3-a6a0-4251-b316-0631bb2e6f21', '100d10bf-2f06-4aa0-be15-0b95b2d9f9e3', NULL, '{ "id": "67227d94-7333-4d22-98a0-718b49d36595", "copiedItem": { "barcode": "90000", "callNumber": "TK5105.88815 . A58 2004 FT MEADE", "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Antoniou, Grigoris" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Van Harmelen, Frank" } ], "enumeration": "", "holdingsId": "e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19", "instanceDiscoverySuppress": false, "instanceHrid": "inst000000000022", "instanceId": "5bf370e0-8cca-4d9c-82e4-5170ab2a0a39", "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "publication": [ { "dateOfPublication": "c2004", "place": "Cambridge, Mass. ", "publisher": "MIT Press", "role": "Publisher" } ], "temporaryLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "title": "A semantic web primer", "uri": "http://www.loc.gov/catdir/toc/ecip0718/2007020429.html", "url": "Table of contents only" }, "courseListingId": "c03bcba3-a6a0-4251-b316-0631bb2e6f21", "itemId": "100d10bf-2f06-4aa0-be15-0b95b2d9f9e3", "metadata": { "createdDate": "2021-12-06T01:52:15.774+00:00", "updatedDate": "2021-12-06T01:52:15.774+00:00" } }'); -- -- TOC entry 4204 (class 0 OID 88215025) -- Dependencies: 449 -- Data for Name: course_terms; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO course_terms VALUES ('aa59adff-9e2b-473d-89ad-b2b506b475a2', '2020-03-14', 'Hilary 2020', '2020-01-19', '{ "id": "aa59adff-9e2b-473d-89ad-b2b506b475a2", "endDate": "2020-03-14", "metadata": { "createdDate": "2021-12-06T01:52:15.008+00:00", "updatedDate": "2021-12-06T01:52:15.008+00:00" }, "name": "Hilary 2020", "startDate": "2020-01-19" }'); INSERT INTO course_terms VALUES ('cd1eb7ed-2704-4b6a-9037-d7f1a5351f6b', '2019-12-07', 'Michaelmas 2019', '2019-10-13', '{ "id": "cd1eb7ed-2704-4b6a-9037-d7f1a5351f6b", "endDate": "2019-12-07", "metadata": { "createdDate": "2021-12-06T01:52:15.017+00:00", "updatedDate": "2021-12-06T01:52:15.017+00:00" }, "name": "Michaelmas 2019", "startDate": "2019-10-13" }'); INSERT INTO course_terms VALUES ('f9712294-2037-44f7-8066-216ae950c26c', '2020-06-20', 'Trinity 2020', '2020-04-26', '{ "id": "f9712294-2037-44f7-8066-216ae950c26c", "endDate": "2020-06-20", "metadata": { "createdDate": "2021-12-06T01:52:14.955+00:00", "updatedDate": "2021-12-06T01:52:14.955+00:00" }, "name": "Trinity 2020", "startDate": "2020-04-26" }'); -- -- TOC entry 4205 (class 0 OID 88215052) -- Dependencies: 450 -- Data for Name: email_email; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4176 (class 0 OID 88214501) -- Dependencies: 421 -- Data for Name: feesfines_accounts; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4206 (class 0 OID 88215067) -- Dependencies: 451 -- Data for Name: feesfines_comments; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4181 (class 0 OID 88214627) -- Dependencies: 426 -- Data for Name: feesfines_feefineactions; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4207 (class 0 OID 88215082) -- Dependencies: 452 -- Data for Name: feesfines_feefines; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO feesfines_feefines VALUES ('73785370-d3bd-4d92-942d-ae2268e02ded', true, 'Lost item fee (actual cost)', '{ "id": "73785370-d3bd-4d92-942d-ae2268e02ded", "automatic": true, "feeFineType": "Lost item fee (actual cost)" }'); INSERT INTO feesfines_feefines VALUES ('9523cb96-e752-40c2-89da-60f3961a488d', true, 'Overdue fine', '{ "id": "9523cb96-e752-40c2-89da-60f3961a488d", "automatic": true, "feeFineType": "Overdue fine" }'); INSERT INTO feesfines_feefines VALUES ('c7dede15-aa48-45ed-860b-f996540180e0', true, 'Lost item processing fee', '{ "id": "c7dede15-aa48-45ed-860b-f996540180e0", "automatic": true, "feeFineType": "Lost item processing fee" }'); INSERT INTO feesfines_feefines VALUES ('cf238f9f-7018-47b7-b815-bb2db798e19f', true, 'Lost item fee', '{ "id": "cf238f9f-7018-47b7-b815-bb2db798e19f", "automatic": true, "feeFineType": "Lost item fee" }'); INSERT INTO feesfines_feefines VALUES ('d20df2fb-45fd-4184-b238-0d25747ffdd9', true, 'Replacement processing fee', '{ "id": "d20df2fb-45fd-4184-b238-0d25747ffdd9", "automatic": true, "feeFineType": "Replacement processing fee" }'); -- -- TOC entry 4208 (class 0 OID 88215099) -- Dependencies: 453 -- Data for Name: feesfines_lost_item_fees_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO feesfines_lost_item_fees_policies VALUES ('ed892c0e-52e0-4cd9-8133-c0ef07b4a709', true, true, 'Test lost item fee policy', 0.00, 'Charge', 'Lost item fee policy', true, true, 0.00, true, '{ "id": "ed892c0e-52e0-4cd9-8133-c0ef07b4a709", "chargeAmountItem": { "amount": 0.0, "chargeType": "actualCost" }, "chargeAmountItemPatron": true, "chargeAmountItemSystem": true, "description": "Test lost item fee policy", "lostItemChargeFeeFine": { "duration": 2, "intervalId": "Days" }, "lostItemProcessingFee": 0.0, "lostItemReturned": "Charge", "metadata": { "createdDate": "2021-12-06T01:51:46.861+00:00", "updatedDate": "2021-12-06T01:51:46.861+00:00" }, "name": "Lost item fee policy", "replacedLostItemProcessingFee": true, "replacementAllowed": true, "replacementProcessingFee": 0.0, "returnedLostItemProcessingFee": true }'); -- -- TOC entry 4210 (class 0 OID 88215139) -- Dependencies: 455 -- Data for Name: feesfines_overdue_fines_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO feesfines_overdue_fines_policies VALUES ('cd3f6cac-fa17-4079-9fae-2fb28e521412', true, 'Test overdue fine policy', true, true, 0.00, 0.00, 'Overdue fine policy', '{ "id": "cd3f6cac-fa17-4079-9fae-2fb28e521412", "countClosed": true, "description": "Test overdue fine policy", "forgiveOverdueFine": true, "gracePeriodRecall": true, "maxOverdueFine": 0.0, "maxOverdueRecallFine": 0.0, "metadata": { "createdDate": "2021-12-06T01:51:46.918+00:00", "updatedDate": "2021-12-06T01:51:46.918+00:00" }, "name": "Overdue fine policy" }'); -- -- TOC entry 4211 (class 0 OID 88215161) -- Dependencies: 456 -- Data for Name: feesfines_owners; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4217 (class 0 OID 88215249) -- Dependencies: 462 -- Data for Name: finance_budgets; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_budgets VALUES ('012e7da4-003c-48ff-9feb-f3745044da35', 0.00, 0.00, 0.00, 110.00, 100.00, 2500.00, 0.00, 'Active', 2500.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '69640328-788e-43fc-9c3c-af39e243f3b7', 0.00, 'ANZHIST-FY2021', 2500.00, 0.00, 0.00, 2500.00, 0.00, '{ "id": "012e7da4-003c-48ff-9feb-f3745044da35", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 2500.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 2500.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "69640328-788e-43fc-9c3c-af39e243f3b7", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.375+00:00", "updatedDate": "2021-12-06T01:50:46.790+00:00" }, "name": "ANZHIST-FY2021", "netTransfers": 2500.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 2500.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('0916fde2-7a7d-4ff0-9069-37ee1ec0c068', 0.00, 0.00, 0.00, 100.00, 100.00, 0.00, 0.00, 'Active', 0.00, 0.00, 0.00, '8da275b8-e099-49a1-9a31-b8241ff26ffc', 'bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0', 0.00, 'STATE-MONOSER-FY2019', 0.00, 0.00, 0.00, 0.00, 0.00, '{ "id": "0916fde2-7a7d-4ff0-9069-37ee1ec0c068", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 0.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 0.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "8da275b8-e099-49a1-9a31-b8241ff26ffc", "fundId": "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.419+00:00", "updatedDate": "2021-12-06T01:50:46.419+00:00" }, "name": "STATE-MONOSER-FY2019", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 0.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('0bfc8ba0-b61f-4852-bc5b-1f63ec039550', 0.00, 0.00, 0.00, 100.00, 100.00, 0.00, 0.00, 'Active', 0.00, 0.00, 0.00, '78110b4e-2f8e-4eef-81ee-3058c0c7a9ee', '1b6d3338-186e-4e35-9e75-1b886b0da53e', 0.00, 'GRANT-SUBN-FY2020', 0.00, 0.00, 0.00, 0.00, 0.00, '{ "id": "0bfc8ba0-b61f-4852-bc5b-1f63ec039550", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 0.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 0.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "78110b4e-2f8e-4eef-81ee-3058c0c7a9ee", "fundId": "1b6d3338-186e-4e35-9e75-1b886b0da53e", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.408+00:00", "updatedDate": "2021-12-06T01:50:46.408+00:00" }, "name": "GRANT-SUBN-FY2020", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 0.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('34fe0c8b-2b99-4fe2-81a5-4ed6872a32e6', 25000.00, 0.00, 0.00, 110.00, 100.00, 25000.00, 0.00, 'Active', 25000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e9285a1c-1dfc-4380-868c-e74073003f43', 25000.00, 'EUROHIST-FY2021', 0.00, 0.00, 0.00, 25000.00, 0.00, '{ "id": "34fe0c8b-2b99-4fe2-81a5-4ed6872a32e6", "acqUnitIds": [], "allocated": 25000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 25000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 25000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "e9285a1c-1dfc-4380-868c-e74073003f43", "initialAllocation": 25000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.433+00:00", "updatedDate": "2021-12-06T01:50:46.712+00:00" }, "name": "EUROHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 25000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('383c59f9-d420-4f37-87ad-c0f7ee0e0283', 4000.00, 0.00, 0.00, 110.00, 100.00, 4000.00, 0.00, 'Active', 4000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '68872d8a-bf16-420b-829f-206da38f6c10', 4000.00, 'CANHIST-FY2021', 0.00, 0.00, 0.00, 4000.00, 0.00, '{ "id": "383c59f9-d420-4f37-87ad-c0f7ee0e0283", "acqUnitIds": [], "allocated": 4000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 4000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 4000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "68872d8a-bf16-420b-829f-206da38f6c10", "initialAllocation": 4000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.426+00:00", "updatedDate": "2021-12-06T01:50:46.755+00:00" }, "name": "CANHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 4000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('400afc07-4aa6-4dbb-8f2c-40cf8e69b0e6', 25000.00, 0.00, 0.00, 100.00, 100.00, 25000.00, 0.00, 'Active', 25000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e9f9bc2f-bad5-4613-9d6c-f55efa5805e7', 25000.00, 'GIFT-SUBN-FY2021', 0.00, 0.00, 0.00, 25000.00, 0.00, '{ "id": "400afc07-4aa6-4dbb-8f2c-40cf8e69b0e6", "acqUnitIds": [], "allocated": 25000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 25000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 25000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "e9f9bc2f-bad5-4613-9d6c-f55efa5805e7", "initialAllocation": 25000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.383+00:00", "updatedDate": "2021-12-06T01:50:46.732+00:00" }, "name": "GIFT-SUBN-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 25000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('4207567e-73c9-45c8-8850-8458389ae0ed', 35000.00, 0.00, 0.00, 110.00, 100.00, 35000.00, 0.00, 'Active', 35000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'a89eccf0-57a6-495e-898d-32b9b2210f2f', 35000.00, 'MISCHIST-FY2021', 0.00, 0.00, 0.00, 35000.00, 0.00, '{ "id": "4207567e-73c9-45c8-8850-8458389ae0ed", "acqUnitIds": [], "allocated": 35000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 35000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 35000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "initialAllocation": 35000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.320+00:00", "updatedDate": "2021-12-06T01:50:46.764+00:00" }, "name": "MISCHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 35000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('47144c36-7180-4840-aff4-bc9788c78d89', 201000.00, 0.00, 0.00, 100.00, 100.00, 201000.00, 0.00, 'Active', 201000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '1714f71f-b845-444b-a79e-a577487a6f7d', 201000.00, 'ENDOW-SUBN-FY2021', 0.00, 0.00, 0.00, 201000.00, 0.00, '{ "id": "47144c36-7180-4840-aff4-bc9788c78d89", "acqUnitIds": [], "allocated": 201000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 201000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 201000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "1714f71f-b845-444b-a79e-a577487a6f7d", "initialAllocation": 201000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.468+00:00", "updatedDate": "2021-12-06T01:50:46.772+00:00" }, "name": "ENDOW-SUBN-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 201000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('4eadbf22-e6dc-4ea4-9453-c6e9de2cb5a8', 24000.00, 0.00, 0.00, 110.00, 100.00, 24000.00, 0.00, 'Active', 24000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '30fcc8e7-a019-43f4-b642-2edc389f4501', 24000.00, 'MIDEASTHIS-FY2021', 0.00, 0.00, 0.00, 24000.00, 0.00, '{ "id": "4eadbf22-e6dc-4ea4-9453-c6e9de2cb5a8", "acqUnitIds": [], "allocated": 24000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 24000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 24000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "30fcc8e7-a019-43f4-b642-2edc389f4501", "initialAllocation": 24000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.367+00:00", "updatedDate": "2021-12-06T01:50:46.691+00:00" }, "name": "MIDEASTHIS-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 24000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('5255e36f-4444-49d5-baa3-38f7f687f69d', 30000.00, 0.00, 0.00, 110.00, 100.00, 30000.00, 0.00, 'Active', 30000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '65032151-39a5-4cef-8810-5350eb316300', 30000.00, 'USHIST-FY2021', 0.00, 0.00, 0.00, 30000.00, 0.00, '{ "id": "5255e36f-4444-49d5-baa3-38f7f687f69d", "acqUnitIds": [], "allocated": 30000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 30000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 30000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "65032151-39a5-4cef-8810-5350eb316300", "initialAllocation": 30000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.391+00:00", "updatedDate": "2021-12-06T01:50:46.747+00:00" }, "name": "USHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 30000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('53c28e77-4623-4af7-ad3d-60a9ba470c45', 12000.00, 0.00, 0.00, 110.00, 100.00, 12000.00, 0.00, 'Active', 12000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 12000.00, 'LATAMHIST-FY2021', 0.00, 0.00, 0.00, 12000.00, 0.00, '{ "id": "53c28e77-4623-4af7-ad3d-60a9ba470c45", "acqUnitIds": [], "allocated": 12000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 12000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 12000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "initialAllocation": 12000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.455+00:00", "updatedDate": "2021-12-06T01:50:46.666+00:00" }, "name": "LATAMHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 12000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('64a71a11-9143-4ebe-ac3a-b0ced57636ba', 0.00, 0.00, 0.00, 100.00, 100.00, 0.00, 0.00, 'Active', 0.00, 0.00, 0.00, '8da275b8-e099-49a1-9a31-b8241ff26ffc', 'e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6', 0.00, 'STATE-SUBN-FY2019', 0.00, 0.00, 0.00, 0.00, 0.00, '{ "id": "64a71a11-9143-4ebe-ac3a-b0ced57636ba", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 0.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 0.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "8da275b8-e099-49a1-9a31-b8241ff26ffc", "fundId": "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.447+00:00", "updatedDate": "2021-12-06T01:50:46.447+00:00" }, "name": "STATE-SUBN-FY2019", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 0.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('735fdf73-592b-4967-85ef-e8b82d09382c', 400000.00, 0.00, 0.00, 100.00, 100.00, 400000.00, 0.00, 'Active', 400000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '4428a37c-8bae-4f0d-865d-970d83d5ad55', 400000.00, 'UNIV-SUBN-FY2021', 0.00, 0.00, 0.00, 400000.00, 0.00, '{ "id": "735fdf73-592b-4967-85ef-e8b82d09382c", "acqUnitIds": [], "allocated": 400000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 400000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 400000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "4428a37c-8bae-4f0d-865d-970d83d5ad55", "initialAllocation": 400000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.352+00:00", "updatedDate": "2021-12-06T01:50:46.779+00:00" }, "name": "UNIV-SUBN-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 400000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('a7c63802-4c1a-4646-9392-024e08df9c02', 0.00, 0.00, 0.00, 110.00, 100.00, 0.00, 0.00, 'Active', 0.00, 0.00, 0.00, '8da275b8-e099-49a1-9a31-b8241ff26ffc', 'f31a36de-fcf8-44f9-87ef-a55d06ad21ae', 0.00, 'SLAVHIST-FY2019', 0.00, 0.00, 0.00, 0.00, 0.00, '{ "id": "a7c63802-4c1a-4646-9392-024e08df9c02", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 0.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 0.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "8da275b8-e099-49a1-9a31-b8241ff26ffc", "fundId": "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.474+00:00", "updatedDate": "2021-12-06T01:50:46.474+00:00" }, "name": "SLAVHIST-FY2019", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 0.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('bd444215-1ce4-4101-9f10-1534fa137495', 12230.80, 0.00, 0.00, 100.00, 100.00, 12230.80, 0.00, 'Closed', 12230.80, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '67cd0046-e4f1-4e4f-9024-adf0b0039d09', 12230.80, 'CANLATHIST-FY2021', 0.00, 0.00, 0.00, 12230.80, 0.00, '{ "id": "bd444215-1ce4-4101-9f10-1534fa137495", "acqUnitIds": [], "allocated": 12230.8, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 12230.8, "awaitingPayment": 0.0, "budgetStatus": "Closed", "cashBalance": 12230.8, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "initialAllocation": 12230.8, "metadata": { "createdDate": "2021-12-06T01:50:46.462+00:00", "updatedDate": "2021-12-06T01:50:46.609+00:00" }, "name": "CANLATHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 12230.8, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('cdb8a544-8a7e-403a-a942-3ae3c9b41267', 28000.00, 0.00, 0.00, 110.00, 100.00, 28000.00, 0.00, 'Active', 28000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '6506b79b-7702-48b2-9774-a1c538fdd34e', 28000.00, 'GIFTS-ONE-TIME-FY2021', 0.00, 0.00, 0.00, 28000.00, 0.00, '{ "id": "cdb8a544-8a7e-403a-a942-3ae3c9b41267", "acqUnitIds": [], "allocated": 28000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 28000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 28000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "6506b79b-7702-48b2-9774-a1c538fdd34e", "initialAllocation": 28000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.481+00:00", "updatedDate": "2021-12-06T01:50:46.740+00:00" }, "name": "GIFTS-ONE-TIME-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 28000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('d5e1df1e-3c55-42b9-bd22-82ff3157e29f', 0.00, 0.00, 0.00, 100.00, 100.00, 0.00, 0.00, 'Frozen', 0.00, 0.00, 0.00, '78110b4e-2f8e-4eef-81ee-3058c0c7a9ee', 'cf23adf0-61ba-4887-bf82-956c4aae2260', 0.00, 'ONE-TIME-SWEEP-FY2020', 0.00, 0.00, 0.00, 0.00, 0.00, '{ "id": "d5e1df1e-3c55-42b9-bd22-82ff3157e29f", "acqUnitIds": [], "allocated": 0.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 0.0, "awaitingPayment": 0.0, "budgetStatus": "Frozen", "cashBalance": 0.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "78110b4e-2f8e-4eef-81ee-3058c0c7a9ee", "fundId": "cf23adf0-61ba-4887-bf82-956c4aae2260", "initialAllocation": 0.0, "metadata": { "createdDate": "2021-12-06T01:50:46.344+00:00", "updatedDate": "2021-12-06T01:50:46.344+00:00" }, "name": "ONE-TIME-SWEEP-FY2020", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 0.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('d71635df-c08c-49cc-9082-197a30fd0392', 21000.00, 0.00, 0.00, 110.00, 100.00, 18500.00, 0.00, 'Active', 18500.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 21000.00, 'AFRICAHIST-FY2021', -2500.00, 0.00, 0.00, 18500.00, 0.00, '{ "id": "d71635df-c08c-49cc-9082-197a30fd0392", "acqUnitIds": [], "allocated": 21000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 18500.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 18500.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "initialAllocation": 21000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.330+00:00", "updatedDate": "2021-12-06T01:50:46.723+00:00" }, "name": "AFRICAHIST-FY2021", "netTransfers": -2500.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 18500.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('de6761f6-1f64-4b5d-a5bc-98862c498c21', 23000.00, 0.00, 0.00, 110.00, 100.00, 23000.00, 0.00, 'Active', 23000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '55f48dc6-efa7-4cfe-bc7c-4786efe493e3', 23000.00, 'ASIAHIST-FY2021', 0.00, 0.00, 0.00, 23000.00, 0.00, '{ "id": "de6761f6-1f64-4b5d-a5bc-98862c498c21", "acqUnitIds": [], "allocated": 23000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 23000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 23000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "initialAllocation": 23000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.440+00:00", "updatedDate": "2021-12-06T01:50:46.683+00:00" }, "name": "ASIAHIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 23000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('eb3c3a49-0c6d-423d-bf60-ac6ad2f96221', 50000.00, 0.00, 0.00, 100.00, 100.00, 50000.00, 0.00, 'Active', 50000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'd6f7c1ba-a237-465e-94ed-f37e91bc64bd', 50000.00, 'EXCH-SUBN-FY2021', 0.00, 0.00, 0.00, 50000.00, 0.00, '{ "id": "eb3c3a49-0c6d-423d-bf60-ac6ad2f96221", "acqUnitIds": [], "allocated": 50000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 100.0, "allowableExpenditure": 100.0, "available": 50000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 50000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "d6f7c1ba-a237-465e-94ed-f37e91bc64bd", "initialAllocation": 50000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.399+00:00", "updatedDate": "2021-12-06T01:50:46.675+00:00" }, "name": "EXCH-SUBN-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 50000.0, "unavailable": 0.0 }'); INSERT INTO finance_budgets VALUES ('f6aea7f1-e614-4010-a2f7-913bb63d1561', 200000.00, 0.00, 0.00, 110.00, 100.00, 200000.00, 0.00, 'Active', 200000.00, 0.00, 0.00, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'fb7b70f1-b898-4924-a991-0e4b6312bb5f', 200000.00, 'HIST-FY2021', 0.00, 0.00, 0.00, 200000.00, 0.00, '{ "id": "f6aea7f1-e614-4010-a2f7-913bb63d1561", "acqUnitIds": [], "allocated": 200000.0, "allocationFrom": 0.0, "allocationTo": 0.0, "allowableEncumbrance": 110.0, "allowableExpenditure": 100.0, "available": 200000.0, "awaitingPayment": 0.0, "budgetStatus": "Active", "cashBalance": 200000.0, "encumbered": 0.0, "expenditures": 0.0, "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "initialAllocation": 200000.0, "metadata": { "createdDate": "2021-12-06T01:50:46.337+00:00", "updatedDate": "2021-12-06T01:50:46.702+00:00" }, "name": "HIST-FY2021", "netTransfers": 0.0, "overEncumbrance": 0.0, "overExpended": 0.0, "totalFunding": 200000.0, "unavailable": 0.0 }'); -- -- TOC entry 4218 (class 0 OID 88215283) -- Dependencies: 463 -- Data for Name: finance_expense_classes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_expense_classes VALUES ('1bcc3247-99bf-4dca-9b0f-7bc51a2998c2', 'Elec', '01', 'Electronic', '{ "id": "1bcc3247-99bf-4dca-9b0f-7bc51a2998c2", "code": "Elec", "externalAccountNumberExt": "01", "metadata": { "createdDate": "2021-12-06T01:50:45.678+00:00", "updatedDate": "2021-12-06T01:50:45.678+00:00" }, "name": "Electronic" }'); INSERT INTO finance_expense_classes VALUES ('5b5ebe3a-cf8b-4f16-a880-46873ef21388', 'Prn', '02', 'Print', '{ "id": "5b5ebe3a-cf8b-4f16-a880-46873ef21388", "code": "Prn", "externalAccountNumberExt": "02", "metadata": { "createdDate": "2021-12-06T01:50:45.653+00:00", "updatedDate": "2021-12-06T01:50:45.653+00:00" }, "name": "Print" }'); -- -- TOC entry 4219 (class 0 OID 88215300) -- Dependencies: 464 -- Data for Name: finance_fiscal_years; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_fiscal_years VALUES ('684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'FY2021', 'USD', 'Fiscal year for 2021', 'Fiscal Year 2021', '2021-12-31 23:59:59+00', '2021-01-01 00:00:00+00', 'FY', '{ "id": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "acqUnitIds": [], "code": "FY2021", "currency": "USD", "description": "Fiscal year for 2021", "metadata": { "createdDate": "2021-12-06T01:50:46.021+00:00", "updatedDate": "2021-12-06T01:50:46.021+00:00" }, "name": "Fiscal Year 2021", "periodEnd": "2021-12-31T23:59:59.000+00:00", "periodStart": "2021-01-01T00:00:00.000+00:00", "series": "FY" }'); INSERT INTO finance_fiscal_years VALUES ('78110b4e-2f8e-4eef-81ee-3058c0c7a9ee', 'FY2020', 'USD', 'Fiscal year for 2020', 'Fiscal Year 2020', '2020-12-31 23:59:59+00', '2020-01-01 00:00:00+00', 'FY', '{ "id": "78110b4e-2f8e-4eef-81ee-3058c0c7a9ee", "acqUnitIds": [], "code": "FY2020", "currency": "USD", "description": "Fiscal year for 2020", "metadata": { "createdDate": "2021-12-06T01:50:46.037+00:00", "updatedDate": "2021-12-06T01:50:46.037+00:00" }, "name": "Fiscal Year 2020", "periodEnd": "2020-12-31T23:59:59.000+00:00", "periodStart": "2020-01-01T00:00:00.000+00:00", "series": "FY" }'); INSERT INTO finance_fiscal_years VALUES ('8da275b8-e099-49a1-9a31-b8241ff26ffc', 'FY2019', 'USD', 'Fiscal year 2019', 'FY19', '2019-12-31 23:59:59+00', '2019-01-01 00:00:00+00', 'FY', '{ "id": "8da275b8-e099-49a1-9a31-b8241ff26ffc", "acqUnitIds": [], "code": "FY2019", "currency": "USD", "description": "Fiscal year 2019", "metadata": { "createdDate": "2021-12-06T01:50:46.010+00:00", "updatedDate": "2021-12-06T01:50:46.010+00:00" }, "name": "FY19", "periodEnd": "2019-12-31T23:59:59.000+00:00", "periodStart": "2019-01-01T00:00:00.000+00:00", "series": "FY" }'); INSERT INTO finance_fiscal_years VALUES ('fb86a6b6-5934-4eaf-ab09-80d45785be99', 'FY2018', 'USD', 'Fiscal year for 2018', 'Fiscal Year 2018', '2018-12-31 23:59:59+00', '2018-01-01 00:00:00+00', 'FY', '{ "id": "fb86a6b6-5934-4eaf-ab09-80d45785be99", "acqUnitIds": [], "code": "FY2018", "currency": "USD", "description": "Fiscal year for 2018", "metadata": { "createdDate": "2021-12-06T01:50:46.030+00:00", "updatedDate": "2021-12-06T01:50:46.030+00:00" }, "name": "Fiscal Year 2018", "periodEnd": "2018-12-31T23:59:59.000+00:00", "periodStart": "2018-01-01T00:00:00.000+00:00", "series": "FY" }'); -- -- TOC entry 4220 (class 0 OID 88215321) -- Dependencies: 465 -- Data for Name: finance_fund_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_fund_types VALUES ('0f5f819e-0690-4c20-ad8d-cc23a6ecc585', 'Faculty', '{ "id": "0f5f819e-0690-4c20-ad8d-cc23a6ecc585", "name": "Faculty" }'); INSERT INTO finance_fund_types VALUES ('13d8beb0-56b6-4435-9934-09305c2d6c88', 'Technical', '{ "id": "13d8beb0-56b6-4435-9934-09305c2d6c88", "name": "Technical" }'); INSERT INTO finance_fund_types VALUES ('1db71218-f3e5-4514-b0bd-28f28f6b3fb2', 'Exchange', '{ "id": "1db71218-f3e5-4514-b0bd-28f28f6b3fb2", "name": "Exchange" }'); INSERT INTO finance_fund_types VALUES ('45dce82a-68fa-4ab8-aa50-f51ba6ecb613', 'Electronic', '{ "id": "45dce82a-68fa-4ab8-aa50-f51ba6ecb613", "name": "Electronic" }'); INSERT INTO finance_fund_types VALUES ('4fdf4bf7-0508-4159-89f4-0d64b2d7e0e4', 'Serials', '{ "id": "4fdf4bf7-0508-4159-89f4-0d64b2d7e0e4", "name": "Serials" }'); INSERT INTO finance_fund_types VALUES ('509775e4-3682-4c72-92ac-ab2d2fb3575f', 'Grants', '{ "id": "509775e4-3682-4c72-92ac-ab2d2fb3575f", "name": "Grants" }'); INSERT INTO finance_fund_types VALUES ('5604ee8b-d241-49b8-8baf-66b6c46bf14f', 'Physical', '{ "id": "5604ee8b-d241-49b8-8baf-66b6c46bf14f", "name": "Physical" }'); INSERT INTO finance_fund_types VALUES ('6d73d226-f56f-4338-9584-e91a83d5ecec', 'College/University funds', '{ "id": "6d73d226-f56f-4338-9584-e91a83d5ecec", "name": "College/University funds" }'); INSERT INTO finance_fund_types VALUES ('826dfc35-b247-4553-a4d7-53eb0e1eadbc', 'Audio', '{ "id": "826dfc35-b247-4553-a4d7-53eb0e1eadbc", "name": "Audio" }'); INSERT INTO finance_fund_types VALUES ('83ccb063-b6d8-467c-b3dc-02e49fdf7c96', 'Endowments', '{ "id": "83ccb063-b6d8-467c-b3dc-02e49fdf7c96", "name": "Endowments" }'); INSERT INTO finance_fund_types VALUES ('8b03b70a-a3e6-459c-9e8f-b7e9a7087052', 'Other', '{ "id": "8b03b70a-a3e6-459c-9e8f-b7e9a7087052", "name": "Other" }'); INSERT INTO finance_fund_types VALUES ('99595e88-954b-4f23-ae7e-afb063aae458', 'Books', '{ "id": "99595e88-954b-4f23-ae7e-afb063aae458", "name": "Books" }'); INSERT INTO finance_fund_types VALUES ('9d4e8e26-99e4-4134-9b7e-9f59da72380e', 'Restricted', '{ "id": "9d4e8e26-99e4-4134-9b7e-9f59da72380e", "name": "Restricted" }'); INSERT INTO finance_fund_types VALUES ('a1c94be4-d004-4f1a-ab21-343c33e48efa', 'DDA/PDA', '{ "id": "a1c94be4-d004-4f1a-ab21-343c33e48efa", "name": "DDA/PDA" }'); INSERT INTO finance_fund_types VALUES ('a5060e05-47db-4ba5-8d16-760f9578aaa9', 'Subscriptions', '{ "id": "a5060e05-47db-4ba5-8d16-760f9578aaa9", "name": "Subscriptions" }'); INSERT INTO finance_fund_types VALUES ('a6cffa87-7a64-4419-83d6-fa7af9d120e2', 'Monographs', '{ "id": "a6cffa87-7a64-4419-83d6-fa7af9d120e2", "name": "Monographs" }'); INSERT INTO finance_fund_types VALUES ('a7da939e-799b-4c0b-9b94-a06df51a4b90', 'Unrestricted', '{ "id": "a7da939e-799b-4c0b-9b94-a06df51a4b90", "name": "Unrestricted" }'); INSERT INTO finance_fund_types VALUES ('ace38b12-e6fc-49f2-bbd4-f3e2960d9b3d', 'Firm orders', '{ "id": "ace38b12-e6fc-49f2-bbd4-f3e2960d9b3d", "name": "Firm orders" }'); INSERT INTO finance_fund_types VALUES ('addac225-947b-41b6-b80a-4c0b79261747', 'Gifts', '{ "id": "addac225-947b-41b6-b80a-4c0b79261747", "name": "Gifts" }'); INSERT INTO finance_fund_types VALUES ('aea28ac6-f085-4833-bd54-d8f605d28d48', 'One-time', '{ "id": "aea28ac6-f085-4833-bd54-d8f605d28d48", "name": "One-time" }'); INSERT INTO finance_fund_types VALUES ('b61c08df-67b7-4e14-93f7-2d228dba6724', 'State funds', '{ "id": "b61c08df-67b7-4e14-93f7-2d228dba6724", "name": "State funds" }'); INSERT INTO finance_fund_types VALUES ('c93373df-e7ec-4d31-b200-719736610d89', 'Approvals', '{ "id": "c93373df-e7ec-4d31-b200-719736610d89", "name": "Approvals" }'); INSERT INTO finance_fund_types VALUES ('d1a84034-ca42-4815-9f8a-4efddbfc7db6', 'Ongoing', '{ "id": "d1a84034-ca42-4815-9f8a-4efddbfc7db6", "name": "Ongoing" }'); INSERT INTO finance_fund_types VALUES ('d28c844a-bead-489e-a889-e3951b884f3f', 'Standing orders', '{ "id": "d28c844a-bead-489e-a889-e3951b884f3f", "name": "Standing orders" }'); INSERT INTO finance_fund_types VALUES ('d49c4392-5a02-4b15-ba9d-5ae7315f44cf', 'EBA', '{ "id": "d49c4392-5a02-4b15-ba9d-5ae7315f44cf", "name": "EBA" }'); INSERT INTO finance_fund_types VALUES ('d87b3e95-be8a-4800-9733-3fa16f0c4266', 'Video', '{ "id": "d87b3e95-be8a-4800-9733-3fa16f0c4266", "name": "Video" }'); -- -- TOC entry 4221 (class 0 OID 88215337) -- Dependencies: 466 -- Data for Name: finance_funds; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_funds VALUES ('1714f71f-b845-444b-a79e-a577487a6f7d', 'ENDOW-SUBN', 'ongoing endowments used for subscriptions', '25378812835909', 'Active', '83ccb063-b6d8-467c-b3dc-02e49fdf7c96', '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'Endowments', '{ "id": "1714f71f-b845-444b-a79e-a577487a6f7d", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [], "code": "ENDOW-SUBN", "description": "ongoing endowments used for subscriptions", "externalAccountNo": "25378812835909", "fundStatus": "Active", "fundTypeId": "83ccb063-b6d8-467c-b3dc-02e49fdf7c96", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.230+00:00", "updatedDate": "2021-12-06T01:50:46.230+00:00" }, "name": "Endowments" }'); INSERT INTO finance_funds VALUES ('1b6d3338-186e-4e35-9e75-1b886b0da53e', 'GRANT-SUBN', 'grant money used for subscriptions, data sets, or backfiles; do not activate this fund unless University Accounting alerts the library to specific grants received this year', '30155824699502', 'Inactive', '509775e4-3682-4c72-92ac-ab2d2fb3575f', '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'Grants', '{ "id": "1b6d3338-186e-4e35-9e75-1b886b0da53e", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [], "code": "GRANT-SUBN", "description": "grant money used for subscriptions, data sets, or backfiles; do not activate this fund unless University Accounting alerts the library to specific grants received this year", "externalAccountNo": "30155824699502", "fundStatus": "Inactive", "fundTypeId": "509775e4-3682-4c72-92ac-ab2d2fb3575f", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.170+00:00", "updatedDate": "2021-12-06T01:50:46.170+00:00" }, "name": "Grants" }'); INSERT INTO finance_funds VALUES ('30fcc8e7-a019-43f4-b642-2edc389f4501', 'MIDEASTHIS', 'includes North Africa, all Arabic countries, Israel', '53862260514841', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Middle Eastern History', '{ "id": "30fcc8e7-a019-43f4-b642-2edc389f4501", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "MIDEASTHIS", "description": "includes North Africa, all Arabic countries, Israel", "externalAccountNo": "53862260514841", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.188+00:00", "updatedDate": "2021-12-06T01:50:46.188+00:00" }, "name": "Middle Eastern History" }'); INSERT INTO finance_funds VALUES ('4428a37c-8bae-4f0d-865d-970d83d5ad55', 'UNIV-SUBN', 'university money used for ongoing subscriptions', '74941332229038', 'Active', '6d73d226-f56f-4338-9584-e91a83d5ecec', '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'University Allocation', '{ "id": "4428a37c-8bae-4f0d-865d-970d83d5ad55", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [], "code": "UNIV-SUBN", "description": "university money used for ongoing subscriptions", "externalAccountNo": "74941332229038", "fundStatus": "Active", "fundTypeId": "6d73d226-f56f-4338-9584-e91a83d5ecec", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.224+00:00", "updatedDate": "2021-12-06T01:50:46.224+00:00" }, "name": "University Allocation" }'); INSERT INTO finance_funds VALUES ('55f48dc6-efa7-4cfe-bc7c-4786efe493e3', 'ASIAHIST', 'use for East, Central, and South Asia', '94508839006119', 'Active', '0f5f819e-0690-4c20-ad8d-cc23a6ecc585', '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Asian History', '{ "id": "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "acqUnitIds": [], "allocatedFromIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "allocatedToIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "code": "ASIAHIST", "description": "use for East, Central, and South Asia", "externalAccountNo": "94508839006119", "fundStatus": "Active", "fundTypeId": "0f5f819e-0690-4c20-ad8d-cc23a6ecc585", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.179+00:00", "updatedDate": "2021-12-06T01:50:46.179+00:00" }, "name": "Asian History" }'); INSERT INTO finance_funds VALUES ('65032151-39a5-4cef-8810-5350eb316300', 'USHIST', 'used for all US states and territories', '111064118278565', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'US History', '{ "id": "65032151-39a5-4cef-8810-5350eb316300", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "USHIST", "description": "used for all US states and territories", "externalAccountNo": "111064118278565", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.286+00:00", "updatedDate": "2021-12-06T01:50:46.286+00:00" }, "name": "US History" }'); INSERT INTO finance_funds VALUES ('6506b79b-7702-48b2-9774-a1c538fdd34e', 'GIFTS-ONE-TIME', 'use for any one-time gift funds', '111079524628226', 'Active', 'addac225-947b-41b6-b80a-4c0b79261747', '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Gifts (Non-recurring)', '{ "id": "6506b79b-7702-48b2-9774-a1c538fdd34e", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [], "code": "GIFTS-ONE-TIME", "description": "use for any one-time gift funds", "externalAccountNo": "111079524628226", "fundStatus": "Active", "fundTypeId": "addac225-947b-41b6-b80a-4c0b79261747", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.152+00:00", "updatedDate": "2021-12-06T01:50:46.152+00:00" }, "name": "Gifts (Non-recurring)" }'); INSERT INTO finance_funds VALUES ('67cd0046-e4f1-4e4f-9024-adf0b0039d09', 'CANLATHIST', 'used for all North/South America & Caribbean countries except US; will be inactivated once separate funds for Can and LatAm are approved', '1242363322421', 'Inactive', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Can/LatAm History', '{ "id": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "CANLATHIST", "description": "used for all North/South America & Caribbean countries except US; will be inactivated once separate funds for Can and LatAm are approved", "externalAccountNo": "1242363322421", "fundStatus": "Inactive", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.245+00:00", "updatedDate": "2021-12-06T01:50:46.245+00:00" }, "name": "Can/LatAm History" }'); INSERT INTO finance_funds VALUES ('68872d8a-bf16-420b-829f-206da38f6c10', 'CANHIST', 'WAITING FOR ADMIN APPROVAL; use for Canada once CANLATHIST is inactivated', '114929793941270', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Canadian History', '{ "id": "68872d8a-bf16-420b-829f-206da38f6c10", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "67cd0046-e4f1-4e4f-9024-adf0b0039d09" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "CANHIST", "description": "WAITING FOR ADMIN APPROVAL; use for Canada once CANLATHIST is inactivated", "externalAccountNo": "114929793941270", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.237+00:00", "updatedDate": "2021-12-06T01:50:46.237+00:00" }, "name": "Canadian History" }'); INSERT INTO finance_funds VALUES ('69640328-788e-43fc-9c3c-af39e243f3b7', 'ANZHIST', 'use for all Oceanic countries', '115878270630030', 'Active', 'a6cffa87-7a64-4419-83d6-fa7af9d120e2', '7cef8378-7cbd-1fae-bcdd-8b9d7c0af9de', 'Oceania History', '{ "id": "69640328-788e-43fc-9c3c-af39e243f3b7", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "ANZHIST", "description": "use for all Oceanic countries", "externalAccountNo": "115878270630030", "fundStatus": "Active", "fundTypeId": "a6cffa87-7a64-4419-83d6-fa7af9d120e2", "ledgerId": "7cef8378-7cbd-1fae-bcdd-8b9d7c0af9de", "metadata": { "createdDate": "2021-12-06T01:50:46.136+00:00", "updatedDate": "2021-12-06T01:50:46.136+00:00" }, "name": "Oceania History" }'); INSERT INTO finance_funds VALUES ('7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'AFRICAHIST', 'use only for sub-Saharan Africa & the black diaspora; use MIDEASTHIS for North Africa', '140451294503633', 'Active', 'c93373df-e7ec-4d31-b200-719736610d89', '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'African History', '{ "id": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "AFRICAHIST", "description": "use only for sub-Saharan Africa & the black diaspora; use MIDEASTHIS for North Africa", "externalAccountNo": "140451294503633", "fundStatus": "Active", "fundTypeId": "c93373df-e7ec-4d31-b200-719736610d89", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.204+00:00", "updatedDate": "2021-12-06T01:50:46.204+00:00" }, "name": "African History" }'); INSERT INTO finance_funds VALUES ('a89eccf0-57a6-495e-898d-32b9b2210f2f', 'MISCHIST', 'use for world history, general geography, historiography', '185399996602278', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'History Misc', '{ "id": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "MISCHIST", "description": "use for world history, general geography, historiography", "externalAccountNo": "185399996602278", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.126+00:00", "updatedDate": "2021-12-06T01:50:46.126+00:00" }, "name": "History Misc" }'); INSERT INTO finance_funds VALUES ('bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0', 'STATE-MONOSER', 'state funds used for monographic series and ongoing sets', '206521990498803', 'Active', NULL, '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'State-MonoSeries', '{ "id": "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0", "acqUnitIds": [], "allocatedFromIds": [ "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6" ], "allocatedToIds": [ "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6" ], "code": "STATE-MONOSER", "description": "state funds used for monographic series and ongoing sets", "externalAccountNo": "206521990498803", "fundStatus": "Active", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.210+00:00", "updatedDate": "2021-12-06T01:50:46.210+00:00" }, "name": "State-MonoSeries" }'); INSERT INTO finance_funds VALUES ('cf23adf0-61ba-4887-bf82-956c4aae2260', 'ONE-TIME-SWEEP', 'gathers all unused state funds at the end of the year, for final spend-out', '227752149017018', 'Active', 'aea28ac6-f085-4833-bd54-d8f605d28d48', '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'FY Sweep Fund', '{ "id": "cf23adf0-61ba-4887-bf82-956c4aae2260", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "65032151-39a5-4cef-8810-5350eb316300", "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "e9285a1c-1dfc-4380-868c-e74073003f43", "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "69640328-788e-43fc-9c3c-af39e243f3b7", "30fcc8e7-a019-43f4-b642-2edc389f4501", "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "a89eccf0-57a6-495e-898d-32b9b2210f2f", "68872d8a-bf16-420b-829f-206da38f6c10", "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "ONE-TIME-SWEEP", "description": "gathers all unused state funds at the end of the year, for final spend-out", "externalAccountNo": "227752149017018", "fundStatus": "Active", "fundTypeId": "aea28ac6-f085-4833-bd54-d8f605d28d48", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.144+00:00", "updatedDate": "2021-12-06T01:50:46.144+00:00" }, "name": "FY Sweep Fund" }'); INSERT INTO finance_funds VALUES ('d6f7c1ba-a237-465e-94ed-f37e91bc64bd', 'EXCH-SUBN', 'special funds allocated to fund subscriptions sent to exchange partner libraries', '236359595500087', 'Active', NULL, '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'Exchanges', '{ "id": "d6f7c1ba-a237-465e-94ed-f37e91bc64bd", "acqUnitIds": [], "allocatedFromIds": [ "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "4428a37c-8bae-4f0d-865d-970d83d5ad55" ], "allocatedToIds": [], "code": "EXCH-SUBN", "description": "special funds allocated to fund subscriptions sent to exchange partner libraries", "externalAccountNo": "236359595500087", "fundStatus": "Active", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.272+00:00", "updatedDate": "2021-12-06T01:50:46.272+00:00" }, "name": "Exchanges" }'); INSERT INTO finance_funds VALUES ('e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6', 'STATE-SUBN', 'state funds used for ongoing subscriptions', '252110810479877', 'Active', NULL, '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'State-Subscriptions', '{ "id": "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "acqUnitIds": [], "allocatedFromIds": [ "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0" ], "allocatedToIds": [ "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0" ], "code": "STATE-SUBN", "description": "state funds used for ongoing subscriptions", "externalAccountNo": "252110810479877", "fundStatus": "Active", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.252+00:00", "updatedDate": "2021-12-06T01:50:46.252+00:00" }, "name": "State-Subscriptions" }'); INSERT INTO finance_funds VALUES ('e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 'LATAMHIST', 'WAITING FOR ADMIN APPROVAL; use for Mexicon, Central/South America, Caribbean once CANLATHIST is inactivated', '253815003172284', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Latin American History', '{ "id": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "67cd0046-e4f1-4e4f-9024-adf0b0039d09" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "LATAMHIST", "description": "WAITING FOR ADMIN APPROVAL; use for Mexicon, Central/South America, Caribbean once CANLATHIST is inactivated", "externalAccountNo": "253815003172284", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.217+00:00", "updatedDate": "2021-12-06T01:50:46.217+00:00" }, "name": "Latin American History" }'); INSERT INTO finance_funds VALUES ('e9285a1c-1dfc-4380-868c-e74073003f43', 'EUROHIST', 'do not use for former Soviet countries; use SLAVHIST instead', '256359519755772', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'European History', '{ "id": "e9285a1c-1dfc-4380-868c-e74073003f43", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "EUROHIST", "description": "do not use for former Soviet countries; use SLAVHIST instead", "externalAccountNo": "256359519755772", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.279+00:00", "updatedDate": "2021-12-06T01:50:46.279+00:00" }, "name": "European History" }'); INSERT INTO finance_funds VALUES ('e9f9bc2f-bad5-4613-9d6c-f55efa5805e7', 'GIFT-SUBN', 'use for any one-time gift funds; best used for backfile purchases', '257258813373141', 'Active', '509775e4-3682-4c72-92ac-ab2d2fb3575f', '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'One-time Gifts', '{ "id": "e9f9bc2f-bad5-4613-9d6c-f55efa5805e7", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [], "code": "GIFT-SUBN", "description": "use for any one-time gift funds; best used for backfile purchases", "externalAccountNo": "257258813373141", "fundStatus": "Active", "fundTypeId": "509775e4-3682-4c72-92ac-ab2d2fb3575f", "ledgerId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "metadata": { "createdDate": "2021-12-06T01:50:46.161+00:00", "updatedDate": "2021-12-06T01:50:46.161+00:00" }, "name": "One-time Gifts" }'); INSERT INTO finance_funds VALUES ('f31a36de-fcf8-44f9-87ef-a55d06ad21ae', 'SLAVHIST', 'used for Russia and all former Soviet countries', '267293915282680', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'Slavic & Eastern European History', '{ "id": "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "acqUnitIds": [], "allocatedFromIds": [ "fb7b70f1-b898-4924-a991-0e4b6312bb5f" ], "allocatedToIds": [ "cf23adf0-61ba-4887-bf82-956c4aae2260" ], "code": "SLAVHIST", "description": "used for Russia and all former Soviet countries", "externalAccountNo": "267293915282680", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.196+00:00", "updatedDate": "2021-12-06T01:50:46.196+00:00" }, "name": "Slavic & Eastern European History" }'); INSERT INTO finance_funds VALUES ('fb7b70f1-b898-4924-a991-0e4b6312bb5f', 'HIST', 'subdivided by geographic regions, to match individual selectors', '276507594438808', 'Active', NULL, '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'History', '{ "id": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "acqUnitIds": [], "allocatedFromIds": [], "allocatedToIds": [ "65032151-39a5-4cef-8810-5350eb316300", "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "e9285a1c-1dfc-4380-868c-e74073003f43", "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "69640328-788e-43fc-9c3c-af39e243f3b7", "30fcc8e7-a019-43f4-b642-2edc389f4501", "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "a89eccf0-57a6-495e-898d-32b9b2210f2f", "cf23adf0-61ba-4887-bf82-956c4aae2260", "68872d8a-bf16-420b-829f-206da38f6c10", "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79" ], "code": "HIST", "description": "subdivided by geographic regions, to match individual selectors", "externalAccountNo": "276507594438808", "fundStatus": "Active", "ledgerId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "metadata": { "createdDate": "2021-12-06T01:50:46.264+00:00", "updatedDate": "2021-12-06T01:50:46.264+00:00" }, "name": "History" }'); -- -- TOC entry 4222 (class 0 OID 88215359) -- Dependencies: 467 -- Data for Name: finance_group_fund_fiscal_years; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_group_fund_fiscal_years VALUES ('041a36de-fcf8-44f9-87ef-a55d06ad21ae', 'a7c63802-4c1a-4646-9392-024e08df9c02', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'f31a36de-fcf8-44f9-87ef-a55d06ad21ae', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "041a36de-fcf8-44f9-87ef-a55d06ad21ae", "budgetId": "a7c63802-4c1a-4646-9392-024e08df9c02", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('0c7b70f1-b898-4924-a991-0e4b6312bb5f', 'f6aea7f1-e614-4010-a2f7-913bb63d1561', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'fb7b70f1-b898-4924-a991-0e4b6312bb5f', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "0c7b70f1-b898-4924-a991-0e4b6312bb5f", "budgetId": "f6aea7f1-e614-4010-a2f7-913bb63d1561", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('40fcc8e7-a019-43f4-b642-2edc389f4501', '4eadbf22-e6dc-4ea4-9453-c6e9de2cb5a8', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '30fcc8e7-a019-43f4-b642-2edc389f4501', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "40fcc8e7-a019-43f4-b642-2edc389f4501", "budgetId": "4eadbf22-e6dc-4ea4-9453-c6e9de2cb5a8", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "30fcc8e7-a019-43f4-b642-2edc389f4501", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('65f48dc6-efa7-4cfe-bc7c-4786efe493e3', 'de6761f6-1f64-4b5d-a5bc-98862c498c21', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '55f48dc6-efa7-4cfe-bc7c-4786efe493e3', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "65f48dc6-efa7-4cfe-bc7c-4786efe493e3", "budgetId": "de6761f6-1f64-4b5d-a5bc-98862c498c21", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('75032151-39a5-4cef-8810-5350eb316300', '5255e36f-4444-49d5-baa3-38f7f687f69d', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '65032151-39a5-4cef-8810-5350eb316300', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "75032151-39a5-4cef-8810-5350eb316300", "budgetId": "5255e36f-4444-49d5-baa3-38f7f687f69d", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "65032151-39a5-4cef-8810-5350eb316300", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('77cd0046-e4f1-4e4f-9024-adf0b0039d09', 'bd444215-1ce4-4101-9f10-1534fa137495', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '67cd0046-e4f1-4e4f-9024-adf0b0039d09', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "77cd0046-e4f1-4e4f-9024-adf0b0039d09", "budgetId": "bd444215-1ce4-4101-9f10-1534fa137495", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('78872d8a-bf16-420b-829f-206da38f6c10', '383c59f9-d420-4f37-87ad-c0f7ee0e0283', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '68872d8a-bf16-420b-829f-206da38f6c10', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "78872d8a-bf16-420b-829f-206da38f6c10", "budgetId": "383c59f9-d420-4f37-87ad-c0f7ee0e0283", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "68872d8a-bf16-420b-829f-206da38f6c10", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('79640328-788e-43fc-9c3c-af39e243f3b7', '012e7da4-003c-48ff-9feb-f3745044da35', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '69640328-788e-43fc-9c3c-af39e243f3b7', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "79640328-788e-43fc-9c3c-af39e243f3b7", "budgetId": "012e7da4-003c-48ff-9feb-f3745044da35", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "69640328-788e-43fc-9c3c-af39e243f3b7", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('8fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'd71635df-c08c-49cc-9082-197a30fd0392', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "8fbd5d84-62d1-44c6-9c45-6cb173998bbd", "budgetId": "d71635df-c08c-49cc-9082-197a30fd0392", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('b89eccf0-57a6-495e-898d-32b9b2210f2f', '4207567e-73c9-45c8-8850-8458389ae0ed', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'a89eccf0-57a6-495e-898d-32b9b2210f2f', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "b89eccf0-57a6-495e-898d-32b9b2210f2f", "budgetId": "4207567e-73c9-45c8-8850-8458389ae0ed", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('f6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', '53c28e77-4623-4af7-ad3d-60a9ba470c45', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "f6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "budgetId": "53c28e77-4623-4af7-ad3d-60a9ba470c45", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); INSERT INTO finance_group_fund_fiscal_years VALUES ('f9285a1c-1dfc-4380-868c-e74073003f43', '34fe0c8b-2b99-4fe2-81a5-4ed6872a32e6', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e9285a1c-1dfc-4380-868c-e74073003f43', 'f33ed99b-852a-4f90-9891-5efe0feab165', '{ "id": "f9285a1c-1dfc-4380-868c-e74073003f43", "budgetId": "34fe0c8b-2b99-4fe2-81a5-4ed6872a32e6", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fundId": "e9285a1c-1dfc-4380-868c-e74073003f43", "groupId": "f33ed99b-852a-4f90-9891-5efe0feab165" }'); -- -- TOC entry 4223 (class 0 OID 88215377) -- Dependencies: 468 -- Data for Name: finance_groups; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_groups VALUES ('f33ed99b-852a-4f90-9891-5efe0feab165', 'HIST', 'History is an umbrella term that relates to past events as well as the memory, discovery, collection, organization, presentation, and interpretation of information about these events.', 'History', 'Active', '{ "id": "f33ed99b-852a-4f90-9891-5efe0feab165", "acqUnitIds": [], "code": "HIST", "description": "History is an umbrella term that relates to past events as well as the memory, discovery, collection, organization, presentation, and interpretation of information about these events.", "metadata": { "createdDate": "2021-12-06T01:50:45.969+00:00", "updatedDate": "2021-12-06T01:50:45.969+00:00" }, "name": "History", "status": "Active" }'); -- -- TOC entry 4224 (class 0 OID 88215395) -- Dependencies: 469 -- Data for Name: finance_ledgers; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_ledgers VALUES ('133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'ONETIME', 'USD', 'Funds used for any non-recurring purchases', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'Active', 'One-time', false, false, '{ "id": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "acqUnitIds": [], "code": "ONETIME", "currency": "USD", "description": "Funds used for any non-recurring purchases", "fiscalYearOneId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "ledgerStatus": "Active", "metadata": { "createdDate": "2021-12-06T01:50:46.065+00:00", "updatedDate": "2021-12-06T01:50:46.065+00:00" }, "name": "One-time", "restrictEncumbrance": false, "restrictExpenditures": false }'); INSERT INTO finance_ledgers VALUES ('65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'ONGOING', 'USD', 'Funds used for all recurring purchases', 'fb86a6b6-5934-4eaf-ab09-80d45785be99', 'Frozen', 'Ongoing', true, true, '{ "id": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "code": "ONGOING", "currency": "USD", "description": "Funds used for all recurring purchases", "fiscalYearOneId": "fb86a6b6-5934-4eaf-ab09-80d45785be99", "ledgerStatus": "Frozen", "metadata": { "createdDate": "2021-12-06T01:50:46.093+00:00", "updatedDate": "2021-12-06T01:50:46.093+00:00" }, "name": "Ongoing", "restrictEncumbrance": true, "restrictExpenditures": true }'); INSERT INTO finance_ledgers VALUES ('7cef8378-7cbd-1fae-bcdd-8b9d7c0af9de', 'MAIN-LIB', 'USD', 'This is the ledger for the Main Library', 'fb86a6b6-5934-4eaf-ab09-80d45785be99', 'Active', 'Main Library', true, true, '{ "id": "7cef8378-7cbd-1fae-bcdd-8b9d7c0af9de", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "code": "MAIN-LIB", "currency": "USD", "description": "This is the ledger for the Main Library", "fiscalYearOneId": "fb86a6b6-5934-4eaf-ab09-80d45785be99", "ledgerStatus": "Active", "metadata": { "createdDate": "2021-12-06T01:50:46.085+00:00", "updatedDate": "2021-12-06T01:50:46.085+00:00" }, "name": "Main Library", "restrictEncumbrance": true, "restrictExpenditures": true }'); -- -- TOC entry 4180 (class 0 OID 88214603) -- Dependencies: 425 -- Data for Name: finance_transactions; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO finance_transactions VALUES ('1295e48b-b123-4e4a-ac56-1ef5ddf521d0', 400000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '4428a37c-8bae-4f0d-865d-970d83d5ad55', 'Allocation', '{ "id": "1295e48b-b123-4e4a-ac56-1ef5ddf521d0", "amount": 400000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.779+00:00", "updatedDate": "2021-12-06T01:50:46.779+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "4428a37c-8bae-4f0d-865d-970d83d5ad55", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('2880a6c0-3bd1-44c9-b1e3-d91e69b2077b', 25000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e9f9bc2f-bad5-4613-9d6c-f55efa5805e7', 'Allocation', '{ "id": "2880a6c0-3bd1-44c9-b1e3-d91e69b2077b", "amount": 25000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.732+00:00", "updatedDate": "2021-12-06T01:50:46.732+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "e9f9bc2f-bad5-4613-9d6c-f55efa5805e7", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('33c942ef-144d-4b3b-b8dc-f2695c57d8da', 201000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '1714f71f-b845-444b-a79e-a577487a6f7d', 'Allocation', '{ "id": "33c942ef-144d-4b3b-b8dc-f2695c57d8da", "amount": 201000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.772+00:00", "updatedDate": "2021-12-06T01:50:46.772+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "1714f71f-b845-444b-a79e-a577487a6f7d", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('35e1f462-7f72-4ccd-83d1-4092b357c8e6', 12000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 'Allocation', '{ "id": "35e1f462-7f72-4ccd-83d1-4092b357c8e6", "amount": 12000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.666+00:00", "updatedDate": "2021-12-06T01:50:46.666+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('471457c1-ef6c-4637-83d3-3984fa3471c2', 50000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'd6f7c1ba-a237-465e-94ed-f37e91bc64bd', 'Allocation', '{ "id": "471457c1-ef6c-4637-83d3-3984fa3471c2", "amount": 50000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.675+00:00", "updatedDate": "2021-12-06T01:50:46.675+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "d6f7c1ba-a237-465e-94ed-f37e91bc64bd", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('4ca003ab-e7fa-4fc9-9365-cfc66117e993', 24000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '30fcc8e7-a019-43f4-b642-2edc389f4501', 'Allocation', '{ "id": "4ca003ab-e7fa-4fc9-9365-cfc66117e993", "amount": 24000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.691+00:00", "updatedDate": "2021-12-06T01:50:46.691+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "30fcc8e7-a019-43f4-b642-2edc389f4501", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('52f2e488-19de-4e82-9d5f-6d0d0592fcd3', 25000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'e9285a1c-1dfc-4380-868c-e74073003f43', 'Allocation', '{ "id": "52f2e488-19de-4e82-9d5f-6d0d0592fcd3", "amount": 25000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.712+00:00", "updatedDate": "2021-12-06T01:50:46.712+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "e9285a1c-1dfc-4380-868c-e74073003f43", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('5e09e729-9576-4cb6-9cc4-09cc5c6a2bb5', 30000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '65032151-39a5-4cef-8810-5350eb316300', 'Allocation', '{ "id": "5e09e729-9576-4cb6-9cc4-09cc5c6a2bb5", "amount": 30000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.747+00:00", "updatedDate": "2021-12-06T01:50:46.747+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "65032151-39a5-4cef-8810-5350eb316300", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('65eab5a6-016f-468d-8397-0c90e3dc2ca0', 12230.80, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '67cd0046-e4f1-4e4f-9024-adf0b0039d09', 'Allocation', '{ "id": "65eab5a6-016f-468d-8397-0c90e3dc2ca0", "amount": 12230.8, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.609+00:00", "updatedDate": "2021-12-06T01:50:46.609+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('7468d9f1-26d1-498c-8129-b57c3a19732b', 28000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '6506b79b-7702-48b2-9774-a1c538fdd34e', 'Allocation', '{ "id": "7468d9f1-26d1-498c-8129-b57c3a19732b", "amount": 28000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.740+00:00", "updatedDate": "2021-12-06T01:50:46.740+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "6506b79b-7702-48b2-9774-a1c538fdd34e", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('8d0f8ba1-d7cd-4ec3-a8a0-564f21d888d4', 4000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '68872d8a-bf16-420b-829f-206da38f6c10', 'Allocation', '{ "id": "8d0f8ba1-d7cd-4ec3-a8a0-564f21d888d4", "amount": 4000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.755+00:00", "updatedDate": "2021-12-06T01:50:46.755+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "68872d8a-bf16-420b-829f-206da38f6c10", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('8de9e056-6316-45ca-890a-b5c3f030b2c9', 35000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'a89eccf0-57a6-495e-898d-32b9b2210f2f', 'Allocation', '{ "id": "8de9e056-6316-45ca-890a-b5c3f030b2c9", "amount": 35000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.764+00:00", "updatedDate": "2021-12-06T01:50:46.764+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('a0b1e290-c42f-435a-b9d7-4ae7f77eb4ef', 21000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'Allocation', '{ "id": "a0b1e290-c42f-435a-b9d7-4ae7f77eb4ef", "amount": 21000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.723+00:00", "updatedDate": "2021-12-06T01:50:46.723+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('c5b8b0f4-47bd-4bef-8c2e-d219eb053386', 200000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', 'fb7b70f1-b898-4924-a991-0e4b6312bb5f', 'Allocation', '{ "id": "c5b8b0f4-47bd-4bef-8c2e-d219eb053386", "amount": 200000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.702+00:00", "updatedDate": "2021-12-06T01:50:46.702+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('d5c4df84-0ea6-4035-902c-f47780d2597e', 23000.00, 'USD', NULL, '684b5dc5-92f6-4db7-b996-b549d88f5e4e', NULL, 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '55f48dc6-efa7-4cfe-bc7c-4786efe493e3', 'Allocation', '{ "id": "d5c4df84-0ea6-4035-902c-f47780d2597e", "amount": 23000.0, "currency": "USD", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "metadata": { "createdDate": "2021-12-06T01:50:46.683+00:00", "updatedDate": "2021-12-06T01:50:46.683+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "transactionType": "Allocation" }'); INSERT INTO finance_transactions VALUES ('e24d0bae-0528-403d-8ce2-0d821a6e57e7', 2500.00, 'USD', 'PO_Line: History of Incas', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'User', '684b5dc5-92f6-4db7-b996-b549d88f5e4e', '69640328-788e-43fc-9c3c-af39e243f3b7', 'Transfer', '{ "id": "e24d0bae-0528-403d-8ce2-0d821a6e57e7", "amount": 2500.0, "currency": "USD", "description": "PO_Line: History of Incas", "fiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "fromFundId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "metadata": { "createdDate": "2021-12-06T01:50:46.790+00:00", "updatedDate": "2021-12-06T01:50:46.790+00:00" }, "source": "User", "sourceFiscalYearId": "684b5dc5-92f6-4db7-b996-b549d88f5e4e", "toFundId": "69640328-788e-43fc-9c3c-af39e243f3b7", "transactionType": "Transfer" }'); -- -- TOC entry 4225 (class 0 OID 88215417) -- Dependencies: 470 -- Data for Name: inventory_alternative_title_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_alternative_title_types VALUES ('09964ad1-7aed-49b8-8223-a4c105e3ef87', 'Running title', 'folio', '{ "id": "09964ad1-7aed-49b8-8223-a4c105e3ef87", "metadata": { "createdDate": "2021-12-06T01:50:58.961+00:00", "updatedDate": "2021-12-06T01:50:58.961+00:00" }, "name": "Running title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('0fe58901-183e-4678-a3aa-0b4751174ba8', 'No type specified', 'folio', '{ "id": "0fe58901-183e-4678-a3aa-0b4751174ba8", "metadata": { "createdDate": "2021-12-06T01:50:58.921+00:00", "updatedDate": "2021-12-06T01:50:58.921+00:00" }, "name": "No type specified", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('2584943f-36ad-4037-a7fa-3bdebb09f452', 'Other title', 'folio', '{ "id": "2584943f-36ad-4037-a7fa-3bdebb09f452", "metadata": { "createdDate": "2021-12-06T01:50:58.932+00:00", "updatedDate": "2021-12-06T01:50:58.932+00:00" }, "name": "Other title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('2ca8538d-a2fd-4e60-b967-1cb220101e22', 'Added title page title', 'folio', '{ "id": "2ca8538d-a2fd-4e60-b967-1cb220101e22", "metadata": { "createdDate": "2021-12-06T01:50:58.948+00:00", "updatedDate": "2021-12-06T01:50:58.948+00:00" }, "name": "Added title page title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('30512027-cdc9-4c79-af75-1565b3bd888d', 'Uniform title', 'folio', '{ "id": "30512027-cdc9-4c79-af75-1565b3bd888d", "metadata": { "createdDate": "2021-12-06T01:50:58.927+00:00", "updatedDate": "2021-12-06T01:50:58.927+00:00" }, "name": "Uniform title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('432ca81a-fe4d-4249-bfd3-53388725647d', 'Caption title', 'folio', '{ "id": "432ca81a-fe4d-4249-bfd3-53388725647d", "metadata": { "createdDate": "2021-12-06T01:50:58.954+00:00", "updatedDate": "2021-12-06T01:50:58.954+00:00" }, "name": "Caption title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('4bb300a4-04c9-414b-bfbc-9c032f74b7b2', 'Parallel title', 'folio', '{ "id": "4bb300a4-04c9-414b-bfbc-9c032f74b7b2", "metadata": { "createdDate": "2021-12-06T01:50:58.944+00:00", "updatedDate": "2021-12-06T01:50:58.944+00:00" }, "name": "Parallel title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('5c364ce4-c8fd-4891-a28d-bb91c9bcdbfb', 'Cover title', 'folio', '{ "id": "5c364ce4-c8fd-4891-a28d-bb91c9bcdbfb", "metadata": { "createdDate": "2021-12-06T01:50:58.940+00:00", "updatedDate": "2021-12-06T01:50:58.940+00:00" }, "name": "Cover title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('781c04a4-f41e-4ab0-9118-6836e93de3c8', 'Distinctive title', 'folio', '{ "id": "781c04a4-f41e-4ab0-9118-6836e93de3c8", "metadata": { "createdDate": "2021-12-06T01:50:58.935+00:00", "updatedDate": "2021-12-06T01:50:58.935+00:00" }, "name": "Distinctive title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('a8b45056-2223-43ca-8514-4dd88ece984b', 'Portion of title', 'folio', '{ "id": "a8b45056-2223-43ca-8514-4dd88ece984b", "metadata": { "createdDate": "2021-12-06T01:50:58.957+00:00", "updatedDate": "2021-12-06T01:50:58.957+00:00" }, "name": "Portion of title", "source": "folio" }'); INSERT INTO inventory_alternative_title_types VALUES ('dae08d04-8c4e-4ab2-b6bb-99edbf252231', 'Spine title', 'folio', '{ "id": "dae08d04-8c4e-4ab2-b6bb-99edbf252231", "metadata": { "createdDate": "2021-12-06T01:50:58.964+00:00", "updatedDate": "2021-12-06T01:50:58.964+00:00" }, "name": "Spine title", "source": "folio" }'); -- -- TOC entry 4226 (class 0 OID 88215433) -- Dependencies: 471 -- Data for Name: inventory_call_number_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_call_number_types VALUES ('03dd64d0-5626-4ecd-8ece-4531e0069f35', 'Dewey Decimal classification', 'folio', '{ "id": "03dd64d0-5626-4ecd-8ece-4531e0069f35", "metadata": { "createdDate": "2021-12-06T01:50:59.138+00:00", "updatedDate": "2021-12-06T01:50:59.138+00:00" }, "name": "Dewey Decimal classification", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('054d460d-d6b9-4469-9e37-7a78a2266655', 'National Library of Medicine classification', 'folio', '{ "id": "054d460d-d6b9-4469-9e37-7a78a2266655", "metadata": { "createdDate": "2021-12-06T01:50:59.134+00:00", "updatedDate": "2021-12-06T01:50:59.134+00:00" }, "name": "National Library of Medicine classification", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('28927d76-e097-4f63-8510-e56f2b7a3ad0', 'Shelving control number', 'folio', '{ "id": "28927d76-e097-4f63-8510-e56f2b7a3ad0", "metadata": { "createdDate": "2021-12-06T01:50:59.101+00:00", "updatedDate": "2021-12-06T01:50:59.101+00:00" }, "name": "Shelving control number", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('512173a7-bd09-490e-b773-17d83f2b63fe', 'LC Modified', 'folio', '{ "id": "512173a7-bd09-490e-b773-17d83f2b63fe", "metadata": { "createdDate": "2021-12-06T01:50:59.123+00:00", "updatedDate": "2021-12-06T01:50:59.123+00:00" }, "name": "LC Modified", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('5ba6b62e-6858-490a-8102-5b1369873835', 'Title', 'folio', '{ "id": "5ba6b62e-6858-490a-8102-5b1369873835", "metadata": { "createdDate": "2021-12-06T01:50:59.106+00:00", "updatedDate": "2021-12-06T01:50:59.106+00:00" }, "name": "Title", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('6caca63e-5651-4db6-9247-3205156e9699', 'Other scheme', 'folio', '{ "id": "6caca63e-5651-4db6-9247-3205156e9699", "metadata": { "createdDate": "2021-12-06T01:50:59.145+00:00", "updatedDate": "2021-12-06T01:50:59.145+00:00" }, "name": "Other scheme", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('827a2b64-cbf5-4296-8545-130876e4dfc0', 'Source specified in subfield $2', 'folio', '{ "id": "827a2b64-cbf5-4296-8545-130876e4dfc0", "metadata": { "createdDate": "2021-12-06T01:50:59.114+00:00", "updatedDate": "2021-12-06T01:50:59.114+00:00" }, "name": "Source specified in subfield $2", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('828ae637-dfa3-4265-a1af-5279c436edff', 'MOYS', 'folio', '{ "id": "828ae637-dfa3-4265-a1af-5279c436edff", "metadata": { "createdDate": "2021-12-06T01:50:59.110+00:00", "updatedDate": "2021-12-06T01:50:59.110+00:00" }, "name": "MOYS", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('95467209-6d7b-468b-94df-0f5d7ad2747d', 'Library of Congress classification', 'folio', '{ "id": "95467209-6d7b-468b-94df-0f5d7ad2747d", "metadata": { "createdDate": "2021-12-06T01:50:59.094+00:00", "updatedDate": "2021-12-06T01:50:59.094+00:00" }, "name": "Library of Congress classification", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('cd70562c-dd0b-42f6-aa80-ce803d24d4a1', 'Shelved separately', 'folio', '{ "id": "cd70562c-dd0b-42f6-aa80-ce803d24d4a1", "metadata": { "createdDate": "2021-12-06T01:50:59.130+00:00", "updatedDate": "2021-12-06T01:50:59.130+00:00" }, "name": "Shelved separately", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('d644be8f-deb5-4c4d-8c9e-2291b7c0f46f', 'UDC', 'folio', '{ "id": "d644be8f-deb5-4c4d-8c9e-2291b7c0f46f", "metadata": { "createdDate": "2021-12-06T01:50:59.119+00:00", "updatedDate": "2021-12-06T01:50:59.119+00:00" }, "name": "UDC", "source": "folio" }'); INSERT INTO inventory_call_number_types VALUES ('fc388041-6cd0-4806-8a74-ebe3b9ab4c6e', 'Superintendent of Documents classification', 'folio', '{ "id": "fc388041-6cd0-4806-8a74-ebe3b9ab4c6e", "metadata": { "createdDate": "2021-12-06T01:50:59.141+00:00", "updatedDate": "2021-12-06T01:50:59.141+00:00" }, "name": "Superintendent of Documents classification", "source": "folio" }'); -- -- TOC entry 4227 (class 0 OID 88215450) -- Dependencies: 472 -- Data for Name: inventory_campuses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_campuses VALUES ('470ff1dd-937a-4195-bf9e-06bcfcd135df', 'E', '40ee00ca-a518-4b49-be01-0638d0a4ac57', 'Online', '{ "id": "470ff1dd-937a-4195-bf9e-06bcfcd135df", "code": "E", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "metadata": { "createdDate": "2021-12-06T01:50:56.312+00:00", "updatedDate": "2021-12-06T01:50:56.312+00:00" }, "name": "Online" }'); INSERT INTO inventory_campuses VALUES ('62cf76b7-cca5-4d33-9217-edf42ce1a848', 'CC', '40ee00ca-a518-4b49-be01-0638d0a4ac57', 'City Campus', '{ "id": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "CC", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "metadata": { "createdDate": "2021-12-06T01:50:56.300+00:00", "updatedDate": "2021-12-06T01:50:56.300+00:00" }, "name": "City Campus" }'); -- -- TOC entry 4228 (class 0 OID 88215470) -- Dependencies: 473 -- Data for Name: inventory_classification_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_classification_types VALUES ('42471af9-7d25-4f3a-bf78-60d29dcf463b', 'Dewey', 'folio', '{ "id": "42471af9-7d25-4f3a-bf78-60d29dcf463b", "metadata": { "createdDate": "2021-12-06T01:50:58.657+00:00", "updatedDate": "2021-12-06T01:50:58.657+00:00" }, "name": "Dewey", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('74c08086-81a4-4466-93d8-d117ce8646db', 'Additional Dewey', 'folio', '{ "id": "74c08086-81a4-4466-93d8-d117ce8646db", "metadata": { "createdDate": "2021-12-06T01:50:58.668+00:00", "updatedDate": "2021-12-06T01:50:58.668+00:00" }, "name": "Additional Dewey", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('9075b5f8-7d97-49e1-a431-73fdd468d476', 'SUDOC', 'folio', '{ "id": "9075b5f8-7d97-49e1-a431-73fdd468d476", "metadata": { "createdDate": "2021-12-06T01:50:58.647+00:00", "updatedDate": "2021-12-06T01:50:58.647+00:00" }, "name": "SUDOC", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('9a60012a-0fcf-4da9-a1d1-148e818c27ad', 'National Agricultural Library', 'folio', '{ "id": "9a60012a-0fcf-4da9-a1d1-148e818c27ad", "metadata": { "createdDate": "2021-12-06T01:50:58.642+00:00", "updatedDate": "2021-12-06T01:50:58.642+00:00" }, "name": "National Agricultural Library", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('a7f4d03f-b0d8-496c-aebf-4e9cdb678200', 'NLM', 'folio', '{ "id": "a7f4d03f-b0d8-496c-aebf-4e9cdb678200", "metadata": { "createdDate": "2021-12-06T01:50:58.652+00:00", "updatedDate": "2021-12-06T01:50:58.652+00:00" }, "name": "NLM", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('a83699eb-cc23-4307-8043-5a38a8dce335', 'LC (local)', 'folio', '{ "id": "a83699eb-cc23-4307-8043-5a38a8dce335", "metadata": { "createdDate": "2021-12-06T01:50:58.662+00:00", "updatedDate": "2021-12-06T01:50:58.662+00:00" }, "name": "LC (local)", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('ad615f6e-e28c-4343-b4a0-457397c5be3e', 'Canadian Classification', 'folio', '{ "id": "ad615f6e-e28c-4343-b4a0-457397c5be3e", "metadata": { "createdDate": "2021-12-06T01:50:58.673+00:00", "updatedDate": "2021-12-06T01:50:58.673+00:00" }, "name": "Canadian Classification", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('ce176ace-a53e-4b4d-aa89-725ed7b2edac', 'LC', 'folio', '{ "id": "ce176ace-a53e-4b4d-aa89-725ed7b2edac", "metadata": { "createdDate": "2021-12-06T01:50:58.678+00:00", "updatedDate": "2021-12-06T01:50:58.678+00:00" }, "name": "LC", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('e8662436-75a8-4984-bebc-531e38c774a0', 'UDC', 'folio', '{ "id": "e8662436-75a8-4984-bebc-531e38c774a0", "metadata": { "createdDate": "2021-12-06T01:50:58.636+00:00", "updatedDate": "2021-12-06T01:50:58.636+00:00" }, "name": "UDC", "source": "folio" }'); INSERT INTO inventory_classification_types VALUES ('fb12264c-ff3b-47e0-8e09-b0aa074361f1', 'GDC', 'folio', '{ "id": "fb12264c-ff3b-47e0-8e09-b0aa074361f1", "metadata": { "createdDate": "2021-12-06T01:50:58.629+00:00", "updatedDate": "2021-12-06T01:50:58.629+00:00" }, "name": "GDC", "source": "folio" }'); -- -- TOC entry 4229 (class 0 OID 88215486) -- Dependencies: 474 -- Data for Name: inventory_contributor_name_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_contributor_name_types VALUES ('2b94c631-fca9-4892-a730-03ee529ffe2a', 'Personal name', '1', '{ "id": "2b94c631-fca9-4892-a730-03ee529ffe2a", "metadata": { "createdDate": "2021-12-06T01:50:58.123+00:00", "updatedDate": "2021-12-06T01:50:58.123+00:00" }, "name": "Personal name", "ordering": "1" }'); INSERT INTO inventory_contributor_name_types VALUES ('2e48e713-17f3-4c13-a9f8-23845bb210aa', 'Corporate name', '2', '{ "id": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "metadata": { "createdDate": "2021-12-06T01:50:58.127+00:00", "updatedDate": "2021-12-06T01:50:58.127+00:00" }, "name": "Corporate name", "ordering": "2" }'); INSERT INTO inventory_contributor_name_types VALUES ('b637d244-7c9d-4f2e-82e1-85add5f11a4c', 'INN-Reach author', NULL, '{ "id": "b637d244-7c9d-4f2e-82e1-85add5f11a4c", "metadata": { "createdDate": "2021-12-06T01:53:00.986+00:00", "updatedDate": "2021-12-06T01:53:00.986+00:00" }, "name": "INN-Reach author" }'); INSERT INTO inventory_contributor_name_types VALUES ('e8b311a6-3b21-43f2-a269-dd9310cb2d0a', 'Meeting name', '3', '{ "id": "e8b311a6-3b21-43f2-a269-dd9310cb2d0a", "metadata": { "createdDate": "2021-12-06T01:50:58.116+00:00", "updatedDate": "2021-12-06T01:50:58.116+00:00" }, "name": "Meeting name", "ordering": "3" }'); -- -- TOC entry 4230 (class 0 OID 88215503) -- Dependencies: 475 -- Data for Name: inventory_contributor_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_contributor_types VALUES ('002c0eef-eb77-4c0b-a38e-117a09773d59', 'mtk', 'Minute taker', 'marcrelator', '{ "id": "002c0eef-eb77-4c0b-a38e-117a09773d59", "code": "mtk", "metadata": { "createdDate": "2021-12-06T01:50:57.493+00:00", "updatedDate": "2021-12-06T01:50:57.493+00:00" }, "name": "Minute taker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('00311f78-e990-4d8b-907e-c67a3664fe15', 'dtc', 'Data contributor', 'marcrelator', '{ "id": "00311f78-e990-4d8b-907e-c67a3664fe15", "code": "dtc", "metadata": { "createdDate": "2021-12-06T01:50:56.788+00:00", "updatedDate": "2021-12-06T01:50:56.788+00:00" }, "name": "Data contributor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('003e8b5e-426c-4d33-b940-233b1b89dfbd', 'pan', 'Panelist', 'marcrelator', '{ "id": "003e8b5e-426c-4d33-b940-233b1b89dfbd", "code": "pan", "metadata": { "createdDate": "2021-12-06T01:50:57.737+00:00", "updatedDate": "2021-12-06T01:50:57.737+00:00" }, "name": "Panelist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('02c1c664-1d71-4f7b-a656-1abf1209848f', 'prt', 'Printer', 'marcrelator', '{ "id": "02c1c664-1d71-4f7b-a656-1abf1209848f", "code": "prt", "metadata": { "createdDate": "2021-12-06T01:50:57.794+00:00", "updatedDate": "2021-12-06T01:50:57.794+00:00" }, "name": "Printer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('036b6349-27c8-4b68-8875-79cb8e0fd459', 'fac', 'Facsimilist', 'marcrelator', '{ "id": "036b6349-27c8-4b68-8875-79cb8e0fd459", "code": "fac", "metadata": { "createdDate": "2021-12-06T01:50:57.842+00:00", "updatedDate": "2021-12-06T01:50:57.842+00:00" }, "name": "Facsimilist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('05875ac5-a509-4a51-a6ee-b8051e37c7b0', 'sce', 'Scenarist', 'marcrelator', '{ "id": "05875ac5-a509-4a51-a6ee-b8051e37c7b0", "code": "sce", "metadata": { "createdDate": "2021-12-06T01:50:56.782+00:00", "updatedDate": "2021-12-06T01:50:56.782+00:00" }, "name": "Scenarist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0683aecf-42a8-432d-adb2-a8abaf2f15d5', 'pma', 'Permitting agency', 'marcrelator', '{ "id": "0683aecf-42a8-432d-adb2-a8abaf2f15d5", "code": "pma", "metadata": { "createdDate": "2021-12-06T01:50:56.848+00:00", "updatedDate": "2021-12-06T01:50:56.848+00:00" }, "name": "Permitting agency", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('06b2cbd8-66bf-4956-9d90-97c9776365a4', 'ann', 'Annotator', 'marcrelator', '{ "id": "06b2cbd8-66bf-4956-9d90-97c9776365a4", "code": "ann", "metadata": { "createdDate": "2021-12-06T01:50:56.794+00:00", "updatedDate": "2021-12-06T01:50:56.794+00:00" }, "name": "Annotator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('06fef928-bd00-4c7f-bd3c-5bc93973f8e8', 'frg', 'Forger', 'marcrelator', '{ "id": "06fef928-bd00-4c7f-bd3c-5bc93973f8e8", "code": "frg", "metadata": { "createdDate": "2021-12-06T01:50:57.596+00:00", "updatedDate": "2021-12-06T01:50:57.596+00:00" }, "name": "Forger", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('08553068-8495-49c2-9c18-d29ab656fef0', 'mus', 'Musician', 'marcrelator', '{ "id": "08553068-8495-49c2-9c18-d29ab656fef0", "code": "mus", "metadata": { "createdDate": "2021-12-06T01:50:57.157+00:00", "updatedDate": "2021-12-06T01:50:57.157+00:00" }, "name": "Musician", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('08cb225a-302c-4d5a-a6a3-fa90850babcd', 'pra', 'Praeses', 'marcrelator', '{ "id": "08cb225a-302c-4d5a-a6a3-fa90850babcd", "code": "pra", "metadata": { "createdDate": "2021-12-06T01:50:56.860+00:00", "updatedDate": "2021-12-06T01:50:56.860+00:00" }, "name": "Praeses", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('097adac4-6576-4152-ace8-08fc59cb0218', 'pdr', 'Project director', 'marcrelator', '{ "id": "097adac4-6576-4152-ace8-08fc59cb0218", "code": "pdr", "metadata": { "createdDate": "2021-12-06T01:50:57.415+00:00", "updatedDate": "2021-12-06T01:50:57.415+00:00" }, "name": "Project director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0ad74d5d-03b9-49bb-b9df-d692945ca66e', 'cot', 'Contestant-appellant', 'marcrelator', '{ "id": "0ad74d5d-03b9-49bb-b9df-d692945ca66e", "code": "cot", "metadata": { "createdDate": "2021-12-06T01:50:57.969+00:00", "updatedDate": "2021-12-06T01:50:57.969+00:00" }, "name": "Contestant-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0d022d0d-902d-4273-8013-0a2a753d9d76', 'rbr', 'Rubricator', 'marcrelator', '{ "id": "0d022d0d-902d-4273-8013-0a2a753d9d76", "code": "rbr", "metadata": { "createdDate": "2021-12-06T01:50:56.914+00:00", "updatedDate": "2021-12-06T01:50:56.914+00:00" }, "name": "Rubricator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0d2580f5-fe16-4d64-a5eb-f0247cccb129', 'dto', 'Dedicator', 'marcrelator', '{ "id": "0d2580f5-fe16-4d64-a5eb-f0247cccb129", "code": "dto", "metadata": { "createdDate": "2021-12-06T01:50:57.992+00:00", "updatedDate": "2021-12-06T01:50:57.992+00:00" }, "name": "Dedicator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0d8dc4be-e87b-43df-90d4-1ed60c4e08c5', 'dte', 'Dedicatee', 'marcrelator', '{ "id": "0d8dc4be-e87b-43df-90d4-1ed60c4e08c5", "code": "dte", "metadata": { "createdDate": "2021-12-06T01:50:57.695+00:00", "updatedDate": "2021-12-06T01:50:57.695+00:00" }, "name": "Dedicatee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0eef1c70-bd77-429c-a790-48a8d82b4d8f', 'trc', 'Transcriber', 'marcrelator', '{ "id": "0eef1c70-bd77-429c-a790-48a8d82b4d8f", "code": "trc", "metadata": { "createdDate": "2021-12-06T01:50:57.648+00:00", "updatedDate": "2021-12-06T01:50:57.648+00:00" }, "name": "Transcriber", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('0efdaf72-6126-430a-8256-69c42ff6866f', 'tcd', 'Technical director', 'marcrelator', '{ "id": "0efdaf72-6126-430a-8256-69c42ff6866f", "code": "tcd", "metadata": { "createdDate": "2021-12-06T01:50:57.329+00:00", "updatedDate": "2021-12-06T01:50:57.329+00:00" }, "name": "Technical director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('115fa75c-385b-4a8e-9a2b-b13de9f21bcf', 'wpr', 'Writer of preface', 'marcrelator', '{ "id": "115fa75c-385b-4a8e-9a2b-b13de9f21bcf", "code": "wpr", "metadata": { "createdDate": "2021-12-06T01:50:57.483+00:00", "updatedDate": "2021-12-06T01:50:57.483+00:00" }, "name": "Writer of preface", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('12101b05-afcb-4159-9ee4-c207378ef910', 'drt', 'Director', 'marcrelator', '{ "id": "12101b05-afcb-4159-9ee4-c207378ef910", "code": "drt", "metadata": { "createdDate": "2021-12-06T01:50:57.591+00:00", "updatedDate": "2021-12-06T01:50:57.591+00:00" }, "name": "Director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('12a73179-1283-4828-8fd9-065e18dc2e78', 'sgn', 'Signer', 'marcrelator', '{ "id": "12a73179-1283-4828-8fd9-065e18dc2e78", "code": "sgn", "metadata": { "createdDate": "2021-12-06T01:50:57.639+00:00", "updatedDate": "2021-12-06T01:50:57.639+00:00" }, "name": "Signer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('12b7418a-0c90-4337-90b7-16d2d3157b68', 'sec', 'Secretary', 'marcrelator', '{ "id": "12b7418a-0c90-4337-90b7-16d2d3157b68", "code": "sec", "metadata": { "createdDate": "2021-12-06T01:50:57.028+00:00", "updatedDate": "2021-12-06T01:50:57.028+00:00" }, "name": "Secretary", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('13361ce8-7664-46c0-860d-ffbcc01414e0', 'rps', 'Repository', 'marcrelator', '{ "id": "13361ce8-7664-46c0-860d-ffbcc01414e0", "code": "rps", "metadata": { "createdDate": "2021-12-06T01:50:57.365+00:00", "updatedDate": "2021-12-06T01:50:57.365+00:00" }, "name": "Repository", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('168b6ff3-7482-4fd0-bf07-48172b47876c', 'mrk', 'Markup editor', 'marcrelator', '{ "id": "168b6ff3-7482-4fd0-bf07-48172b47876c", "code": "mrk", "metadata": { "createdDate": "2021-12-06T01:50:57.441+00:00", "updatedDate": "2021-12-06T01:50:57.441+00:00" }, "name": "Markup editor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('18ba15a9-0502-4fa2-ad41-daab9d5ab7bb', 'itr', 'Instrumentalist', 'marcrelator', '{ "id": "18ba15a9-0502-4fa2-ad41-daab9d5ab7bb", "code": "itr", "metadata": { "createdDate": "2021-12-06T01:50:56.894+00:00", "updatedDate": "2021-12-06T01:50:56.894+00:00" }, "name": "Instrumentalist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('1aae8ca3-4ddd-4549-a769-116b75f3c773', 'pht', 'Photographer', 'marcrelator', '{ "id": "1aae8ca3-4ddd-4549-a769-116b75f3c773", "code": "pht", "metadata": { "createdDate": "2021-12-06T01:50:57.774+00:00", "updatedDate": "2021-12-06T01:50:57.774+00:00" }, "name": "Photographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('1b51068c-506a-4b85-a815-175c17932448', 'pat', 'Patron', 'marcrelator', '{ "id": "1b51068c-506a-4b85-a815-175c17932448", "code": "pat", "metadata": { "createdDate": "2021-12-06T01:50:57.003+00:00", "updatedDate": "2021-12-06T01:50:57.003+00:00" }, "name": "Patron", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('1c623f6e-25bf-41ec-8110-6bde712dfa79', 'sds', 'Sound designer', 'marcrelator', '{ "id": "1c623f6e-25bf-41ec-8110-6bde712dfa79", "code": "sds", "metadata": { "createdDate": "2021-12-06T01:50:57.724+00:00", "updatedDate": "2021-12-06T01:50:57.724+00:00" }, "name": "Sound designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('1ce93f32-3e10-46e2-943f-77f3c8a41d7d', 'vac', 'Voice actor', 'marcrelator', '{ "id": "1ce93f32-3e10-46e2-943f-77f3c8a41d7d", "code": "vac", "metadata": { "createdDate": "2021-12-06T01:50:57.803+00:00", "updatedDate": "2021-12-06T01:50:57.803+00:00" }, "name": "Voice actor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('1f20d444-79f6-497a-ae0d-98a92e504c58', 'aui', 'Author of introduction, etc.', 'marcrelator', '{ "id": "1f20d444-79f6-497a-ae0d-98a92e504c58", "code": "aui", "metadata": { "createdDate": "2021-12-06T01:50:57.454+00:00", "updatedDate": "2021-12-06T01:50:57.454+00:00" }, "name": "Author of introduction, etc.", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('201a378e-23dd-4aab-bfe0-e5bc3c855f9c', 'elt', 'Electrotyper', 'marcrelator', '{ "id": "201a378e-23dd-4aab-bfe0-e5bc3c855f9c", "code": "elt", "metadata": { "createdDate": "2021-12-06T01:50:58.000+00:00", "updatedDate": "2021-12-06T01:50:58.000+00:00" }, "name": "Electrotyper", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('206246b1-8e17-4588-bad8-78c82e3e6d54', 'sht', 'Supporting host', 'marcrelator', '{ "id": "206246b1-8e17-4588-bad8-78c82e3e6d54", "code": "sht", "metadata": { "createdDate": "2021-12-06T01:50:57.436+00:00", "updatedDate": "2021-12-06T01:50:57.436+00:00" }, "name": "Supporting host", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2129a478-c55c-4f71-9cd1-584cbbb381d4', 'fmk', 'Filmmaker', 'marcrelator', '{ "id": "2129a478-c55c-4f71-9cd1-584cbbb381d4", "code": "fmk", "metadata": { "createdDate": "2021-12-06T01:50:57.018+00:00", "updatedDate": "2021-12-06T01:50:57.018+00:00" }, "name": "Filmmaker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('21430354-f17a-4ac1-8545-1a5907cd15e5', 'inv', 'Inventor', 'marcrelator', '{ "id": "21430354-f17a-4ac1-8545-1a5907cd15e5", "code": "inv", "metadata": { "createdDate": "2021-12-06T01:50:57.238+00:00", "updatedDate": "2021-12-06T01:50:57.238+00:00" }, "name": "Inventor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('21dda3dc-cebd-4018-8db2-4f6d50ce3d02', 'own', 'Owner', 'marcrelator', '{ "id": "21dda3dc-cebd-4018-8db2-4f6d50ce3d02", "code": "own", "metadata": { "createdDate": "2021-12-06T01:50:57.577+00:00", "updatedDate": "2021-12-06T01:50:57.577+00:00" }, "name": "Owner", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('22286157-3058-434c-9009-8f8d100fc74a', 'ctg', 'Cartographer', 'marcrelator', '{ "id": "22286157-3058-434c-9009-8f8d100fc74a", "code": "ctg", "metadata": { "createdDate": "2021-12-06T01:50:57.849+00:00", "updatedDate": "2021-12-06T01:50:57.849+00:00" }, "name": "Cartographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2230246a-1fdb-4f06-a08a-004fd4b929bf', 'ptf', 'Plaintiff', 'marcrelator', '{ "id": "2230246a-1fdb-4f06-a08a-004fd4b929bf", "code": "ptf", "metadata": { "createdDate": "2021-12-06T01:50:57.214+00:00", "updatedDate": "2021-12-06T01:50:57.214+00:00" }, "name": "Plaintiff", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('223da16e-5a03-4f5c-b8c3-0eb79f662bcb', 'scl', 'Sculptor', 'marcrelator', '{ "id": "223da16e-5a03-4f5c-b8c3-0eb79f662bcb", "code": "scl", "metadata": { "createdDate": "2021-12-06T01:50:57.380+00:00", "updatedDate": "2021-12-06T01:50:57.380+00:00" }, "name": "Sculptor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('22f8ea20-b4f0-4498-8125-7962f0037c2d', 'flm', 'Film editor', 'marcrelator', '{ "id": "22f8ea20-b4f0-4498-8125-7962f0037c2d", "code": "flm", "metadata": { "createdDate": "2021-12-06T01:50:57.543+00:00", "updatedDate": "2021-12-06T01:50:57.543+00:00" }, "name": "Film editor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('245cfa8e-8709-4f1f-969b-894b94bc029f', 'blw', 'Blurb writer', 'marcrelator', '{ "id": "245cfa8e-8709-4f1f-969b-894b94bc029f", "code": "blw", "metadata": { "createdDate": "2021-12-06T01:50:56.971+00:00", "updatedDate": "2021-12-06T01:50:56.971+00:00" }, "name": "Blurb writer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('246858e3-4022-4991-9f1c-50901ccc1438', 'prf', 'Performer', 'marcrelator', '{ "id": "246858e3-4022-4991-9f1c-50901ccc1438", "code": "prf", "metadata": { "createdDate": "2021-12-06T01:50:57.904+00:00", "updatedDate": "2021-12-06T01:50:57.904+00:00" }, "name": "Performer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('255be0dd-54d0-4161-9c6c-4d1f58310303', 'ard', 'Artistic director', 'marcrelator', '{ "id": "255be0dd-54d0-4161-9c6c-4d1f58310303", "code": "ard", "metadata": { "createdDate": "2021-12-06T01:50:57.463+00:00", "updatedDate": "2021-12-06T01:50:57.463+00:00" }, "name": "Artistic director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2576c328-61f1-4684-83cf-4376a66f7731', 'fld', 'Field director', 'marcrelator', '{ "id": "2576c328-61f1-4684-83cf-4376a66f7731", "code": "fld", "metadata": { "createdDate": "2021-12-06T01:50:57.812+00:00", "updatedDate": "2021-12-06T01:50:57.812+00:00" }, "name": "Field director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2665431e-aad4-44d1-9218-04053d1cfd53', 'fmp', 'Film producer', 'marcrelator', '{ "id": "2665431e-aad4-44d1-9218-04053d1cfd53", "code": "fmp", "metadata": { "createdDate": "2021-12-06T01:50:57.152+00:00", "updatedDate": "2021-12-06T01:50:57.152+00:00" }, "name": "Film producer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('26ad4833-5d49-4999-97fc-44bc86a9fae0', 'fpy', 'First party', 'marcrelator', '{ "id": "26ad4833-5d49-4999-97fc-44bc86a9fae0", "code": "fpy", "metadata": { "createdDate": "2021-12-06T01:50:57.375+00:00", "updatedDate": "2021-12-06T01:50:57.375+00:00" }, "name": "First party", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('27aeee86-4099-466d-ba10-6d876e6f293b', 'com', 'Compiler', 'marcrelator', '{ "id": "27aeee86-4099-466d-ba10-6d876e6f293b", "code": "com", "metadata": { "createdDate": "2021-12-06T01:50:56.727+00:00", "updatedDate": "2021-12-06T01:50:56.727+00:00" }, "name": "Compiler", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('28de45ae-f0ca-46fe-9f89-283313b3255b', 'abr', 'Abridger', 'marcrelator', '{ "id": "28de45ae-f0ca-46fe-9f89-283313b3255b", "code": "abr", "metadata": { "createdDate": "2021-12-06T01:50:57.919+00:00", "updatedDate": "2021-12-06T01:50:57.919+00:00" }, "name": "Abridger", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('28f7eb9e-f923-4a77-9755-7571381b2a47', 'ctr', 'Contractor', 'marcrelator', '{ "id": "28f7eb9e-f923-4a77-9755-7571381b2a47", "code": "ctr", "metadata": { "createdDate": "2021-12-06T01:50:56.977+00:00", "updatedDate": "2021-12-06T01:50:56.977+00:00" }, "name": "Contractor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2a3e2d58-3a21-4e35-b7e4-cffb197750e3', 'cng', 'Cinematographer', 'marcrelator', '{ "id": "2a3e2d58-3a21-4e35-b7e4-cffb197750e3", "code": "cng", "metadata": { "createdDate": "2021-12-06T01:50:57.137+00:00", "updatedDate": "2021-12-06T01:50:57.137+00:00" }, "name": "Cinematographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2b45c004-805d-4e7f-864d-8664a23488dc', 'ltg', 'Lithographer', 'marcrelator', '{ "id": "2b45c004-805d-4e7f-864d-8664a23488dc", "code": "ltg", "metadata": { "createdDate": "2021-12-06T01:50:57.219+00:00", "updatedDate": "2021-12-06T01:50:57.219+00:00" }, "name": "Lithographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2b7080f7-d03d-46af-86f0-40ea02867362', 'cph', 'Copyright holder', 'marcrelator', '{ "id": "2b7080f7-d03d-46af-86f0-40ea02867362", "code": "cph", "metadata": { "createdDate": "2021-12-06T01:50:57.055+00:00", "updatedDate": "2021-12-06T01:50:57.055+00:00" }, "name": "Copyright holder", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2c345cb7-0420-4a7d-93ce-b51fb636cce6', 'nrt', 'Narrator', 'marcrelator', '{ "id": "2c345cb7-0420-4a7d-93ce-b51fb636cce6", "code": "nrt", "metadata": { "createdDate": "2021-12-06T01:50:57.713+00:00", "updatedDate": "2021-12-06T01:50:57.713+00:00" }, "name": "Narrator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2c9cd812-7b00-47e8-81e5-1711f3b6fe38', 'pup', 'Publication place', 'marcrelator', '{ "id": "2c9cd812-7b00-47e8-81e5-1711f3b6fe38", "code": "pup", "metadata": { "createdDate": "2021-12-06T01:50:58.023+00:00", "updatedDate": "2021-12-06T01:50:58.023+00:00" }, "name": "Publication place", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2cb49b06-5aeb-4e84-8160-79d13c6357ed', 'pth', 'Patent holder', 'marcrelator', '{ "id": "2cb49b06-5aeb-4e84-8160-79d13c6357ed", "code": "pth", "metadata": { "createdDate": "2021-12-06T01:50:57.311+00:00", "updatedDate": "2021-12-06T01:50:57.311+00:00" }, "name": "Patent holder", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2d046e17-742b-4d99-8e25-836cc141fee9', 'pbd', 'Publishing director', 'marcrelator', '{ "id": "2d046e17-742b-4d99-8e25-836cc141fee9", "code": "pbd", "metadata": { "createdDate": "2021-12-06T01:50:57.704+00:00", "updatedDate": "2021-12-06T01:50:57.704+00:00" }, "name": "Publishing director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('2fba7b2e-26bc-4ac5-93cb-73e31e554377', 'spy', 'Second party', 'marcrelator', '{ "id": "2fba7b2e-26bc-4ac5-93cb-73e31e554377", "code": "spy", "metadata": { "createdDate": "2021-12-06T01:50:57.691+00:00", "updatedDate": "2021-12-06T01:50:57.691+00:00" }, "name": "Second party", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('300171aa-95e1-45b0-86c6-2855fcaf9ef4', 'opn', 'Opponent', 'marcrelator', '{ "id": "300171aa-95e1-45b0-86c6-2855fcaf9ef4", "code": "opn", "metadata": { "createdDate": "2021-12-06T01:50:57.385+00:00", "updatedDate": "2021-12-06T01:50:57.385+00:00" }, "name": "Opponent", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('316cd382-a4fe-4939-b06e-e7199bfdbc7a', 'cwt', 'Commentator for written text', 'marcrelator', '{ "id": "316cd382-a4fe-4939-b06e-e7199bfdbc7a", "code": "cwt", "metadata": { "createdDate": "2021-12-06T01:50:57.950+00:00", "updatedDate": "2021-12-06T01:50:57.950+00:00" }, "name": "Commentator for written text", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3179eb17-275e-44f8-8cad-3a9514799bd0', 'sll', 'Seller', 'marcrelator', '{ "id": "3179eb17-275e-44f8-8cad-3a9514799bd0", "code": "sll", "metadata": { "createdDate": "2021-12-06T01:50:57.733+00:00", "updatedDate": "2021-12-06T01:50:57.733+00:00" }, "name": "Seller", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('319cb290-a549-4ae8-a0ed-a65fe155cac8', 'crp', 'Correspondent', 'marcrelator', '{ "id": "319cb290-a549-4ae8-a0ed-a65fe155cac8", "code": "crp", "metadata": { "createdDate": "2021-12-06T01:50:57.162+00:00", "updatedDate": "2021-12-06T01:50:57.162+00:00" }, "name": "Correspondent", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('32021771-311e-497b-9bf2-672492f322c7', 'wdc', 'Woodcutter', 'marcrelator', '{ "id": "32021771-311e-497b-9bf2-672492f322c7", "code": "wdc", "metadata": { "createdDate": "2021-12-06T01:50:57.111+00:00", "updatedDate": "2021-12-06T01:50:57.111+00:00" }, "name": "Woodcutter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3322b734-ce38-4cd4-815d-8983352837cc', 'trl', 'Translator', 'marcrelator', '{ "id": "3322b734-ce38-4cd4-815d-8983352837cc", "code": "trl", "metadata": { "createdDate": "2021-12-06T01:50:57.325+00:00", "updatedDate": "2021-12-06T01:50:57.325+00:00" }, "name": "Translator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('33aa4117-95d1-4eb5-986b-dfba809871f6', 'drm', 'Draftsman', 'marcrelator', '{ "id": "33aa4117-95d1-4eb5-986b-dfba809871f6", "code": "drm", "metadata": { "createdDate": "2021-12-06T01:50:57.304+00:00", "updatedDate": "2021-12-06T01:50:57.304+00:00" }, "name": "Draftsman", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3555bf7f-a6cc-4890-b050-9c428eabf579', 'fnd', 'Funder', 'marcrelator', '{ "id": "3555bf7f-a6cc-4890-b050-9c428eabf579", "code": "fnd", "metadata": { "createdDate": "2021-12-06T01:50:57.355+00:00", "updatedDate": "2021-12-06T01:50:57.355+00:00" }, "name": "Funder", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('35a3feaf-1c13-4221-8cfa-d6879faf714c', 'adp', 'Adapter', 'marcrelator', '{ "id": "35a3feaf-1c13-4221-8cfa-d6879faf714c", "code": "adp", "metadata": { "createdDate": "2021-12-06T01:50:57.172+00:00", "updatedDate": "2021-12-06T01:50:57.172+00:00" }, "name": "Adapter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('361f4bfd-a87d-463c-84d8-69346c3082f6', 'oth', 'Other', 'marcrelator', '{ "id": "361f4bfd-a87d-463c-84d8-69346c3082f6", "code": "oth", "metadata": { "createdDate": "2021-12-06T01:50:57.187+00:00", "updatedDate": "2021-12-06T01:50:57.187+00:00" }, "name": "Other", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3665d2dd-24cc-4fb4-922a-699811daa41c', 'dsr', 'Designer', 'marcrelator', '{ "id": "3665d2dd-24cc-4fb4-922a-699811daa41c", "code": "dsr", "metadata": { "createdDate": "2021-12-06T01:50:57.700+00:00", "updatedDate": "2021-12-06T01:50:57.700+00:00" }, "name": "Designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('366821b5-5319-4888-8867-0ffb2d7649d1', 'eng', 'Engineer', 'marcrelator', '{ "id": "366821b5-5319-4888-8867-0ffb2d7649d1", "code": "eng", "metadata": { "createdDate": "2021-12-06T01:50:57.013+00:00", "updatedDate": "2021-12-06T01:50:57.013+00:00" }, "name": "Engineer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('369783f6-78c8-4cd7-97ab-5029444e0c85', 'gis', 'Geographic information specialist', 'marcrelator', '{ "id": "369783f6-78c8-4cd7-97ab-5029444e0c85", "code": "gis", "metadata": { "createdDate": "2021-12-06T01:50:57.601+00:00", "updatedDate": "2021-12-06T01:50:57.601+00:00" }, "name": "Geographic information specialist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('36b921fe-6c34-45c8-908b-5701f0763e1b', 'cou', 'Court governed', 'marcrelator', '{ "id": "36b921fe-6c34-45c8-908b-5701f0763e1b", "code": "cou", "metadata": { "createdDate": "2021-12-06T01:50:57.101+00:00", "updatedDate": "2021-12-06T01:50:57.101+00:00" }, "name": "Court governed", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('38c09577-6652-4281-a391-4caabe4c09b6', 'spn', 'Sponsor', 'marcrelator', '{ "id": "38c09577-6652-4281-a391-4caabe4c09b6", "code": "spn", "metadata": { "createdDate": "2021-12-06T01:50:57.708+00:00", "updatedDate": "2021-12-06T01:50:57.708+00:00" }, "name": "Sponsor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('396f4b4d-5b0a-4fb4-941b-993ebf63db2e', 'anl', 'Analyst', 'marcrelator', '{ "id": "396f4b4d-5b0a-4fb4-941b-993ebf63db2e", "code": "anl", "metadata": { "createdDate": "2021-12-06T01:50:57.958+00:00", "updatedDate": "2021-12-06T01:50:57.958+00:00" }, "name": "Analyst", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('398a0a2f-752d-4496-8737-e6df7c29aaa7', 'lyr', 'Lyricist', 'marcrelator', '{ "id": "398a0a2f-752d-4496-8737-e6df7c29aaa7", "code": "lyr", "metadata": { "createdDate": "2021-12-06T01:50:56.928+00:00", "updatedDate": "2021-12-06T01:50:56.928+00:00" }, "name": "Lyricist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3add6049-0b63-4fec-9892-e3867e7358e2', 'ill', 'Illustrator', 'marcrelator', '{ "id": "3add6049-0b63-4fec-9892-e3867e7358e2", "code": "ill", "metadata": { "createdDate": "2021-12-06T01:50:56.874+00:00", "updatedDate": "2021-12-06T01:50:56.874+00:00" }, "name": "Illustrator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3b4709f1-5286-4c42-9423-4620fff78141', 'prv', 'Provider', 'marcrelator', '{ "id": "3b4709f1-5286-4c42-9423-4620fff78141", "code": "prv", "metadata": { "createdDate": "2021-12-06T01:50:56.982+00:00", "updatedDate": "2021-12-06T01:50:56.982+00:00" }, "name": "Provider", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3bd0b539-4440-4971-988c-5330daa14e3a', 'dnc', 'Dancer', 'marcrelator', '{ "id": "3bd0b539-4440-4971-988c-5330daa14e3a", "code": "dnc", "metadata": { "createdDate": "2021-12-06T01:50:56.800+00:00", "updatedDate": "2021-12-06T01:50:56.800+00:00" }, "name": "Dancer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3c1508ab-fbcc-4500-b319-10885570fe2f', 'lsa', 'Landscape architect', 'marcrelator', '{ "id": "3c1508ab-fbcc-4500-b319-10885570fe2f", "code": "lsa", "metadata": { "createdDate": "2021-12-06T01:50:56.823+00:00", "updatedDate": "2021-12-06T01:50:56.823+00:00" }, "name": "Landscape architect", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3c3ab522-2600-4b93-a121-8832146d5cdf', 'rsp', 'Respondent', 'marcrelator', '{ "id": "3c3ab522-2600-4b93-a121-8832146d5cdf", "code": "rsp", "metadata": { "createdDate": "2021-12-06T01:50:57.132+00:00", "updatedDate": "2021-12-06T01:50:57.132+00:00" }, "name": "Respondent", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3cbd0832-328e-48f5-96c4-6f7bcf341461', 'pmn', 'Production manager', 'marcrelator', '{ "id": "3cbd0832-328e-48f5-96c4-6f7bcf341461", "code": "pmn", "metadata": { "createdDate": "2021-12-06T01:50:57.450+00:00", "updatedDate": "2021-12-06T01:50:57.450+00:00" }, "name": "Production manager", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3db02638-598e-44a3-aafa-cbae77533ee1', 'ccp', 'Conceptor', 'marcrelator', '{ "id": "3db02638-598e-44a3-aafa-cbae77533ee1", "code": "ccp", "metadata": { "createdDate": "2021-12-06T01:50:56.733+00:00", "updatedDate": "2021-12-06T01:50:56.733+00:00" }, "name": "Conceptor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3e86cb67-5407-4622-a540-71a978899404', 'stg', 'Setting', 'marcrelator', '{ "id": "3e86cb67-5407-4622-a540-71a978899404", "code": "stg", "metadata": { "createdDate": "2021-12-06T01:50:57.534+00:00", "updatedDate": "2021-12-06T01:50:57.534+00:00" }, "name": "Setting", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3ebe73f4-0895-4979-a5e3-2b3e9c63acd6', 'dfe', 'Defendant-appellee', 'marcrelator', '{ "id": "3ebe73f4-0895-4979-a5e3-2b3e9c63acd6", "code": "dfe", "metadata": { "createdDate": "2021-12-06T01:50:57.405+00:00", "updatedDate": "2021-12-06T01:50:57.405+00:00" }, "name": "Defendant-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('3ed655b0-505b-43fe-a4c6-397789449a5b', 'tlp', 'Television producer', 'marcrelator', '{ "id": "3ed655b0-505b-43fe-a4c6-397789449a5b", "code": "tlp", "metadata": { "createdDate": "2021-12-06T01:50:57.673+00:00", "updatedDate": "2021-12-06T01:50:57.673+00:00" }, "name": "Television producer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('40fe62fb-4319-4313-ac88-ac4912b1e1fa', 'aus', 'Screenwriter', 'marcrelator', '{ "id": "40fe62fb-4319-4313-ac88-ac4912b1e1fa", "code": "aus", "metadata": { "createdDate": "2021-12-06T01:50:57.631+00:00", "updatedDate": "2021-12-06T01:50:57.631+00:00" }, "name": "Screenwriter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('41a0378d-5362-4c1a-b103-592ff354be1c', 'jud', 'Judge', 'marcrelator', '{ "id": "41a0378d-5362-4c1a-b103-592ff354be1c", "code": "jud", "metadata": { "createdDate": "2021-12-06T01:50:57.720+00:00", "updatedDate": "2021-12-06T01:50:57.720+00:00" }, "name": "Judge", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('44eaf0db-85dd-4888-ac8d-a5976dd483a6', 'rth', 'Research team head', 'marcrelator', '{ "id": "44eaf0db-85dd-4888-ac8d-a5976dd483a6", "code": "rth", "metadata": { "createdDate": "2021-12-06T01:50:57.838+00:00", "updatedDate": "2021-12-06T01:50:57.838+00:00" }, "name": "Research team head", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('453e4f4a-cda9-4cfa-b93d-3faeb18a85db', 'rsg', 'Restager', 'marcrelator', '{ "id": "453e4f4a-cda9-4cfa-b93d-3faeb18a85db", "code": "rsg", "metadata": { "createdDate": "2021-12-06T01:50:57.511+00:00", "updatedDate": "2021-12-06T01:50:57.511+00:00" }, "name": "Restager", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('45747710-39dc-47ec-b2b3-024d757f997e', 'pte', 'Plaintiff-appellee', 'marcrelator', '{ "id": "45747710-39dc-47ec-b2b3-024d757f997e", "code": "pte", "metadata": { "createdDate": "2021-12-06T01:50:57.770+00:00", "updatedDate": "2021-12-06T01:50:57.770+00:00" }, "name": "Plaintiff-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('468ac852-339e-43b7-8e94-7e2ce475cb00', 'cas', 'Caster', 'marcrelator', '{ "id": "468ac852-339e-43b7-8e94-7e2ce475cb00", "code": "cas", "metadata": { "createdDate": "2021-12-06T01:50:57.962+00:00", "updatedDate": "2021-12-06T01:50:57.962+00:00" }, "name": "Caster", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('4b41e752-3646-4097-ae80-21fd02e913f7', 'aud', 'Author of dialog', 'marcrelator', '{ "id": "4b41e752-3646-4097-ae80-21fd02e913f7", "code": "aud", "metadata": { "createdDate": "2021-12-06T01:50:56.754+00:00", "updatedDate": "2021-12-06T01:50:56.754+00:00" }, "name": "Author of dialog", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('4f7c335d-a9d9-4f38-87ef-9a5846b63e7f', 'ppt', 'Puppeteer', 'marcrelator', '{ "id": "4f7c335d-a9d9-4f38-87ef-9a5846b63e7f", "code": "ppt", "metadata": { "createdDate": "2021-12-06T01:50:57.044+00:00", "updatedDate": "2021-12-06T01:50:57.044+00:00" }, "name": "Puppeteer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('50a6d58a-cea2-42a1-8c57-0c6fde225c93', 'bsl', 'Bookseller', 'marcrelator', '{ "id": "50a6d58a-cea2-42a1-8c57-0c6fde225c93", "code": "bsl", "metadata": { "createdDate": "2021-12-06T01:50:57.370+00:00", "updatedDate": "2021-12-06T01:50:57.370+00:00" }, "name": "Bookseller", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('515caf91-3dde-4769-b784-50c9e23400d5', 'mrb', 'Marbler', 'marcrelator', '{ "id": "515caf91-3dde-4769-b784-50c9e23400d5", "code": "mrb", "metadata": { "createdDate": "2021-12-06T01:50:56.747+00:00", "updatedDate": "2021-12-06T01:50:56.747+00:00" }, "name": "Marbler", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('52c08141-307f-4997-9799-db97076a2eb3', 'lit', 'Libelant-appellant', 'marcrelator', '{ "id": "52c08141-307f-4997-9799-db97076a2eb3", "code": "lit", "metadata": { "createdDate": "2021-12-06T01:50:56.817+00:00", "updatedDate": "2021-12-06T01:50:56.817+00:00" }, "name": "Libelant-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('539872f1-f4a1-4e83-9d87-da235f64c520', 'org', 'Originator', 'marcrelator', '{ "id": "539872f1-f4a1-4e83-9d87-da235f64c520", "code": "org", "metadata": { "createdDate": "2021-12-06T01:50:56.966+00:00", "updatedDate": "2021-12-06T01:50:56.966+00:00" }, "name": "Originator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('53f075e1-53c0-423f-95ae-676df3d8c7a2', 'win', 'Writer of introduction', 'marcrelator', '{ "id": "53f075e1-53c0-423f-95ae-676df3d8c7a2", "code": "win", "metadata": { "createdDate": "2021-12-06T01:50:57.445+00:00", "updatedDate": "2021-12-06T01:50:57.445+00:00" }, "name": "Writer of introduction", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('54f69767-5712-47aa-bdb7-39c31aa8295e', 'evp', 'Event place', 'marcrelator', '{ "id": "54f69767-5712-47aa-bdb7-39c31aa8295e", "code": "evp", "metadata": { "createdDate": "2021-12-06T01:50:57.432+00:00", "updatedDate": "2021-12-06T01:50:57.432+00:00" }, "name": "Event place", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('54fd209c-d552-43eb-850f-d31f557170b9', 'rtm', 'Research team member', 'marcrelator', '{ "id": "54fd209c-d552-43eb-850f-d31f557170b9", "code": "rtm", "metadata": { "createdDate": "2021-12-06T01:50:57.498+00:00", "updatedDate": "2021-12-06T01:50:57.498+00:00" }, "name": "Research team member", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('55e4a59b-2dfd-478d-9fe9-110fc24f0752', 'brd', 'Broadcaster', 'marcrelator', '{ "id": "55e4a59b-2dfd-478d-9fe9-110fc24f0752", "code": "brd", "metadata": { "createdDate": "2021-12-06T01:50:56.830+00:00", "updatedDate": "2021-12-06T01:50:56.830+00:00" }, "name": "Broadcaster", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('563bcaa7-7fe1-4206-8fc9-5ef8c7fbf998', 'osp', 'Onscreen presenter', 'marcrelator', '{ "id": "563bcaa7-7fe1-4206-8fc9-5ef8c7fbf998", "code": "osp", "metadata": { "createdDate": "2021-12-06T01:50:57.821+00:00", "updatedDate": "2021-12-06T01:50:57.821+00:00" }, "name": "Onscreen presenter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('57247637-c41b-498d-9c46-935469335485', 'aqt', 'Author in quotations or text abstracts', 'marcrelator', '{ "id": "57247637-c41b-498d-9c46-935469335485", "code": "aqt", "metadata": { "createdDate": "2021-12-06T01:50:57.472+00:00", "updatedDate": "2021-12-06T01:50:57.472+00:00" }, "name": "Author in quotations or text abstracts", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('58461dca-efd4-4fd4-b380-d033e3540be5', 'tyg', 'Typographer', 'marcrelator', '{ "id": "58461dca-efd4-4fd4-b380-d033e3540be5", "code": "tyg", "metadata": { "createdDate": "2021-12-06T01:50:57.095+00:00", "updatedDate": "2021-12-06T01:50:57.095+00:00" }, "name": "Typographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('593862b4-a655-47c3-92b9-2b305b14cce7', 'chr', 'Choreographer', 'marcrelator', '{ "id": "593862b4-a655-47c3-92b9-2b305b14cce7", "code": "chr", "metadata": { "createdDate": "2021-12-06T01:50:57.846+00:00", "updatedDate": "2021-12-06T01:50:57.846+00:00" }, "name": "Choreographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5aa6e3d1-283c-4f6d-8694-3bdc52137b07', 'cos', 'Contestant', 'marcrelator', '{ "id": "5aa6e3d1-283c-4f6d-8694-3bdc52137b07", "code": "cos", "metadata": { "createdDate": "2021-12-06T01:50:57.224+00:00", "updatedDate": "2021-12-06T01:50:57.224+00:00" }, "name": "Contestant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5b2de939-879c-45b4-817d-c29fd16b78a0', 'elg', 'Electrician', 'marcrelator', '{ "id": "5b2de939-879c-45b4-817d-c29fd16b78a0", "code": "elg", "metadata": { "createdDate": "2021-12-06T01:50:58.008+00:00", "updatedDate": "2021-12-06T01:50:58.008+00:00" }, "name": "Electrician", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5c132335-8ad0-47bf-a4d1-6dda0a3a2654', 'auc', 'Auctioneer', 'marcrelator', '{ "id": "5c132335-8ad0-47bf-a4d1-6dda0a3a2654", "code": "auc", "metadata": { "createdDate": "2021-12-06T01:50:56.998+00:00", "updatedDate": "2021-12-06T01:50:56.998+00:00" }, "name": "Auctioneer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5c1e0a9e-1fdc-47a5-8d06-c12af63cbc5a', 'hnr', 'Honoree', 'marcrelator', '{ "id": "5c1e0a9e-1fdc-47a5-8d06-c12af63cbc5a", "code": "hnr", "metadata": { "createdDate": "2021-12-06T01:50:56.775+00:00", "updatedDate": "2021-12-06T01:50:56.775+00:00" }, "name": "Honoree", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5c3abceb-6bd8-43aa-b08d-1187ae78b15b', 'fmo', 'Former owner', 'marcrelator', '{ "id": "5c3abceb-6bd8-43aa-b08d-1187ae78b15b", "code": "fmo", "metadata": { "createdDate": "2021-12-06T01:50:57.888+00:00", "updatedDate": "2021-12-06T01:50:57.888+00:00" }, "name": "Former owner", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5d92d9de-adf3-4dea-93b5-580e9a88e696', 'cpc', 'Copyright claimant', 'marcrelator', '{ "id": "5d92d9de-adf3-4dea-93b5-580e9a88e696", "code": "cpc", "metadata": { "createdDate": "2021-12-06T01:50:57.116+00:00", "updatedDate": "2021-12-06T01:50:57.116+00:00" }, "name": "Copyright claimant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5e9333a6-bc92-43c0-a306-30811bb71e61', 'lgd', 'Lighting designer', 'marcrelator', '{ "id": "5e9333a6-bc92-43c0-a306-30811bb71e61", "code": "lgd", "metadata": { "createdDate": "2021-12-06T01:50:57.830+00:00", "updatedDate": "2021-12-06T01:50:57.830+00:00" }, "name": "Lighting designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5ee1e598-72b8-44d5-8edd-173e7bc4cf8c', 'prc', 'Process contact', 'marcrelator', '{ "id": "5ee1e598-72b8-44d5-8edd-173e7bc4cf8c", "code": "prc", "metadata": { "createdDate": "2021-12-06T01:50:57.008+00:00", "updatedDate": "2021-12-06T01:50:57.008+00:00" }, "name": "Process contact", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('5f27fcc6-4134-4916-afb8-fcbcfb6793d4', 'bdd', 'Binding designer', 'marcrelator', '{ "id": "5f27fcc6-4134-4916-afb8-fcbcfb6793d4", "code": "bdd", "metadata": { "createdDate": "2021-12-06T01:50:57.142+00:00", "updatedDate": "2021-12-06T01:50:57.142+00:00" }, "name": "Binding designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('60d3f16f-958a-45c2-bb39-69cc9eb3835e', 'fds', 'Film distributor', 'marcrelator', '{ "id": "60d3f16f-958a-45c2-bb39-69cc9eb3835e", "code": "fds", "metadata": { "createdDate": "2021-12-06T01:50:57.428+00:00", "updatedDate": "2021-12-06T01:50:57.428+00:00" }, "name": "Film distributor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('61afcb8a-8c53-445b-93b9-38e799721f82', 'enj', 'Enacting jurisdiction', 'marcrelator', '{ "id": "61afcb8a-8c53-445b-93b9-38e799721f82", "code": "enj", "metadata": { "createdDate": "2021-12-06T01:50:57.258+00:00", "updatedDate": "2021-12-06T01:50:57.258+00:00" }, "name": "Enacting jurisdiction", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('61c9f06f-620a-4423-8c78-c698b9bb555f', 'lel', 'Libelee', 'marcrelator', '{ "id": "61c9f06f-620a-4423-8c78-c698b9bb555f", "code": "lel", "metadata": { "createdDate": "2021-12-06T01:50:57.229+00:00", "updatedDate": "2021-12-06T01:50:57.229+00:00" }, "name": "Libelee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('630142eb-6b68-4cf7-8296-bdaba03b5760', 'pta', 'Patent applicant', 'marcrelator', '{ "id": "630142eb-6b68-4cf7-8296-bdaba03b5760", "code": "pta", "metadata": { "createdDate": "2021-12-06T01:50:57.390+00:00", "updatedDate": "2021-12-06T01:50:57.390+00:00" }, "name": "Patent applicant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6358626f-aa02-4c40-8e73-fb202fa5fb4d', 'cpe', 'Complainant-appellee', 'marcrelator', '{ "id": "6358626f-aa02-4c40-8e73-fb202fa5fb4d", "code": "cpe", "metadata": { "createdDate": "2021-12-06T01:50:57.891+00:00", "updatedDate": "2021-12-06T01:50:57.891+00:00" }, "name": "Complainant-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('66bfc19c-eeb0-4167-bd8d-448311aab929', 'mcp', 'Music copyist', 'marcrelator', '{ "id": "66bfc19c-eeb0-4167-bd8d-448311aab929", "code": "mcp", "metadata": { "createdDate": "2021-12-06T01:50:57.039+00:00", "updatedDate": "2021-12-06T01:50:57.039+00:00" }, "name": "Music copyist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6847c9ab-e2f8-4c9e-8dc6-1a97c6836c1c', 'sng', 'Singer', 'marcrelator', '{ "id": "6847c9ab-e2f8-4c9e-8dc6-1a97c6836c1c", "code": "sng", "metadata": { "createdDate": "2021-12-06T01:50:57.243+00:00", "updatedDate": "2021-12-06T01:50:57.243+00:00" }, "name": "Singer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('68dcc037-901e-46a9-9b4e-028548cd750f', 'ptt', 'Plaintiff-appellant', 'marcrelator', '{ "id": "68dcc037-901e-46a9-9b4e-028548cd750f", "code": "ptt", "metadata": { "createdDate": "2021-12-06T01:50:57.900+00:00", "updatedDate": "2021-12-06T01:50:57.900+00:00" }, "name": "Plaintiff-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6901fbf1-c038-42eb-a03e-cd65bf91f660', 'dgg', 'Degree granting institution', 'marcrelator', '{ "id": "6901fbf1-c038-42eb-a03e-cd65bf91f660", "code": "dgg", "metadata": { "createdDate": "2021-12-06T01:50:57.798+00:00", "updatedDate": "2021-12-06T01:50:57.798+00:00" }, "name": "Degree granting institution", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6a983219-b6cd-4dd7-bfa4-bcb0b43590d4', 'wat', 'Writer of added text', 'marcrelator', '{ "id": "6a983219-b6cd-4dd7-bfa4-bcb0b43590d4", "code": "wat", "metadata": { "createdDate": "2021-12-06T01:50:57.954+00:00", "updatedDate": "2021-12-06T01:50:57.954+00:00" }, "name": "Writer of added text", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6b566426-f325-4182-ac31-e1c4e0b2aa19', 'ren', 'Renderer', 'marcrelator', '{ "id": "6b566426-f325-4182-ac31-e1c4e0b2aa19", "code": "ren", "metadata": { "createdDate": "2021-12-06T01:50:57.023+00:00", "updatedDate": "2021-12-06T01:50:57.023+00:00" }, "name": "Renderer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6ccd61f4-c408-46ec-b359-a761b4781477', 'etr', 'Etcher', 'marcrelator', '{ "id": "6ccd61f4-c408-46ec-b359-a761b4781477", "code": "etr", "metadata": { "createdDate": "2021-12-06T01:50:57.526+00:00", "updatedDate": "2021-12-06T01:50:57.526+00:00" }, "name": "Etcher", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6d5779a3-e692-4a24-a5ee-d1ce8a6eae47', 'lbt', 'Librettist', 'marcrelator', '{ "id": "6d5779a3-e692-4a24-a5ee-d1ce8a6eae47", "code": "lbt", "metadata": { "createdDate": "2021-12-06T01:50:57.065+00:00", "updatedDate": "2021-12-06T01:50:57.065+00:00" }, "name": "Librettist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('6e09d47d-95e2-4d8a-831b-f777b8ef6d81', 'aut', 'Author', 'marcrelator', '{ "id": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "code": "aut", "metadata": { "createdDate": "2021-12-06T01:50:56.934+00:00", "updatedDate": "2021-12-06T01:50:56.934+00:00" }, "name": "Author", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7131e7b8-84fa-48bd-a725-14050be38f9f', 'act', 'Actor', 'marcrelator', '{ "id": "7131e7b8-84fa-48bd-a725-14050be38f9f", "code": "act", "metadata": { "createdDate": "2021-12-06T01:50:57.395+00:00", "updatedDate": "2021-12-06T01:50:57.395+00:00" }, "name": "Actor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7156fd73-b8ca-4e09-a002-bb2afaaf259a', 'rse', 'Respondent-appellee', 'marcrelator', '{ "id": "7156fd73-b8ca-4e09-a002-bb2afaaf259a", "code": "rse", "metadata": { "createdDate": "2021-12-06T01:50:57.931+00:00", "updatedDate": "2021-12-06T01:50:57.931+00:00" }, "name": "Respondent-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('754edaff-07bb-45eb-88bf-10a8b6842c38', 'arc', 'Architect', 'marcrelator', '{ "id": "754edaff-07bb-45eb-88bf-10a8b6842c38", "code": "arc", "metadata": { "createdDate": "2021-12-06T01:50:57.339+00:00", "updatedDate": "2021-12-06T01:50:57.339+00:00" }, "name": "Architect", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('756fcbfc-ef95-4bd0-99cc-1cc364c7b0cd', 'cns', 'Censor', 'marcrelator', '{ "id": "756fcbfc-ef95-4bd0-99cc-1cc364c7b0cd", "code": "cns", "metadata": { "createdDate": "2021-12-06T01:50:57.644+00:00", "updatedDate": "2021-12-06T01:50:57.644+00:00" }, "name": "Censor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('764c208a-493f-43af-8db7-3dd48efca45c', 'exp', 'Expert', 'marcrelator', '{ "id": "764c208a-493f-43af-8db7-3dd48efca45c", "code": "exp", "metadata": { "createdDate": "2021-12-06T01:50:56.835+00:00", "updatedDate": "2021-12-06T01:50:56.835+00:00" }, "name": "Expert", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7aac64ab-7f2a-4019-9705-e07133e3ad1a', 'cre', 'Creator', 'marcrelator', '{ "id": "7aac64ab-7f2a-4019-9705-e07133e3ad1a", "code": "cre", "metadata": { "createdDate": "2021-12-06T01:50:57.033+00:00", "updatedDate": "2021-12-06T01:50:57.033+00:00" }, "name": "Creator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7b21bffb-91e1-45bf-980a-40dd89cc26e4', 'dst', 'Distributor', 'marcrelator', '{ "id": "7b21bffb-91e1-45bf-980a-40dd89cc26e4", "code": "dst", "metadata": { "createdDate": "2021-12-06T01:50:56.718+00:00", "updatedDate": "2021-12-06T01:50:56.718+00:00" }, "name": "Distributor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7bebb5a2-9332-4ba7-a258-875143b5d754', 'csp', 'Consultant to a project', 'marcrelator', '{ "id": "7bebb5a2-9332-4ba7-a258-875143b5d754", "code": "csp", "metadata": { "createdDate": "2021-12-06T01:50:56.843+00:00", "updatedDate": "2021-12-06T01:50:56.843+00:00" }, "name": "Consultant to a project", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7c5c2fd5-3283-4f96-be89-3bb3e8fa6942', 'wst', 'Writer of supplementary textual content', 'marcrelator', '{ "id": "7c5c2fd5-3283-4f96-be89-3bb3e8fa6942", "code": "wst", "metadata": { "createdDate": "2021-12-06T01:50:56.760+00:00", "updatedDate": "2021-12-06T01:50:56.760+00:00" }, "name": "Writer of supplementary textual content", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7c62ecb4-544c-4c26-8765-f6f6d34031a0', 'dpt', 'Depositor', 'marcrelator', '{ "id": "7c62ecb4-544c-4c26-8765-f6f6d34031a0", "code": "dpt", "metadata": { "createdDate": "2021-12-06T01:50:57.122+00:00", "updatedDate": "2021-12-06T01:50:57.122+00:00" }, "name": "Depositor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7d0a897c-4f83-493a-a0c5-5e040cdce75b', 'apl', 'Appellant', 'marcrelator', '{ "id": "7d0a897c-4f83-493a-a0c5-5e040cdce75b", "code": "apl", "metadata": { "createdDate": "2021-12-06T01:50:57.939+00:00", "updatedDate": "2021-12-06T01:50:57.939+00:00" }, "name": "Appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7d60c4bf-5ddc-483a-b179-af6f1a76efbe', 'lie', 'Libelant-appellee', 'marcrelator', '{ "id": "7d60c4bf-5ddc-483a-b179-af6f1a76efbe", "code": "lie", "metadata": { "createdDate": "2021-12-06T01:50:57.985+00:00", "updatedDate": "2021-12-06T01:50:57.985+00:00" }, "name": "Libelant-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('7e5b0859-80c1-4e78-a5e7-61979862c1fa', 'str', 'Stereotyper', 'marcrelator', '{ "id": "7e5b0859-80c1-4e78-a5e7-61979862c1fa", "code": "str", "metadata": { "createdDate": "2021-12-06T01:50:57.728+00:00", "updatedDate": "2021-12-06T01:50:57.728+00:00" }, "name": "Stereotyper", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('81b2174a-06b9-48f5-8c49-6cbaf7b869fe', 'his', 'Host institution', 'marcrelator', '{ "id": "81b2174a-06b9-48f5-8c49-6cbaf7b869fe", "code": "his", "metadata": { "createdDate": "2021-12-06T01:50:57.826+00:00", "updatedDate": "2021-12-06T01:50:57.826+00:00" }, "name": "Host institution", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('81bbe282-dca7-4763-bf5a-fe28c8939988', 'pro', 'Producer', 'marcrelator', '{ "id": "81bbe282-dca7-4763-bf5a-fe28c8939988", "code": "pro", "metadata": { "createdDate": "2021-12-06T01:50:57.786+00:00", "updatedDate": "2021-12-06T01:50:57.786+00:00" }, "name": "Producer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('81c01802-f61b-4548-954a-22aab027f6e5', 'clr', 'Colorist', 'marcrelator', '{ "id": "81c01802-f61b-4548-954a-22aab027f6e5", "code": "clr", "metadata": { "createdDate": "2021-12-06T01:50:57.867+00:00", "updatedDate": "2021-12-06T01:50:57.867+00:00" }, "name": "Colorist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8210b9d7-8fe7-41b7-8c5f-6e0485b50725', 'prs', 'Production designer', 'marcrelator', '{ "id": "8210b9d7-8fe7-41b7-8c5f-6e0485b50725", "code": "prs", "metadata": { "createdDate": "2021-12-06T01:50:57.253+00:00", "updatedDate": "2021-12-06T01:50:57.253+00:00" }, "name": "Production designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('825a7d9f-7596-4007-9684-9bee72625cfc', 'dgs', 'Degree supervisor', 'marcrelator', '{ "id": "825a7d9f-7596-4007-9684-9bee72625cfc", "code": "dgs", "metadata": { "createdDate": "2021-12-06T01:50:57.807+00:00", "updatedDate": "2021-12-06T01:50:57.807+00:00" }, "name": "Degree supervisor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('846ac49c-749d-49fd-a05f-e7f2885d9eaf', 'bkd', 'Book designer', 'marcrelator', '{ "id": "846ac49c-749d-49fd-a05f-e7f2885d9eaf", "code": "bkd", "metadata": { "createdDate": "2021-12-06T01:50:57.127+00:00", "updatedDate": "2021-12-06T01:50:57.127+00:00" }, "name": "Book designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('85962960-ef07-499d-bf49-63f137204f9a', 'rev', 'Reviewer', 'marcrelator', '{ "id": "85962960-ef07-499d-bf49-63f137204f9a", "code": "rev", "metadata": { "createdDate": "2021-12-06T01:50:57.781+00:00", "updatedDate": "2021-12-06T01:50:57.781+00:00" }, "name": "Reviewer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('863e41e3-b9c5-44fb-abeb-a8ab536bb432', 'edc', 'Editor of compilation', 'marcrelator', '{ "id": "863e41e3-b9c5-44fb-abeb-a8ab536bb432", "code": "edc", "metadata": { "createdDate": "2021-12-06T01:50:57.076+00:00", "updatedDate": "2021-12-06T01:50:57.076+00:00" }, "name": "Editor of compilation", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('867f3d13-779a-454e-8a06-a1b9fb37ba2a', 'scr', 'Scribe', 'marcrelator', '{ "id": "867f3d13-779a-454e-8a06-a1b9fb37ba2a", "code": "scr", "metadata": { "createdDate": "2021-12-06T01:50:56.812+00:00", "updatedDate": "2021-12-06T01:50:56.812+00:00" }, "name": "Scribe", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('86890f8f-2273-44e2-aa86-927c7f649b32', 'cpt', 'Complainant-appellant', 'marcrelator', '{ "id": "86890f8f-2273-44e2-aa86-927c7f649b32", "code": "cpt", "metadata": { "createdDate": "2021-12-06T01:50:57.299+00:00", "updatedDate": "2021-12-06T01:50:57.299+00:00" }, "name": "Complainant-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('86b9292d-4dce-401d-861e-2df2cfaacb83', 'rpt', 'Reporter', 'marcrelator', '{ "id": "86b9292d-4dce-401d-861e-2df2cfaacb83", "code": "rpt", "metadata": { "createdDate": "2021-12-06T01:50:57.071+00:00", "updatedDate": "2021-12-06T01:50:57.071+00:00" }, "name": "Reporter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('88370fc3-bf69-45b6-b518-daf9a3877385', 'dub', 'Dubious author', 'marcrelator', '{ "id": "88370fc3-bf69-45b6-b518-daf9a3877385", "code": "dub", "metadata": { "createdDate": "2021-12-06T01:50:58.012+00:00", "updatedDate": "2021-12-06T01:50:58.012+00:00" }, "name": "Dubious author", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('88a66ebf-0b18-4ed7-91e5-01bc7e8de441', 'lee', 'Libelee-appellee', 'marcrelator', '{ "id": "88a66ebf-0b18-4ed7-91e5-01bc7e8de441", "code": "lee", "metadata": { "createdDate": "2021-12-06T01:50:58.019+00:00", "updatedDate": "2021-12-06T01:50:58.019+00:00" }, "name": "Libelee-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8999f7cb-6d9a-4be7-aeed-4cc6aae35a8c', 'cll', 'Calligrapher', 'marcrelator', '{ "id": "8999f7cb-6d9a-4be7-aeed-4cc6aae35a8c", "code": "cll", "metadata": { "createdDate": "2021-12-06T01:50:57.609+00:00", "updatedDate": "2021-12-06T01:50:57.609+00:00" }, "name": "Calligrapher", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8af7e981-65f9-4407-80ae-1bacd11315d5', 'mte', 'Metal-engraver', 'marcrelator', '{ "id": "8af7e981-65f9-4407-80ae-1bacd11315d5", "code": "mte", "metadata": { "createdDate": "2021-12-06T01:50:57.295+00:00", "updatedDate": "2021-12-06T01:50:57.295+00:00" }, "name": "Metal-engraver", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8ddb69bb-cd69-4898-a62d-b71649089e4a', 'cor', 'Collection registrar', 'marcrelator', '{ "id": "8ddb69bb-cd69-4898-a62d-b71649089e4a", "code": "cor", "metadata": { "createdDate": "2021-12-06T01:50:57.947+00:00", "updatedDate": "2021-12-06T01:50:57.947+00:00" }, "name": "Collection registrar", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8f9d96f5-32ad-43d7-8122-18063a617fc8', 'cpl', 'Complainant', 'marcrelator', '{ "id": "8f9d96f5-32ad-43d7-8122-18063a617fc8", "code": "cpl", "metadata": { "createdDate": "2021-12-06T01:50:57.687+00:00", "updatedDate": "2021-12-06T01:50:57.687+00:00" }, "name": "Complainant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('8fbe6e92-87c9-4eff-b736-88cd02571465', 'dnr', 'Donor', 'marcrelator', '{ "id": "8fbe6e92-87c9-4eff-b736-88cd02571465", "code": "dnr", "metadata": { "createdDate": "2021-12-06T01:50:57.419+00:00", "updatedDate": "2021-12-06T01:50:57.419+00:00" }, "name": "Donor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('901d01e5-66b1-48f0-99f9-b5e92e3d2d15', 'cmp', 'Composer', 'marcrelator', '{ "id": "901d01e5-66b1-48f0-99f9-b5e92e3d2d15", "code": "cmp", "metadata": { "createdDate": "2021-12-06T01:50:57.193+00:00", "updatedDate": "2021-12-06T01:50:57.193+00:00" }, "name": "Composer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('913233b3-b2a0-4635-8dad-49b6fc515fc5', 'wam', 'Writer of accompanying material', 'marcrelator', '{ "id": "913233b3-b2a0-4635-8dad-49b6fc515fc5", "code": "wam", "metadata": { "createdDate": "2021-12-06T01:50:57.477+00:00", "updatedDate": "2021-12-06T01:50:57.477+00:00" }, "name": "Writer of accompanying material", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('94b839e8-cabe-4d58-8918-8a5058fe5501', 'rst', 'Respondent-appellant', 'marcrelator', '{ "id": "94b839e8-cabe-4d58-8918-8a5058fe5501", "code": "rst", "metadata": { "createdDate": "2021-12-06T01:50:57.871+00:00", "updatedDate": "2021-12-06T01:50:57.871+00:00" }, "name": "Respondent-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('94bb3440-591f-41af-80fa-e124006faa49', 'con', 'Conservator', 'marcrelator', '{ "id": "94bb3440-591f-41af-80fa-e124006faa49", "code": "con", "metadata": { "createdDate": "2021-12-06T01:50:57.272+00:00", "updatedDate": "2021-12-06T01:50:57.272+00:00" }, "name": "Conservator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('94d131ef-2814-49a0-a59c-49b6e7584b3d', 'stn', 'Standards body', 'marcrelator', '{ "id": "94d131ef-2814-49a0-a59c-49b6e7584b3d", "code": "stn", "metadata": { "createdDate": "2021-12-06T01:50:57.876+00:00", "updatedDate": "2021-12-06T01:50:57.876+00:00" }, "name": "Standards body", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('94e6a5a8-b84f-44f7-b900-71cd10ea954e', 'rcp', 'Addressee', 'marcrelator', '{ "id": "94e6a5a8-b84f-44f7-b900-71cd10ea954e", "code": "rcp", "metadata": { "createdDate": "2021-12-06T01:50:57.834+00:00", "updatedDate": "2021-12-06T01:50:57.834+00:00" }, "name": "Addressee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9593efce-a42d-4991-9aad-3a4dc07abb1e', 'asn', 'Associated name', 'marcrelator', '{ "id": "9593efce-a42d-4991-9aad-3a4dc07abb1e", "code": "asn", "metadata": { "createdDate": "2021-12-06T01:50:57.286+00:00", "updatedDate": "2021-12-06T01:50:57.286+00:00" }, "name": "Associated name", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('97082157-5900-4c4c-a6d8-2e6c13f22ef1', 'isb', 'Issuing body', 'marcrelator', '{ "id": "97082157-5900-4c4c-a6d8-2e6c13f22ef1", "code": "isb", "metadata": { "createdDate": "2021-12-06T01:50:57.853+00:00", "updatedDate": "2021-12-06T01:50:57.853+00:00" }, "name": "Issuing body", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9945290f-bcd7-4515-81fd-09e23567b75d', 'coe', 'Contestant-appellee', 'marcrelator', '{ "id": "9945290f-bcd7-4515-81fd-09e23567b75d", "code": "coe", "metadata": { "createdDate": "2021-12-06T01:50:57.656+00:00", "updatedDate": "2021-12-06T01:50:57.656+00:00" }, "name": "Contestant-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('99f6b0b7-c22f-460d-afe0-ee0877bc66d1', 'lso', 'Licensor', 'marcrelator', '{ "id": "99f6b0b7-c22f-460d-afe0-ee0877bc66d1", "code": "lso", "metadata": { "createdDate": "2021-12-06T01:50:56.867+00:00", "updatedDate": "2021-12-06T01:50:56.867+00:00" }, "name": "Licensor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9d81737c-ec6c-49d8-9771-50e1ab4d7ad7', 'dtm', 'Data manager', 'marcrelator', '{ "id": "9d81737c-ec6c-49d8-9771-50e1ab4d7ad7", "code": "dtm", "metadata": { "createdDate": "2021-12-06T01:50:57.923+00:00", "updatedDate": "2021-12-06T01:50:57.923+00:00" }, "name": "Data manager", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9deb29d1-3e71-4951-9413-a80adac703d0', 'edt', 'Editor', 'marcrelator', '{ "id": "9deb29d1-3e71-4951-9413-a80adac703d0", "code": "edt", "metadata": { "createdDate": "2021-12-06T01:50:57.233+00:00", "updatedDate": "2021-12-06T01:50:57.233+00:00" }, "name": "Editor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9e7651f8-a4f0-4d02-81b4-578ef9303d1b', 'std', 'Set designer', 'marcrelator', '{ "id": "9e7651f8-a4f0-4d02-81b4-578ef9303d1b", "code": "std", "metadata": { "createdDate": "2021-12-06T01:50:56.961+00:00", "updatedDate": "2021-12-06T01:50:56.961+00:00" }, "name": "Set designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9e99e803-c73d-4250-8605-403be57f83f9', 'bpd', 'Bookplate designer', 'marcrelator', '{ "id": "9e99e803-c73d-4250-8605-403be57f83f9", "code": "bpd", "metadata": { "createdDate": "2021-12-06T01:50:57.277+00:00", "updatedDate": "2021-12-06T01:50:57.277+00:00" }, "name": "Bookplate designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9f0a2cf0-7a9b-45a2-a403-f68d2850d07c', 'ctb', 'Contributor', 'marcrelator', '{ "id": "9f0a2cf0-7a9b-45a2-a403-f68d2850d07c", "code": "ctb", "metadata": { "createdDate": "2021-12-06T01:50:57.539+00:00", "updatedDate": "2021-12-06T01:50:57.539+00:00" }, "name": "Contributor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('9fc0bffb-6dd9-4218-9a44-81be4a5059d4', 'cts', 'Contestee', 'marcrelator', '{ "id": "9fc0bffb-6dd9-4218-9a44-81be4a5059d4", "code": "cts", "metadata": { "createdDate": "2021-12-06T01:50:57.573+00:00", "updatedDate": "2021-12-06T01:50:57.573+00:00" }, "name": "Contestee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a21a56ea-5136-439a-a513-0bffa53402de', 'srv', 'Surveyor', 'marcrelator', '{ "id": "a21a56ea-5136-439a-a513-0bffa53402de", "code": "srv", "metadata": { "createdDate": "2021-12-06T01:50:57.263+00:00", "updatedDate": "2021-12-06T01:50:57.263+00:00" }, "name": "Surveyor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a2231628-6a5a-48f4-8eac-7e6b0328f6fe', 'mfp', 'Manufacture place', 'marcrelator', '{ "id": "a2231628-6a5a-48f4-8eac-7e6b0328f6fe", "code": "mfp", "metadata": { "createdDate": "2021-12-06T01:50:57.635+00:00", "updatedDate": "2021-12-06T01:50:57.635+00:00" }, "name": "Manufacture place", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a2c9e8b5-edb4-49dc-98ba-27f0b8b5cebf', 'tyd', 'Type designer', 'marcrelator', '{ "id": "a2c9e8b5-edb4-49dc-98ba-27f0b8b5cebf", "code": "tyd", "metadata": { "createdDate": "2021-12-06T01:50:57.755+00:00", "updatedDate": "2021-12-06T01:50:57.755+00:00" }, "name": "Type designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a3642006-14ab-4816-b5ac-533e4971417a', 'stl', 'Storyteller', 'marcrelator', '{ "id": "a3642006-14ab-4816-b5ac-533e4971417a", "code": "stl", "metadata": { "createdDate": "2021-12-06T01:50:57.977+00:00", "updatedDate": "2021-12-06T01:50:57.977+00:00" }, "name": "Storyteller", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a5c024f1-3c81-492c-ab5e-73d2bc5dcad7', 'let', 'Libelee-appellant', 'marcrelator', '{ "id": "a5c024f1-3c81-492c-ab5e-73d2bc5dcad7", "code": "let", "metadata": { "createdDate": "2021-12-06T01:50:57.895+00:00", "updatedDate": "2021-12-06T01:50:57.895+00:00" }, "name": "Libelee-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a60314d4-c3c6-4e29-92fa-86cc6ace4d56', 'pbl', 'Publisher', 'marcrelator', '{ "id": "a60314d4-c3c6-4e29-92fa-86cc6ace4d56", "code": "pbl", "metadata": { "createdDate": "2021-12-06T01:50:57.581+00:00", "updatedDate": "2021-12-06T01:50:57.581+00:00" }, "name": "Publisher", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a79f874f-319e-4bc8-a2e1-f8b15fa186fe', 'cnd', 'Conductor', 'marcrelator', '{ "id": "a79f874f-319e-4bc8-a2e1-f8b15fa186fe", "code": "cnd", "metadata": { "createdDate": "2021-12-06T01:50:57.884+00:00", "updatedDate": "2021-12-06T01:50:57.884+00:00" }, "name": "Conductor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a7a25290-226d-4f81-b780-2efc1f7dfd26', 'med', 'Medium', 'marcrelator', '{ "id": "a7a25290-226d-4f81-b780-2efc1f7dfd26", "code": "med", "metadata": { "createdDate": "2021-12-06T01:50:57.209+00:00", "updatedDate": "2021-12-06T01:50:57.209+00:00" }, "name": "Medium", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a8d59132-aa1e-4a62-b5bd-b26b7d7a16b9', 'lse', 'Licensee', 'marcrelator', '{ "id": "a8d59132-aa1e-4a62-b5bd-b26b7d7a16b9", "code": "lse", "metadata": { "createdDate": "2021-12-06T01:50:56.939+00:00", "updatedDate": "2021-12-06T01:50:56.939+00:00" }, "name": "Licensee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('a986c8f2-b36a-400d-b09f-9250a753563c', 'brl', 'Braille embosser', 'marcrelator', '{ "id": "a986c8f2-b36a-400d-b09f-9250a753563c", "code": "brl", "metadata": { "createdDate": "2021-12-06T01:50:57.915+00:00", "updatedDate": "2021-12-06T01:50:57.915+00:00" }, "name": "Braille embosser", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ab7a95da-590c-4955-b03b-9d8fbc6c1fe6', 'rce', 'Recording engineer', 'marcrelator', '{ "id": "ab7a95da-590c-4955-b03b-9d8fbc6c1fe6", "code": "rce", "metadata": { "createdDate": "2021-12-06T01:50:57.746+00:00", "updatedDate": "2021-12-06T01:50:57.746+00:00" }, "name": "Recording engineer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('abfa3014-7349-444b-aace-9d28efa5ede4', 'hst', 'Host', 'marcrelator', '{ "id": "abfa3014-7349-444b-aace-9d28efa5ede4", "code": "hst", "metadata": { "createdDate": "2021-12-06T01:50:57.605+00:00", "updatedDate": "2021-12-06T01:50:57.605+00:00" }, "name": "Host", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ac0baeb5-71e2-435f-aaf1-14b64e2ba700', 'spk', 'Speaker', 'marcrelator', '{ "id": "ac0baeb5-71e2-435f-aaf1-14b64e2ba700", "code": "spk", "metadata": { "createdDate": "2021-12-06T01:50:57.765+00:00", "updatedDate": "2021-12-06T01:50:57.765+00:00" }, "name": "Speaker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ac64c865-4f29-4d51-8b43-7816a5217f04', 'arr', 'Arranger', 'marcrelator', '{ "id": "ac64c865-4f29-4d51-8b43-7816a5217f04", "code": "arr", "metadata": { "createdDate": "2021-12-06T01:50:57.862+00:00", "updatedDate": "2021-12-06T01:50:57.862+00:00" }, "name": "Arranger", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('acad26a9-e288-4385-bea1-0560bb884b7a', 'bjd', 'Bookjacket designer', 'marcrelator', '{ "id": "acad26a9-e288-4385-bea1-0560bb884b7a", "code": "bjd", "metadata": { "createdDate": "2021-12-06T01:50:57.682+00:00", "updatedDate": "2021-12-06T01:50:57.682+00:00" }, "name": "Bookjacket designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ad9b7785-53a2-4bf4-8a01-572858e82941', 'asg', 'Assignee', 'marcrelator', '{ "id": "ad9b7785-53a2-4bf4-8a01-572858e82941", "code": "asg", "metadata": { "createdDate": "2021-12-06T01:50:56.740+00:00", "updatedDate": "2021-12-06T01:50:56.740+00:00" }, "name": "Assignee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ae8bc401-47da-4853-9b0b-c7c2c3ec324d', 'lil', 'Libelant', 'marcrelator', '{ "id": "ae8bc401-47da-4853-9b0b-c7c2c3ec324d", "code": "lil", "metadata": { "createdDate": "2021-12-06T01:50:57.507+00:00", "updatedDate": "2021-12-06T01:50:57.507+00:00" }, "name": "Libelant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('af09f37e-12f5-46db-a532-ccd6a8877f2d', 'tld', 'Television director', 'marcrelator', '{ "id": "af09f37e-12f5-46db-a532-ccd6a8877f2d", "code": "tld", "metadata": { "createdDate": "2021-12-06T01:50:58.004+00:00", "updatedDate": "2021-12-06T01:50:58.004+00:00" }, "name": "Television director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('af9a58fa-95df-4139-a06d-ecdab0b2317e', 'egr', 'Engraver', 'marcrelator', '{ "id": "af9a58fa-95df-4139-a06d-ecdab0b2317e", "code": "egr", "metadata": { "createdDate": "2021-12-06T01:50:57.996+00:00", "updatedDate": "2021-12-06T01:50:57.996+00:00" }, "name": "Engraver", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b02cbeb7-8ca7-4bf4-8d58-ce943b4d5ea3', 'stm', 'Stage manager', 'marcrelator', '{ "id": "b02cbeb7-8ca7-4bf4-8d58-ce943b4d5ea3", "code": "stm", "metadata": { "createdDate": "2021-12-06T01:50:56.854+00:00", "updatedDate": "2021-12-06T01:50:56.854+00:00" }, "name": "Stage manager", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b13f6a89-d2e3-4264-8418-07ad4de6a626', 'prd', 'Production personnel', 'marcrelator', '{ "id": "b13f6a89-d2e3-4264-8418-07ad4de6a626", "code": "prd", "metadata": { "createdDate": "2021-12-06T01:50:57.204+00:00", "updatedDate": "2021-12-06T01:50:57.204+00:00" }, "name": "Production personnel", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b1e95783-5308-46b2-9853-bd7015c1774b', 'edm', 'Editor of moving image work', 'marcrelator', '{ "id": "b1e95783-5308-46b2-9853-bd7015c1774b", "code": "edm", "metadata": { "createdDate": "2021-12-06T01:50:56.945+00:00", "updatedDate": "2021-12-06T01:50:56.945+00:00" }, "name": "Editor of moving image work", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b318e49c-f2ad-498c-8106-57b5544f9bb0', 'prn', 'Production company', 'marcrelator', '{ "id": "b318e49c-f2ad-498c-8106-57b5544f9bb0", "code": "prn", "metadata": { "createdDate": "2021-12-06T01:50:57.880+00:00", "updatedDate": "2021-12-06T01:50:57.880+00:00" }, "name": "Production company", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b388c02a-19dc-4948-916d-3688007b9a2c', 'rcd', 'Recordist', 'marcrelator', '{ "id": "b388c02a-19dc-4948-916d-3688007b9a2c", "code": "rcd", "metadata": { "createdDate": "2021-12-06T01:50:57.966+00:00", "updatedDate": "2021-12-06T01:50:57.966+00:00" }, "name": "Recordist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b38c4e20-9aa0-43f4-a1a0-f547e54873f7', 'red', 'Redaktor', 'marcrelator', '{ "id": "b38c4e20-9aa0-43f4-a1a0-f547e54873f7", "code": "red", "metadata": { "createdDate": "2021-12-06T01:50:57.980+00:00", "updatedDate": "2021-12-06T01:50:57.980+00:00" }, "name": "Redaktor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b47d8841-112e-43be-b992-eccb5747eb50', 'prg', 'Programmer', 'marcrelator', '{ "id": "b47d8841-112e-43be-b992-eccb5747eb50", "code": "prg", "metadata": { "createdDate": "2021-12-06T01:50:57.973+00:00", "updatedDate": "2021-12-06T01:50:57.973+00:00" }, "name": "Programmer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b7000ced-c847-4b43-8f29-c5325e6279a8', 'cov', 'Cover designer', 'marcrelator', '{ "id": "b7000ced-c847-4b43-8f29-c5325e6279a8", "code": "cov", "metadata": { "createdDate": "2021-12-06T01:50:57.560+00:00", "updatedDate": "2021-12-06T01:50:57.560+00:00" }, "name": "Cover designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b76cb226-50f9-4d34-a3d0-48b475f83c80', 'jug', 'Jurisdiction governed', 'marcrelator', '{ "id": "b76cb226-50f9-4d34-a3d0-48b475f83c80", "code": "jug", "metadata": { "createdDate": "2021-12-06T01:50:57.334+00:00", "updatedDate": "2021-12-06T01:50:57.334+00:00" }, "name": "Jurisdiction governed", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('b998a229-68e7-4a3d-8cfd-b73c10844e96', 'anm', 'Animator', 'marcrelator', '{ "id": "b998a229-68e7-4a3d-8cfd-b73c10844e96", "code": "anm", "metadata": { "createdDate": "2021-12-06T01:50:57.564+00:00", "updatedDate": "2021-12-06T01:50:57.564+00:00" }, "name": "Animator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('bd13d6d3-e604-4b80-9c5f-4d68115ba616', 'crt', 'Court reporter', 'marcrelator', '{ "id": "bd13d6d3-e604-4b80-9c5f-4d68115ba616", "code": "crt", "metadata": { "createdDate": "2021-12-06T01:50:57.410+00:00", "updatedDate": "2021-12-06T01:50:57.410+00:00" }, "name": "Court reporter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('bf1a8165-54bf-411c-a5ea-b6bbbb9c55df', 'wac', 'Writer of added commentary', 'marcrelator', '{ "id": "bf1a8165-54bf-411c-a5ea-b6bbbb9c55df", "code": "wac", "metadata": { "createdDate": "2021-12-06T01:50:57.551+00:00", "updatedDate": "2021-12-06T01:50:57.551+00:00" }, "name": "Writer of added commentary", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c04ff362-c80a-4543-88cf-fc6e49e7d201', 'csl', 'Consultant', 'marcrelator', '{ "id": "c04ff362-c80a-4543-88cf-fc6e49e7d201", "code": "csl", "metadata": { "createdDate": "2021-12-06T01:50:57.652+00:00", "updatedDate": "2021-12-06T01:50:57.652+00:00" }, "name": "Consultant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c0c46b4f-fd18-4d8a-96ac-aff91662206c', 'sgd', 'Stage director', 'marcrelator', '{ "id": "c0c46b4f-fd18-4d8a-96ac-aff91662206c", "code": "sgd", "metadata": { "createdDate": "2021-12-06T01:50:56.955+00:00", "updatedDate": "2021-12-06T01:50:56.955+00:00" }, "name": "Stage director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c5988fb2-cd21-469c-b35e-37e443c01adc', 'sad', 'Scientific advisor', 'marcrelator', '{ "id": "c5988fb2-cd21-469c-b35e-37e443c01adc", "code": "sad", "metadata": { "createdDate": "2021-12-06T01:50:57.587+00:00", "updatedDate": "2021-12-06T01:50:57.587+00:00" }, "name": "Scientific advisor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c6005151-7005-4ee7-8d6d-a6b72d25377a', 'vdg', 'Videographer', 'marcrelator', '{ "id": "c6005151-7005-4ee7-8d6d-a6b72d25377a", "code": "vdg", "metadata": { "createdDate": "2021-12-06T01:50:57.268+00:00", "updatedDate": "2021-12-06T01:50:57.268+00:00" }, "name": "Videographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c7345998-fd17-406b-bce0-e08cb7b2671f', 'cmt', 'Compositor', 'marcrelator', '{ "id": "c7345998-fd17-406b-bce0-e08cb7b2671f", "code": "cmt", "metadata": { "createdDate": "2021-12-06T01:50:57.290+00:00", "updatedDate": "2021-12-06T01:50:57.290+00:00" }, "name": "Compositor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c8050073-f62b-4606-9688-02caa98bdc60', 'crr', 'Corrector', 'marcrelator', '{ "id": "c8050073-f62b-4606-9688-02caa98bdc60", "code": "crr", "metadata": { "createdDate": "2021-12-06T01:50:57.459+00:00", "updatedDate": "2021-12-06T01:50:57.459+00:00" }, "name": "Corrector", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c86fc16d-61d8-4471-8089-76550daa04f0', 'dft', 'Defendant-appellant', 'marcrelator', '{ "id": "c86fc16d-61d8-4471-8089-76550daa04f0", "code": "dft", "metadata": { "createdDate": "2021-12-06T01:50:56.987+00:00", "updatedDate": "2021-12-06T01:50:56.987+00:00" }, "name": "Defendant-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c96df2ce-7b00-498a-bf37-3011f3ef1229', 'rpc', 'Radio producer', 'marcrelator', '{ "id": "c96df2ce-7b00-498a-bf37-3011f3ef1229", "code": "rpc", "metadata": { "createdDate": "2021-12-06T01:50:56.881+00:00", "updatedDate": "2021-12-06T01:50:56.881+00:00" }, "name": "Radio producer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c9c3bbe8-d305-48ef-ab2a-5eff941550e3', 'bkp', 'Book producer', 'marcrelator', '{ "id": "c9c3bbe8-d305-48ef-ab2a-5eff941550e3", "code": "bkp", "metadata": { "createdDate": "2021-12-06T01:50:57.547+00:00", "updatedDate": "2021-12-06T01:50:57.547+00:00" }, "name": "Book producer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('c9d28351-c862-433e-8957-c4721f30631f', 'acp', 'Art copyist', 'marcrelator', '{ "id": "c9d28351-c862-433e-8957-c4721f30631f", "code": "acp", "metadata": { "createdDate": "2021-12-06T01:50:57.089+00:00", "updatedDate": "2021-12-06T01:50:57.089+00:00" }, "name": "Art copyist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ca3b9559-f178-41e8-aa88-6b2c367025f9', 'app', 'Applicant', 'marcrelator', '{ "id": "ca3b9559-f178-41e8-aa88-6b2c367025f9", "code": "app", "metadata": { "createdDate": "2021-12-06T01:50:58.031+00:00", "updatedDate": "2021-12-06T01:50:58.031+00:00" }, "name": "Applicant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('cb8fdd3f-7193-4096-934c-3efea46b1138', 'wal', 'Writer of added lyrics', 'marcrelator', '{ "id": "cb8fdd3f-7193-4096-934c-3efea46b1138", "code": "wal", "metadata": { "createdDate": "2021-12-06T01:50:57.568+00:00", "updatedDate": "2021-12-06T01:50:57.568+00:00" }, "name": "Writer of added lyrics", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('cbceda25-1f4d-43b7-96a5-f2911026a154', 'clt', 'Collotyper', 'marcrelator', '{ "id": "cbceda25-1f4d-43b7-96a5-f2911026a154", "code": "clt", "metadata": { "createdDate": "2021-12-06T01:50:57.049+00:00", "updatedDate": "2021-12-06T01:50:57.049+00:00" }, "name": "Collotyper", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('cce475f7-ccfa-4e15-adf8-39f907788515', 'ths', 'Thesis advisor', 'marcrelator', '{ "id": "cce475f7-ccfa-4e15-adf8-39f907788515", "code": "ths", "metadata": { "createdDate": "2021-12-06T01:50:56.768+00:00", "updatedDate": "2021-12-06T01:50:56.768+00:00" }, "name": "Thesis advisor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('cd06cefa-acfe-48cb-a5a3-4c48be4a79ad', 'rpy', 'Responsible party', 'marcrelator', '{ "id": "cd06cefa-acfe-48cb-a5a3-4c48be4a79ad", "code": "rpy", "metadata": { "createdDate": "2021-12-06T01:50:57.988+00:00", "updatedDate": "2021-12-06T01:50:57.988+00:00" }, "name": "Responsible party", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ced7cdfc-a3e0-47c8-861b-3f558094b02e', 'ant', 'Bibliographic antecedent', 'marcrelator', '{ "id": "ced7cdfc-a3e0-47c8-861b-3f558094b02e", "code": "ant", "metadata": { "createdDate": "2021-12-06T01:50:57.316+00:00", "updatedDate": "2021-12-06T01:50:57.316+00:00" }, "name": "Bibliographic antecedent", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('cf04404a-d628-432b-b190-6694c5a3dc4b', 'rsr', 'Restorationist', 'marcrelator', '{ "id": "cf04404a-d628-432b-b190-6694c5a3dc4b", "code": "rsr", "metadata": { "createdDate": "2021-12-06T01:50:57.909+00:00", "updatedDate": "2021-12-06T01:50:57.909+00:00" }, "name": "Restorationist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d04782ec-b969-4eac-9428-0eb52d97c644', 'pre', 'Presenter', 'marcrelator', '{ "id": "d04782ec-b969-4eac-9428-0eb52d97c644", "code": "pre", "metadata": { "createdDate": "2021-12-06T01:50:57.750+00:00", "updatedDate": "2021-12-06T01:50:57.750+00:00" }, "name": "Presenter", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d2df2901-fac7-45e1-a9ad-7a67b70ea65b', 'mon', 'Monitor', 'marcrelator', '{ "id": "d2df2901-fac7-45e1-a9ad-7a67b70ea65b", "code": "mon", "metadata": { "createdDate": "2021-12-06T01:50:56.888+00:00", "updatedDate": "2021-12-06T01:50:56.888+00:00" }, "name": "Monitor", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d30f5556-6d79-4980-9528-c48ef60f3b31', 'plt', 'Platemaker', 'marcrelator', '{ "id": "d30f5556-6d79-4980-9528-c48ef60f3b31", "code": "plt", "metadata": { "createdDate": "2021-12-06T01:50:57.320+00:00", "updatedDate": "2021-12-06T01:50:57.320+00:00" }, "name": "Platemaker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d32885eb-b82c-4391-abb2-4582c8ee02b3', 'dpc', 'Depicted', 'marcrelator', '{ "id": "d32885eb-b82c-4391-abb2-4582c8ee02b3", "code": "dpc", "metadata": { "createdDate": "2021-12-06T01:50:56.806+00:00", "updatedDate": "2021-12-06T01:50:56.806+00:00" }, "name": "Depicted", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d517010e-908f-49d6-b1e8-8c1a5f9a7f1c', 'aft', 'Author of afterword, colophon, etc.', 'marcrelator', '{ "id": "d517010e-908f-49d6-b1e8-8c1a5f9a7f1c", "code": "aft", "metadata": { "createdDate": "2021-12-06T01:50:57.760+00:00", "updatedDate": "2021-12-06T01:50:57.760+00:00" }, "name": "Author of afterword, colophon, etc.", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d5e6972c-9e2f-4788-8dd6-10e859e20945', 'dbp', 'Distribution place', 'marcrelator', '{ "id": "d5e6972c-9e2f-4788-8dd6-10e859e20945", "code": "dbp", "metadata": { "createdDate": "2021-12-06T01:50:57.555+00:00", "updatedDate": "2021-12-06T01:50:57.555+00:00" }, "name": "Distribution place", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d669122b-c021-46f5-a911-1e9df10b6542', 'mfr', 'Manufacturer', 'marcrelator', '{ "id": "d669122b-c021-46f5-a911-1e9df10b6542", "code": "mfr", "metadata": { "createdDate": "2021-12-06T01:50:57.423+00:00", "updatedDate": "2021-12-06T01:50:57.423+00:00" }, "name": "Manufacturer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d67decd7-3dbe-4ac7-8072-ef18f5cd3e09', 'cur', 'Curator', 'marcrelator', '{ "id": "d67decd7-3dbe-4ac7-8072-ef18f5cd3e09", "code": "cur", "metadata": { "createdDate": "2021-12-06T01:50:57.626+00:00", "updatedDate": "2021-12-06T01:50:57.626+00:00" }, "name": "Curator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d6a6d28c-1bfc-46df-b2ba-6cb377a6151e', 'prm', 'Printmaker', 'marcrelator', '{ "id": "d6a6d28c-1bfc-46df-b2ba-6cb377a6151e", "code": "prm", "metadata": { "createdDate": "2021-12-06T01:50:57.617+00:00", "updatedDate": "2021-12-06T01:50:57.617+00:00" }, "name": "Printmaker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d791c3b9-993a-4203-ac81-3fb3f14793ae', 'led', 'Lead', 'marcrelator', '{ "id": "d791c3b9-993a-4203-ac81-3fb3f14793ae", "code": "led", "metadata": { "createdDate": "2021-12-06T01:50:57.621+00:00", "updatedDate": "2021-12-06T01:50:57.621+00:00" }, "name": "Lead", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('d836488a-8d0e-42ad-9091-b63fe885fe03', 'att', 'Attributed name', 'marcrelator', '{ "id": "d836488a-8d0e-42ad-9091-b63fe885fe03", "code": "att", "metadata": { "createdDate": "2021-12-06T01:50:57.664+00:00", "updatedDate": "2021-12-06T01:50:57.664+00:00" }, "name": "Attributed name", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('dd44e44e-a153-4ab6-9a7c-f3d23b6c4676', 'col', 'Collector', 'marcrelator', '{ "id": "dd44e44e-a153-4ab6-9a7c-f3d23b6c4676", "code": "col", "metadata": { "createdDate": "2021-12-06T01:50:57.198+00:00", "updatedDate": "2021-12-06T01:50:57.198+00:00" }, "name": "Collector", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('de1ea2dc-8d9d-4dfa-b86e-8ce9d8b0c2f2', 'wde', 'Wood engraver', 'marcrelator', '{ "id": "de1ea2dc-8d9d-4dfa-b86e-8ce9d8b0c2f2", "code": "wde", "metadata": { "createdDate": "2021-12-06T01:50:57.530+00:00", "updatedDate": "2021-12-06T01:50:57.530+00:00" }, "name": "Wood engraver", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('df7daf2f-7ab4-4c7b-a24d-d46695fa9072', 'orm', 'Organizer', 'marcrelator', '{ "id": "df7daf2f-7ab4-4c7b-a24d-d46695fa9072", "code": "orm", "metadata": { "createdDate": "2021-12-06T01:50:58.027+00:00", "updatedDate": "2021-12-06T01:50:58.027+00:00" }, "name": "Organizer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e038262b-25f8-471b-93ea-2afe287b00a3', 'ilu', 'Illuminator', 'marcrelator', '{ "id": "e038262b-25f8-471b-93ea-2afe287b00a3", "code": "ilu", "metadata": { "createdDate": "2021-12-06T01:50:56.922+00:00", "updatedDate": "2021-12-06T01:50:56.922+00:00" }, "name": "Illuminator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e04bea27-813b-4765-9ba1-e98e0fca7101', 'dln', 'Delineator', 'marcrelator', '{ "id": "e04bea27-813b-4765-9ba1-e98e0fca7101", "code": "dln", "metadata": { "createdDate": "2021-12-06T01:50:57.790+00:00", "updatedDate": "2021-12-06T01:50:57.790+00:00" }, "name": "Delineator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e0dc043c-0a4d-499b-a8a8-4cc9b0869cf3', 'cmm', 'Commentator', 'marcrelator', '{ "id": "e0dc043c-0a4d-499b-a8a8-4cc9b0869cf3", "code": "cmm", "metadata": { "createdDate": "2021-12-06T01:50:57.247+00:00", "updatedDate": "2021-12-06T01:50:57.247+00:00" }, "name": "Commentator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e1510ac5-a9e9-4195-b762-7cb82c5357c4', 'cst', 'Costume designer', 'marcrelator', '{ "id": "e1510ac5-a9e9-4195-b762-7cb82c5357c4", "code": "cst", "metadata": { "createdDate": "2021-12-06T01:50:57.677+00:00", "updatedDate": "2021-12-06T01:50:57.677+00:00" }, "name": "Costume designer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e1edbaae-5365-4fcb-bb6a-7aae38bbed9c', 'msd', 'Musical director', 'marcrelator', '{ "id": "e1edbaae-5365-4fcb-bb6a-7aae38bbed9c", "code": "msd", "metadata": { "createdDate": "2021-12-06T01:50:57.081+00:00", "updatedDate": "2021-12-06T01:50:57.081+00:00" }, "name": "Musical director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e2a1a9dc-4aec-4bb5-ae43-99bb0383516a', 'adi', 'Art director', 'marcrelator', '{ "id": "e2a1a9dc-4aec-4bb5-ae43-99bb0383516a", "code": "adi", "metadata": { "createdDate": "2021-12-06T01:50:57.167+00:00", "updatedDate": "2021-12-06T01:50:57.167+00:00" }, "name": "Art director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e2b5ceaf-663b-4cc0-91ba-bf036943ece8', 'prp', 'Production place', 'marcrelator', '{ "id": "e2b5ceaf-663b-4cc0-91ba-bf036943ece8", "code": "prp", "metadata": { "createdDate": "2021-12-06T01:50:57.281+00:00", "updatedDate": "2021-12-06T01:50:57.281+00:00" }, "name": "Production place", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e38a0c64-f1d3-4b03-a364-34d6b402841c', 'ppm', 'Papermaker', 'marcrelator', '{ "id": "e38a0c64-f1d3-4b03-a364-34d6b402841c", "code": "ppm", "metadata": { "createdDate": "2021-12-06T01:50:56.908+00:00", "updatedDate": "2021-12-06T01:50:56.908+00:00" }, "name": "Papermaker", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e46bdfe3-5923-4585-bca4-d9d930d41148', 'dfd', 'Defendant', 'marcrelator', '{ "id": "e46bdfe3-5923-4585-bca4-d9d930d41148", "code": "dfd", "metadata": { "createdDate": "2021-12-06T01:50:57.817+00:00", "updatedDate": "2021-12-06T01:50:57.817+00:00" }, "name": "Defendant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e4f2fd1c-ee79-4cf7-bc1a-fbaac616f804', 'len', 'Lender', 'marcrelator', '{ "id": "e4f2fd1c-ee79-4cf7-bc1a-fbaac616f804", "code": "len", "metadata": { "createdDate": "2021-12-06T01:50:58.015+00:00", "updatedDate": "2021-12-06T01:50:58.015+00:00" }, "name": "Lender", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e603ffa2-8999-4091-b10d-96248c283c04', 'lbr', 'Laboratory', 'marcrelator', '{ "id": "e603ffa2-8999-4091-b10d-96248c283c04", "code": "lbr", "metadata": { "createdDate": "2021-12-06T01:50:57.360+00:00", "updatedDate": "2021-12-06T01:50:57.360+00:00" }, "name": "Laboratory", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e79ca231-af4c-4724-8fe1-eabafd2e0bec', 'mod', 'Moderator', 'marcrelator', '{ "id": "e79ca231-af4c-4724-8fe1-eabafd2e0bec", "code": "mod", "metadata": { "createdDate": "2021-12-06T01:50:57.468+00:00", "updatedDate": "2021-12-06T01:50:57.468+00:00" }, "name": "Moderator", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e7e8fc17-7c97-4a37-8c12-f832ddca7a71', 'ive', 'Interviewee', 'marcrelator', '{ "id": "e7e8fc17-7c97-4a37-8c12-f832ddca7a71", "code": "ive", "metadata": { "createdDate": "2021-12-06T01:50:56.950+00:00", "updatedDate": "2021-12-06T01:50:56.950+00:00" }, "name": "Interviewee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e8423d78-7b08-4f81-8f34-4871d5e2b7af', 'ctt', 'Contestee-appellant', 'marcrelator', '{ "id": "e8423d78-7b08-4f81-8f34-4871d5e2b7af", "code": "ctt", "metadata": { "createdDate": "2021-12-06T01:50:57.502+00:00", "updatedDate": "2021-12-06T01:50:57.502+00:00" }, "name": "Contestee-appellant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('e8b5040d-a5c7-47c1-96ca-6313c8b9c849', 'ato', 'Autographer', 'marcrelator', '{ "id": "e8b5040d-a5c7-47c1-96ca-6313c8b9c849", "code": "ato", "metadata": { "createdDate": "2021-12-06T01:50:57.177+00:00", "updatedDate": "2021-12-06T01:50:57.177+00:00" }, "name": "Autographer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ec0959b3-becc-4abd-87b0-3e02cf2665cc', 'cli', 'Client', 'marcrelator', '{ "id": "ec0959b3-becc-4abd-87b0-3e02cf2665cc", "code": "cli", "metadata": { "createdDate": "2021-12-06T01:50:57.106+00:00", "updatedDate": "2021-12-06T01:50:57.106+00:00" }, "name": "Client", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ec56cc25-e470-46f7-a429-72f438c0513b', 'wit', 'Witness', 'marcrelator', '{ "id": "ec56cc25-e470-46f7-a429-72f438c0513b", "code": "wit", "metadata": { "createdDate": "2021-12-06T01:50:57.488+00:00", "updatedDate": "2021-12-06T01:50:57.488+00:00" }, "name": "Witness", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('ee04a129-f2e4-4fd7-8342-7a73a0700665', 'mdc', 'Metadata contact', 'marcrelator', '{ "id": "ee04a129-f2e4-4fd7-8342-7a73a0700665", "code": "mdc", "metadata": { "createdDate": "2021-12-06T01:50:57.943+00:00", "updatedDate": "2021-12-06T01:50:57.943+00:00" }, "name": "Metadata contact", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('eecb30c5-a061-4790-8fa5-cf24d0fa472b', 'ivr', 'Interviewer', 'marcrelator', '{ "id": "eecb30c5-a061-4790-8fa5-cf24d0fa472b", "code": "ivr", "metadata": { "createdDate": "2021-12-06T01:50:57.519+00:00", "updatedDate": "2021-12-06T01:50:57.519+00:00" }, "name": "Interviewer", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f0061c4b-df42-432f-9d1a-3873bb27c8e6', 'ape', 'Appellee', 'marcrelator', '{ "id": "f0061c4b-df42-432f-9d1a-3873bb27c8e6", "code": "ape", "metadata": { "createdDate": "2021-12-06T01:50:56.992+00:00", "updatedDate": "2021-12-06T01:50:56.992+00:00" }, "name": "Appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f26858bc-4468-47be-8e30-d5db4c0b1e88', 'dis', 'Dissertant', 'marcrelator', '{ "id": "f26858bc-4468-47be-8e30-d5db4c0b1e88", "code": "dis", "metadata": { "createdDate": "2021-12-06T01:50:57.613+00:00", "updatedDate": "2021-12-06T01:50:57.613+00:00" }, "name": "Dissertant", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f3aa0070-71bd-4c39-9a9b-ec2fd03ac26d', 'cte', 'Contestee-appellee', 'marcrelator', '{ "id": "f3aa0070-71bd-4c39-9a9b-ec2fd03ac26d", "code": "cte", "metadata": { "createdDate": "2021-12-06T01:50:57.669+00:00", "updatedDate": "2021-12-06T01:50:57.669+00:00" }, "name": "Contestee-appellee", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f5f9108a-9afc-4ea9-9b99-4f83dcf51204', 'fmd', 'Film director', 'marcrelator', '{ "id": "f5f9108a-9afc-4ea9-9b99-4f83dcf51204", "code": "fmd", "metadata": { "createdDate": "2021-12-06T01:50:57.400+00:00", "updatedDate": "2021-12-06T01:50:57.400+00:00" }, "name": "Film director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f6bd4f15-4715-4b0e-9258-61dac047f106', 'ins', 'Inscriber', 'marcrelator', '{ "id": "f6bd4f15-4715-4b0e-9258-61dac047f106", "code": "ins", "metadata": { "createdDate": "2021-12-06T01:50:57.060+00:00", "updatedDate": "2021-12-06T01:50:57.060+00:00" }, "name": "Inscriber", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f72a24d1-f404-4275-9350-158fe3a20b21', 'tch', 'Teacher', 'marcrelator', '{ "id": "f72a24d1-f404-4275-9350-158fe3a20b21", "code": "tch", "metadata": { "createdDate": "2021-12-06T01:50:57.515+00:00", "updatedDate": "2021-12-06T01:50:57.515+00:00" }, "name": "Teacher", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f74dfba3-ea20-471b-8c4f-5d9b7895d3b5', 'ldr', 'Laboratory director', 'marcrelator', '{ "id": "f74dfba3-ea20-471b-8c4f-5d9b7895d3b5", "code": "ldr", "metadata": { "createdDate": "2021-12-06T01:50:57.147+00:00", "updatedDate": "2021-12-06T01:50:57.147+00:00" }, "name": "Laboratory director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f90c67e8-d1fa-4fe9-b98b-cbc3f019c65f', 'bnd', 'Binder', 'marcrelator', '{ "id": "f90c67e8-d1fa-4fe9-b98b-cbc3f019c65f", "code": "bnd", "metadata": { "createdDate": "2021-12-06T01:50:57.660+00:00", "updatedDate": "2021-12-06T01:50:57.660+00:00" }, "name": "Binder", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f9395f3d-cd46-413e-9504-8756c54f38a2', 'pfr', 'Proofreader', 'marcrelator', '{ "id": "f9395f3d-cd46-413e-9504-8756c54f38a2", "code": "pfr", "metadata": { "createdDate": "2021-12-06T01:50:56.901+00:00", "updatedDate": "2021-12-06T01:50:56.901+00:00" }, "name": "Proofreader", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('f9e5b41b-8d5b-47d3-91d0-ca9004796337', 'art', 'Artist', 'marcrelator', '{ "id": "f9e5b41b-8d5b-47d3-91d0-ca9004796337", "code": "art", "metadata": { "createdDate": "2021-12-06T01:50:57.927+00:00", "updatedDate": "2021-12-06T01:50:57.927+00:00" }, "name": "Artist", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('fcfc0b86-b083-4ab8-8a75-75a66638ed2e', 'rdd', 'Radio director', 'marcrelator', '{ "id": "fcfc0b86-b083-4ab8-8a75-75a66638ed2e", "code": "rdd", "metadata": { "createdDate": "2021-12-06T01:50:57.935+00:00", "updatedDate": "2021-12-06T01:50:57.935+00:00" }, "name": "Radio director", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('fd0a47ec-58ce-43f6-8ecc-696ec17a98ab', 'pop', 'Printer of plates', 'marcrelator', '{ "id": "fd0a47ec-58ce-43f6-8ecc-696ec17a98ab", "code": "pop", "metadata": { "createdDate": "2021-12-06T01:50:57.741+00:00", "updatedDate": "2021-12-06T01:50:57.741+00:00" }, "name": "Printer of plates", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('fec4d84b-0421-4d15-b53f-d5104f39b3ca', 'res', 'Researcher', 'marcrelator', '{ "id": "fec4d84b-0421-4d15-b53f-d5104f39b3ca", "code": "res", "metadata": { "createdDate": "2021-12-06T01:50:57.182+00:00", "updatedDate": "2021-12-06T01:50:57.182+00:00" }, "name": "Researcher", "source": "marcrelator" }'); INSERT INTO inventory_contributor_types VALUES ('fec9ae68-6b55-4dd6-9637-3a694fb6a82b', 'uvp', 'University place', 'marcrelator', '{ "id": "fec9ae68-6b55-4dd6-9637-3a694fb6a82b", "code": "uvp", "metadata": { "createdDate": "2021-12-06T01:50:57.858+00:00", "updatedDate": "2021-12-06T01:50:57.858+00:00" }, "name": "University place", "source": "marcrelator" }'); -- -- TOC entry 4231 (class 0 OID 88215520) -- Dependencies: 476 -- Data for Name: inventory_electronic_access_relationships; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_electronic_access_relationships VALUES ('3b430592-2e09-4b48-9a0c-0636d66b9fb3', 'Version of resource', 'folio', '{ "id": "3b430592-2e09-4b48-9a0c-0636d66b9fb3", "metadata": { "createdDate": "2021-12-06T01:50:58.989+00:00", "updatedDate": "2021-12-06T01:50:58.989+00:00" }, "name": "Version of resource", "source": "folio" }'); INSERT INTO inventory_electronic_access_relationships VALUES ('5bfe1b7b-f151-4501-8cfa-23b321d5cd1e', 'Related resource', 'folio', '{ "id": "5bfe1b7b-f151-4501-8cfa-23b321d5cd1e", "metadata": { "createdDate": "2021-12-06T01:50:58.982+00:00", "updatedDate": "2021-12-06T01:50:58.982+00:00" }, "name": "Related resource", "source": "folio" }'); INSERT INTO inventory_electronic_access_relationships VALUES ('ef03d582-219c-4221-8635-bc92f1107021', 'No display constant generated', 'folio', '{ "id": "ef03d582-219c-4221-8635-bc92f1107021", "metadata": { "createdDate": "2021-12-06T01:50:58.993+00:00", "updatedDate": "2021-12-06T01:50:58.993+00:00" }, "name": "No display constant generated", "source": "folio" }'); INSERT INTO inventory_electronic_access_relationships VALUES ('f50c90c9-bae0-4add-9cd0-db9092dbc9dd', 'No information provided', 'folio', '{ "id": "f50c90c9-bae0-4add-9cd0-db9092dbc9dd", "metadata": { "createdDate": "2021-12-06T01:50:58.986+00:00", "updatedDate": "2021-12-06T01:50:58.986+00:00" }, "name": "No information provided", "source": "folio" }'); INSERT INTO inventory_electronic_access_relationships VALUES ('f5d0068e-6272-458e-8a81-b85e7b9a14aa', 'Resource', 'folio', '{ "id": "f5d0068e-6272-458e-8a81-b85e7b9a14aa", "metadata": { "createdDate": "2021-12-06T01:50:58.976+00:00", "updatedDate": "2021-12-06T01:50:58.976+00:00" }, "name": "Resource", "source": "folio" }'); -- -- TOC entry 4172 (class 0 OID 88214423) -- Dependencies: 417 -- Data for Name: inventory_holdings; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_holdings VALUES ('0c45bb50-7c9b-48b0-86eb-178a494e25fe', 1, 'Purchase', 'K1 .M44', NULL, NULL, '1', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000002', NULL, '69640328-788e-43fc-9c3c-af39e243f3b7', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'Not currently received', 'Permanently retained.', NULL, NULL, '{ "id": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "_version": 1, "acquisitionMethod": "Purchase", "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "K1 .M44", "copyNumber": "1", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [ { "materialsSpecification": "1984-", "relationshipId": "3b430592-2e09-4b48-9a0c-0636d66b9fb3", "uri": "http://www.ebscohost.com" }, { "materialsSpecification": "1984-", "publicNote": "Most recent 4 years not available.", "relationshipId": "3b430592-2e09-4b48-9a0c-0636d66b9fb3", "uri": "http://www.jstor.com" } ], "formerIds": [ "ABW4508", "442882" ], "holdingsItems": [], "holdingsStatements": [ { "statement": "v.70-84 (1984-1998)" }, { "statement": "v.85:no. 1-11 (1999:Jan.-Nov.)" }, { "statement": "v.87:no.1-9 (2001:Jan.-Sept.)" }, { "statement": "v.89:no.2-12 (2003:Feb.-Dec.)" }, { "statement": "v.90-95 (2004-2009)" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [ { "statement": "no.1-23 " } ], "hrid": "hold000000000002", "instanceId": "69640328-788e-43fc-9c3c-af39e243f3b7", "metadata": { "createdDate": "2021-12-06T01:51:00.540+00:00", "updatedDate": "2021-12-06T01:51:00.540+00:00" }, "notes": [ { "holdingsNoteTypeId": "b160f13a-ddba-4053-b9c4-60ec5ea45d56", "note": " Subscription cancelled per Evans Current Periodicals Selector Review. acq", "staffOnly": true }, { "holdingsNoteTypeId": "b160f13a-ddba-4053-b9c4-60ec5ea45d56", "note": "Asked Ebsco to check with publisher and ask what years were paid since we are missing (2001:Oct.-Dec.), (All of 2002), & (2003:Jan.-Feb.). 20030305. evaldez", "staffOnly": false }, { "holdingsNoteTypeId": "b160f13a-ddba-4053-b9c4-60ec5ea45d56", "note": "Backorder:v.87(2001:Oct.-Dec)-v.88(2002). eluza", "staffOnly": false }, { "holdingsNoteTypeId": "b160f13a-ddba-4053-b9c4-60ec5ea45d56", "note": "WITH 2010 TREAT ISSUE S AS DISCARDS. dgill", "staffOnly": false } ], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "receiptStatus": "Not currently received", "retentionPolicy": "Permanently retained.", "statisticalCodeIds": [ "775b6ad4-9c35-4d29-bf78-8775a9b42226" ] }'); INSERT INTO inventory_holdings VALUES ('133a7916-f05e-4df4-8f7f-09eb2a7076d1', 1, NULL, 'R11.A38', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000003', NULL, '30fcc8e7-a019-43f4-b642-2edc389f4501', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, NULL, '{ "id": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "R11.A38", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "v1-128, July 1946-December 2016" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000003", "instanceId": "30fcc8e7-a019-43f4-b642-2edc389f4501", "metadata": { "createdDate": "2021-12-06T01:51:00.435+00:00", "updatedDate": "2021-12-06T01:51:00.435+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('13767c78-f8d0-425e-801d-cc5bd475856a', 1, NULL, 'DE3', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '03c9c400-b9e3-4a07-ac0e-05ab470233ed', 'bwho000000001', NULL, 'ce9dd893-c812-49d5-8973-d55d018894c4', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, 'f32d531e-df79-46b3-8932-cdd35f7a2264', '{ "id": "13767c78-f8d0-425e-801d-cc5bd475856a", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "DE3", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "holdingsTypeId": "03c9c400-b9e3-4a07-ac0e-05ab470233ed", "hrid": "bwho000000001", "instanceId": "ce9dd893-c812-49d5-8973-d55d018894c4", "metadata": { "createdDate": "2021-12-06T01:51:01.213+00:00", "updatedDate": "2021-12-06T01:51:01.213+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "sourceId": "f32d531e-df79-46b3-8932-cdd35f7a2264", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('247f1832-88be-4a84-9638-605ffde308b3', 1, NULL, '1958 A 8050', 'A', '6caca63e-5651-4db6-9247-3205156e9699', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '0c422f92-0f4d-4d32-8cbe-390ebc33a3e5', 'BW-2', NULL, '85010f04-b914-4ac7-ba30-be2b52f79708', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, 'f32d531e-df79-46b3-8932-cdd35f7a2264', '{ "id": "247f1832-88be-4a84-9638-605ffde308b3", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "1958 A 8050", "callNumberPrefix": "A", "callNumberTypeId": "6caca63e-5651-4db6-9247-3205156e9699", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "holdingsTypeId": "0c422f92-0f4d-4d32-8cbe-390ebc33a3e5", "hrid": "BW-2", "instanceId": "85010f04-b914-4ac7-ba30-be2b52f79708", "metadata": { "createdDate": "2021-12-06T01:51:01.186+00:00", "updatedDate": "2021-12-06T01:51:01.186+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "sourceId": "f32d531e-df79-46b3-8932-cdd35f7a2264", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('55f48dc6-efa7-4cfe-bc7c-4786efe493e3', 1, NULL, NULL, NULL, NULL, NULL, 'f34d27c6-a8eb-461b-acd6-5dea81771e70', NULL, 'hold000000000012', NULL, 'bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0', 'f34d27c6-a8eb-461b-acd6-5dea81771e70', NULL, NULL, NULL, NULL, '{ "id": "55f48dc6-efa7-4cfe-bc7c-4786efe493e3", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "effectiveLocationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000012", "instanceId": "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0", "metadata": { "createdDate": "2021-12-06T01:51:00.555+00:00", "updatedDate": "2021-12-06T01:51:00.555+00:00" }, "notes": [], "permanentLocationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('65032151-39a5-4cef-8810-5350eb316300', 1, NULL, 'MCN FICTION', NULL, NULL, NULL, 'b241764c-1466-4e1d-a028-1a3684a5da87', NULL, 'hold000000000006', NULL, 'f31a36de-fcf8-44f9-87ef-a55d06ad21ae', 'b241764c-1466-4e1d-a028-1a3684a5da87', NULL, NULL, NULL, NULL, '{ "id": "65032151-39a5-4cef-8810-5350eb316300", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "MCN FICTION", "effectiveLocationId": "b241764c-1466-4e1d-a028-1a3684a5da87", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "Line 1b" }, { "statement": "Line 2b" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000006", "instanceId": "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "metadata": { "createdDate": "2021-12-06T01:51:00.453+00:00", "updatedDate": "2021-12-06T01:51:00.453+00:00" }, "notes": [], "permanentLocationId": "b241764c-1466-4e1d-a028-1a3684a5da87", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 1, NULL, 'PR6056.I4588 B749 2016', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000004', NULL, '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, NULL, '{ "id": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "PR6056.I4588 B749 2016", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000004", "instanceId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "metadata": { "createdDate": "2021-12-06T01:51:00.494+00:00", "updatedDate": "2021-12-06T01:51:00.494+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('67cd0046-e4f1-4e4f-9024-adf0b0039d09', 1, NULL, 'D15.H63 A3 2002', NULL, NULL, NULL, 'f34d27c6-a8eb-461b-acd6-5dea81771e70', NULL, 'hold000000000007', NULL, 'a89eccf0-57a6-495e-898d-32b9b2210f2f', 'f34d27c6-a8eb-461b-acd6-5dea81771e70', NULL, NULL, NULL, NULL, '{ "id": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "D15.H63 A3 2002", "effectiveLocationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "Line 1b" }, { "statement": "Line 2b" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000007", "instanceId": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "metadata": { "createdDate": "2021-12-06T01:51:00.369+00:00", "updatedDate": "2021-12-06T01:51:00.369+00:00" }, "notes": [], "permanentLocationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('68872d8a-bf16-420b-829f-206da38f6c10', 1, NULL, 'some-callnumber', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000008', NULL, '6506b79b-7702-48b2-9774-a1c538fdd34e', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, NULL, '{ "id": "68872d8a-bf16-420b-829f-206da38f6c10", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "some-callnumber", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "Line 1b" }, { "statement": "Line 2b" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000008", "instanceId": "6506b79b-7702-48b2-9774-a1c538fdd34e", "metadata": { "createdDate": "2021-12-06T01:51:00.511+00:00", "updatedDate": "2021-12-06T01:51:00.511+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('704ea4ec-456c-4740-852b-0814d59f7d21', 1, NULL, '1958 A 8050', 'A', '6caca63e-5651-4db6-9247-3205156e9699', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '0c422f92-0f4d-4d32-8cbe-390ebc33a3e5', 'BW-3', NULL, 'cd3288a4-898c-4347-a003-2d810ef70f03', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, 'f32d531e-df79-46b3-8932-cdd35f7a2264', '{ "id": "704ea4ec-456c-4740-852b-0814d59f7d21", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "1958 A 8050", "callNumberPrefix": "A", "callNumberTypeId": "6caca63e-5651-4db6-9247-3205156e9699", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "holdingsTypeId": "0c422f92-0f4d-4d32-8cbe-390ebc33a3e5", "hrid": "BW-3", "instanceId": "cd3288a4-898c-4347-a003-2d810ef70f03", "metadata": { "createdDate": "2021-12-06T01:51:01.171+00:00", "updatedDate": "2021-12-06T01:51:01.171+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "sourceId": "f32d531e-df79-46b3-8932-cdd35f7a2264", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('9e8dc8ce-68f3-4e75-8479-d548ce521157', 1, NULL, '1958 A 8050', 'A', '6caca63e-5651-4db6-9247-3205156e9699', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '0c422f92-0f4d-4d32-8cbe-390ebc33a3e5', 'BW-1', NULL, 'ce9dd893-c812-49d5-8973-d55d018894c4', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, 'f32d531e-df79-46b3-8932-cdd35f7a2264', '{ "id": "9e8dc8ce-68f3-4e75-8479-d548ce521157", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "1958 A 8050", "callNumberPrefix": "A", "callNumberTypeId": "6caca63e-5651-4db6-9247-3205156e9699", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "holdingsTypeId": "0c422f92-0f4d-4d32-8cbe-390ebc33a3e5", "hrid": "BW-1", "instanceId": "ce9dd893-c812-49d5-8973-d55d018894c4", "metadata": { "createdDate": "2021-12-06T01:51:01.198+00:00", "updatedDate": "2021-12-06T01:51:01.198+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "sourceId": "f32d531e-df79-46b3-8932-cdd35f7a2264", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('c4a15834-0184-4a6f-9c0c-0ca5bad8286d', 1, NULL, 'K1 .M44', NULL, NULL, NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', NULL, 'hold000000000001', NULL, '69640328-788e-43fc-9c3c-af39e243f3b7', '53cf956f-c1df-410b-8bea-27f712cca7c0', NULL, NULL, NULL, NULL, '{ "id": "c4a15834-0184-4a6f-9c0c-0ca5bad8286d", "_version": 1, "administrativeNotes": [ "cataloging note" ], "bareHoldingsItems": [], "callNumber": "K1 .M44", "effectiveLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "electronicAccess": [ { "materialsSpecification": "1.2012 -", "publicNote": "via ProQuest, the last 12 months are not available due to an embargo", "relationshipId": "f5d0068e-6272-458e-8a81-b85e7b9a14aa", "uri": "https://search.proquest.com/publication/1396348" }, { "materialsSpecification": "1.2012 -", "publicNote": "via Emerald", "relationshipId": "f5d0068e-6272-458e-8a81-b85e7b9a14aa", "uri": "https://www.emeraldinsight.com/loi/jepp" }, { "materialsSpecification": "1.2012 - 5.2016", "publicNote": "via Emerald, national license", "relationshipId": "f5d0068e-6272-458e-8a81-b85e7b9a14aa", "uri": "https://www.emeraldinsight.com/journal/jepp" } ], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "1.2012 -" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000001", "instanceId": "69640328-788e-43fc-9c3c-af39e243f3b7", "metadata": { "createdDate": "2021-12-06T01:51:00.526+00:00", "updatedDate": "2021-12-06T01:51:00.526+00:00" }, "notes": [], "permanentLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19', 1, NULL, 'TK5105.88815 . A58 2004 FT MEADE', NULL, '512173a7-bd09-490e-b773-17d83f2b63fe', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '03c9c400-b9e3-4a07-ac0e-05ab470233ed', 'hold000000000009', '46970b40-918e-47a4-a45d-b1677a2d3d46', '5bf370e0-8cca-4d9c-82e4-5170ab2a0a39', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, ' TK5105.88815', NULL, '{ "id": "e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "TK5105.88815 . A58 2004 FT MEADE", "callNumberTypeId": "512173a7-bd09-490e-b773-17d83f2b63fe", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "holdingsTypeId": "03c9c400-b9e3-4a07-ac0e-05ab470233ed", "hrid": "hold000000000009", "illPolicyId": "46970b40-918e-47a4-a45d-b1677a2d3d46", "instanceId": "5bf370e0-8cca-4d9c-82e4-5170ab2a0a39", "metadata": { "createdDate": "2021-12-06T01:51:00.420+00:00", "updatedDate": "2021-12-06T01:51:00.420+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "shelvingTitle": " TK5105.88815", "statisticalCodeIds": [ "b5968c9e-cddc-4576-99e3-8e60aed8b0dd" ] }'); INSERT INTO inventory_holdings VALUES ('e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 1, NULL, 'some-callnumber', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000010', NULL, 'cf23adf0-61ba-4887-bf82-956c4aae2260', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, NULL, '{ "id": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "some-callnumber", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "Line 1b" }, { "statement": "Line 2b" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000010", "instanceId": "cf23adf0-61ba-4887-bf82-956c4aae2260", "metadata": { "createdDate": "2021-12-06T01:51:00.480+00:00", "updatedDate": "2021-12-06T01:51:00.480+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('e9285a1c-1dfc-4380-868c-e74073003f43', 1, NULL, 'M1366.S67 T73 2017', NULL, NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, 'hold000000000011', NULL, 'e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, NULL, NULL, '{ "id": "e9285a1c-1dfc-4380-868c-e74073003f43", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "M1366.S67 T73 2017", "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [ { "statement": "Line 1b" }, { "statement": "Line 2b" } ], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000011", "instanceId": "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "metadata": { "createdDate": "2021-12-06T01:51:00.404+00:00", "updatedDate": "2021-12-06T01:51:00.404+00:00" }, "notes": [], "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [] }'); INSERT INTO inventory_holdings VALUES ('fb7b70f1-b898-4924-a991-0e4b6312bb5f', 1, NULL, 'PR6056.I4588 B749 2016', NULL, NULL, NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', NULL, 'hold000000000005', NULL, '7fbd5d84-62d1-44c6-9c45-6cb173998bbd', '53cf956f-c1df-410b-8bea-27f712cca7c0', NULL, NULL, NULL, NULL, '{ "id": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "_version": 1, "administrativeNotes": [], "bareHoldingsItems": [], "callNumber": "PR6056.I4588 B749 2016", "effectiveLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "electronicAccess": [], "formerIds": [], "holdingsItems": [], "holdingsStatements": [], "holdingsStatementsForIndexes": [], "holdingsStatementsForSupplements": [], "hrid": "hold000000000005", "instanceId": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "metadata": { "createdDate": "2021-12-06T01:51:00.467+00:00", "updatedDate": "2021-12-06T01:51:00.467+00:00" }, "notes": [], "permanentLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "statisticalCodeIds": [] }'); -- -- TOC entry 4232 (class 0 OID 88215536) -- Dependencies: 477 -- Data for Name: inventory_holdings_note_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_holdings_note_types VALUES ('6a41b714-8574-4084-8d64-a9373c3fbb59', 'Reproduction', 'folio', '{ "id": "6a41b714-8574-4084-8d64-a9373c3fbb59", "metadata": { "createdDate": "2021-12-06T01:50:59.386+00:00", "updatedDate": "2021-12-06T01:50:59.386+00:00" }, "name": "Reproduction", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('88914775-f677-4759-b57b-1a33b90b24e0', 'Electronic bookplate', 'folio', '{ "id": "88914775-f677-4759-b57b-1a33b90b24e0", "metadata": { "createdDate": "2021-12-06T01:50:59.391+00:00", "updatedDate": "2021-12-06T01:50:59.391+00:00" }, "name": "Electronic bookplate", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('b160f13a-ddba-4053-b9c4-60ec5ea45d56', 'Note', 'folio', '{ "id": "b160f13a-ddba-4053-b9c4-60ec5ea45d56", "metadata": { "createdDate": "2021-12-06T01:50:59.402+00:00", "updatedDate": "2021-12-06T01:50:59.402+00:00" }, "name": "Note", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('c4407cc7-d79f-4609-95bd-1cefb2e2b5c5', 'Copy note', 'folio', '{ "id": "c4407cc7-d79f-4609-95bd-1cefb2e2b5c5", "metadata": { "createdDate": "2021-12-06T01:50:59.413+00:00", "updatedDate": "2021-12-06T01:50:59.413+00:00" }, "name": "Copy note", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('d6510242-5ec3-42ed-b593-3585d2e48fd6', 'Action note', 'folio', '{ "id": "d6510242-5ec3-42ed-b593-3585d2e48fd6", "metadata": { "createdDate": "2021-12-06T01:50:59.399+00:00", "updatedDate": "2021-12-06T01:50:59.399+00:00" }, "name": "Action note", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('db9b4787-95f0-4e78-becf-26748ce6bdeb', 'Provenance', 'folio', '{ "id": "db9b4787-95f0-4e78-becf-26748ce6bdeb", "metadata": { "createdDate": "2021-12-06T01:50:59.410+00:00", "updatedDate": "2021-12-06T01:50:59.410+00:00" }, "name": "Provenance", "source": "folio" }'); INSERT INTO inventory_holdings_note_types VALUES ('e19eabab-a85c-4aef-a7b2-33bd9acef24e', 'Binding', 'folio', '{ "id": "e19eabab-a85c-4aef-a7b2-33bd9acef24e", "metadata": { "createdDate": "2021-12-06T01:50:59.395+00:00", "updatedDate": "2021-12-06T01:50:59.395+00:00" }, "name": "Binding", "source": "folio" }'); -- -- TOC entry 4278 (class 0 OID 88216352) -- Dependencies: 523 -- Data for Name: inventory_holdings_sources; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_holdings_sources VALUES ('036ee84a-6afd-4c3c-9ad3-4a12ab875f59', 'MARC', 'folio', '{ "id": "036ee84a-6afd-4c3c-9ad3-4a12ab875f59", "metadata": { "createdDate": "2021-12-06T01:50:59.479+00:00", "updatedDate": "2021-12-06T01:50:59.479+00:00" }, "name": "MARC", "source": "folio" }'); INSERT INTO inventory_holdings_sources VALUES ('f32d531e-df79-46b3-8932-cdd35f7a2264', 'FOLIO', 'folio', '{ "id": "f32d531e-df79-46b3-8932-cdd35f7a2264", "metadata": { "createdDate": "2021-12-06T01:50:59.474+00:00", "updatedDate": "2021-12-06T01:50:59.474+00:00" }, "name": "FOLIO", "source": "folio" }'); -- -- TOC entry 4233 (class 0 OID 88215552) -- Dependencies: 478 -- Data for Name: inventory_holdings_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_holdings_types VALUES ('03c9c400-b9e3-4a07-ac0e-05ab470233ed', 'Monograph', 'folio', '{ "id": "03c9c400-b9e3-4a07-ac0e-05ab470233ed", "metadata": { "createdDate": "2021-12-06T01:50:59.065+00:00", "updatedDate": "2021-12-06T01:50:59.065+00:00" }, "name": "Monograph", "source": "folio" }'); INSERT INTO inventory_holdings_types VALUES ('0c422f92-0f4d-4d32-8cbe-390ebc33a3e5', 'Physical', 'folio', '{ "id": "0c422f92-0f4d-4d32-8cbe-390ebc33a3e5", "metadata": { "createdDate": "2021-12-06T01:50:59.061+00:00", "updatedDate": "2021-12-06T01:50:59.061+00:00" }, "name": "Physical", "source": "folio" }'); INSERT INTO inventory_holdings_types VALUES ('996f93e2-5b5e-4cf2-9168-33ced1f95eed', 'Electronic', 'folio', '{ "id": "996f93e2-5b5e-4cf2-9168-33ced1f95eed", "metadata": { "createdDate": "2021-12-06T01:50:59.055+00:00", "updatedDate": "2021-12-06T01:50:59.055+00:00" }, "name": "Electronic", "source": "folio" }'); INSERT INTO inventory_holdings_types VALUES ('dc35d0ae-e877-488b-8e97-6e41444e6d0a', 'Multi-part monograph', 'folio', '{ "id": "dc35d0ae-e877-488b-8e97-6e41444e6d0a", "metadata": { "createdDate": "2021-12-06T01:50:59.069+00:00", "updatedDate": "2021-12-06T01:50:59.069+00:00" }, "name": "Multi-part monograph", "source": "folio" }'); INSERT INTO inventory_holdings_types VALUES ('e6da6c98-6dd0-41bc-8b4b-cfd4bbd9c3ae', 'Serial', 'folio', '{ "id": "e6da6c98-6dd0-41bc-8b4b-cfd4bbd9c3ae", "metadata": { "createdDate": "2021-12-06T01:50:59.047+00:00", "updatedDate": "2021-12-06T01:50:59.047+00:00" }, "name": "Serial", "source": "folio" }'); -- -- TOC entry 4234 (class 0 OID 88215568) -- Dependencies: 479 -- Data for Name: inventory_identifier_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_identifier_types VALUES ('1795ea23-6856-48a5-a772-f356e16a8a6c', 'UPC', 'folio', '{ "id": "1795ea23-6856-48a5-a772-f356e16a8a6c", "metadata": { "createdDate": "2021-12-06T01:50:56.508+00:00", "updatedDate": "2021-12-06T01:50:56.508+00:00" }, "name": "UPC", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('216b156b-215e-4839-a53e-ade35cb5702a', 'Handle', 'folio', '{ "id": "216b156b-215e-4839-a53e-ade35cb5702a", "metadata": { "createdDate": "2021-12-06T01:50:56.609+00:00", "updatedDate": "2021-12-06T01:50:56.609+00:00" }, "name": "Handle", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('27fd35a6-b8f6-41f2-aa0e-9c663ceb250c', 'Invalid ISSN', 'folio', '{ "id": "27fd35a6-b8f6-41f2-aa0e-9c663ceb250c", "metadata": { "createdDate": "2021-12-06T01:50:56.551+00:00", "updatedDate": "2021-12-06T01:50:56.551+00:00" }, "name": "Invalid ISSN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('2e8b3b6c-0e7d-4e48-bca2-b0b23b376af5', 'Other standard identifier', 'folio', '{ "id": "2e8b3b6c-0e7d-4e48-bca2-b0b23b376af5", "metadata": { "createdDate": "2021-12-06T01:50:56.579+00:00", "updatedDate": "2021-12-06T01:50:56.579+00:00" }, "name": "Other standard identifier", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('3187432f-9434-40a8-8782-35a111a1491e', 'BNB', 'folio', '{ "id": "3187432f-9434-40a8-8782-35a111a1491e", "metadata": { "createdDate": "2021-12-06T01:50:56.572+00:00", "updatedDate": "2021-12-06T01:50:56.572+00:00" }, "name": "BNB", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('351ebc1c-3aae-4825-8765-c6d50dbf011f', 'GPO item number', 'folio', '{ "id": "351ebc1c-3aae-4825-8765-c6d50dbf011f", "metadata": { "createdDate": "2021-12-06T01:50:56.541+00:00", "updatedDate": "2021-12-06T01:50:56.541+00:00" }, "name": "GPO item number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('37b65e79-0392-450d-adc6-e2a1f47de452', 'Report number', 'folio', '{ "id": "37b65e79-0392-450d-adc6-e2a1f47de452", "metadata": { "createdDate": "2021-12-06T01:50:56.503+00:00", "updatedDate": "2021-12-06T01:50:56.503+00:00" }, "name": "Report number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('39554f54-d0bb-4f0a-89a4-e422f6136316', 'DOI', 'folio', '{ "id": "39554f54-d0bb-4f0a-89a4-e422f6136316", "metadata": { "createdDate": "2021-12-06T01:50:56.587+00:00", "updatedDate": "2021-12-06T01:50:56.587+00:00" }, "name": "DOI", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('3fbacad6-0240-4823-bce8-bb122cfdf229', 'StEdNL', 'folio', '{ "id": "3fbacad6-0240-4823-bce8-bb122cfdf229", "metadata": { "createdDate": "2021-12-06T01:50:56.678+00:00", "updatedDate": "2021-12-06T01:50:56.678+00:00" }, "name": "StEdNL", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('439bfbae-75bc-4f74-9fc7-b2a2d47ce3ef', 'OCLC', 'folio', '{ "id": "439bfbae-75bc-4f74-9fc7-b2a2d47ce3ef", "metadata": { "createdDate": "2021-12-06T01:50:56.594+00:00", "updatedDate": "2021-12-06T01:50:56.594+00:00" }, "name": "OCLC", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('4f07ea37-6c7f-4836-add2-14249e628ed1', 'Invalid ISMN', 'folio', '{ "id": "4f07ea37-6c7f-4836-add2-14249e628ed1", "metadata": { "createdDate": "2021-12-06T01:50:56.647+00:00", "updatedDate": "2021-12-06T01:50:56.647+00:00" }, "name": "Invalid ISMN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('5069054d-bc3a-4212-a4e8-e2013a02386f', 'Cancelled GPO item number', 'folio', '{ "id": "5069054d-bc3a-4212-a4e8-e2013a02386f", "metadata": { "createdDate": "2021-12-06T01:50:56.482+00:00", "updatedDate": "2021-12-06T01:50:56.482+00:00" }, "name": "Cancelled GPO item number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('5130aed5-1095-4fb6-8f6f-caa3d6cc7aae', 'Local identifier', 'folio', '{ "id": "5130aed5-1095-4fb6-8f6f-caa3d6cc7aae", "metadata": { "createdDate": "2021-12-06T01:50:56.531+00:00", "updatedDate": "2021-12-06T01:50:56.531+00:00" }, "name": "Local identifier", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('5860f255-a27f-4916-a830-262aa900a6b9', 'Linking ISSN', 'folio', '{ "id": "5860f255-a27f-4916-a830-262aa900a6b9", "metadata": { "createdDate": "2021-12-06T01:50:56.617+00:00", "updatedDate": "2021-12-06T01:50:56.617+00:00" }, "name": "Linking ISSN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('593b78cb-32f3-44d1-ba8c-63fd5e6989e6', 'CODEN', 'folio', '{ "id": "593b78cb-32f3-44d1-ba8c-63fd5e6989e6", "metadata": { "createdDate": "2021-12-06T01:50:56.560+00:00", "updatedDate": "2021-12-06T01:50:56.560+00:00" }, "name": "CODEN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('5d164f4b-0b15-4e42-ae75-cfcf85318ad9', 'Control number', 'folio', '{ "id": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "metadata": { "createdDate": "2021-12-06T01:50:56.625+00:00", "updatedDate": "2021-12-06T01:50:56.625+00:00" }, "name": "Control number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('650ef996-35e3-48ec-bf3a-a0d078a0ca37', 'UkMac', 'folio', '{ "id": "650ef996-35e3-48ec-bf3a-a0d078a0ca37", "metadata": { "createdDate": "2021-12-06T01:50:56.495+00:00", "updatedDate": "2021-12-06T01:50:56.495+00:00" }, "name": "UkMac", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('7e591197-f335-4afb-bc6d-a6d76ca3bace', 'System control number', 'folio', '{ "id": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "metadata": { "createdDate": "2021-12-06T01:50:56.638+00:00", "updatedDate": "2021-12-06T01:50:56.638+00:00" }, "name": "System control number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('7f907515-a1bf-4513-8a38-92e1a07c539d', 'ASIN', 'folio', '{ "id": "7f907515-a1bf-4513-8a38-92e1a07c539d", "metadata": { "createdDate": "2021-12-06T01:50:56.653+00:00", "updatedDate": "2021-12-06T01:50:56.653+00:00" }, "name": "ASIN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('8261054f-be78-422d-bd51-4ed9f33c3422', 'ISBN', 'folio', '{ "id": "8261054f-be78-422d-bd51-4ed9f33c3422", "metadata": { "createdDate": "2021-12-06T01:50:56.684+00:00", "updatedDate": "2021-12-06T01:50:56.684+00:00" }, "name": "ISBN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('8e3dd25e-db82-4b06-8311-90d41998c109', 'Standard technical report number', 'folio', '{ "id": "8e3dd25e-db82-4b06-8311-90d41998c109", "metadata": { "createdDate": "2021-12-06T01:50:56.602+00:00", "updatedDate": "2021-12-06T01:50:56.602+00:00" }, "name": "Standard technical report number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('913300b2-03ed-469a-8179-c1092c991227', 'ISSN', 'folio', '{ "id": "913300b2-03ed-469a-8179-c1092c991227", "metadata": { "createdDate": "2021-12-06T01:50:56.521+00:00", "updatedDate": "2021-12-06T01:50:56.521+00:00" }, "name": "ISSN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('b3ea81fb-3324-4c64-9efc-7c0c93d5943c', 'Invalid UPC', 'folio', '{ "id": "b3ea81fb-3324-4c64-9efc-7c0c93d5943c", "metadata": { "createdDate": "2021-12-06T01:50:56.513+00:00", "updatedDate": "2021-12-06T01:50:56.513+00:00" }, "name": "Invalid UPC", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('b5d8cdc4-9441-487c-90cf-0c7ec97728eb', 'Publisher or distributor number', 'folio', '{ "id": "b5d8cdc4-9441-487c-90cf-0c7ec97728eb", "metadata": { "createdDate": "2021-12-06T01:50:56.632+00:00", "updatedDate": "2021-12-06T01:50:56.632+00:00" }, "name": "Publisher or distributor number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('c858e4f2-2b6b-4385-842b-60732ee14abb', 'LCCN', 'folio', '{ "id": "c858e4f2-2b6b-4385-842b-60732ee14abb", "metadata": { "createdDate": "2021-12-06T01:50:56.666+00:00", "updatedDate": "2021-12-06T01:50:56.666+00:00" }, "name": "LCCN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('eb7b2717-f149-4fec-81a3-deefb8f5ee6b', 'URN', 'folio', '{ "id": "eb7b2717-f149-4fec-81a3-deefb8f5ee6b", "metadata": { "createdDate": "2021-12-06T01:50:56.659+00:00", "updatedDate": "2021-12-06T01:50:56.659+00:00" }, "name": "URN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('ebfd00b6-61d3-4d87-a6d8-810c941176d5', 'ISMN', 'folio', '{ "id": "ebfd00b6-61d3-4d87-a6d8-810c941176d5", "metadata": { "createdDate": "2021-12-06T01:50:56.670+00:00", "updatedDate": "2021-12-06T01:50:56.670+00:00" }, "name": "ISMN", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('fc4e3f2a-887a-46e5-8057-aeeb271a4e56', 'Cancelled system control number', 'folio', '{ "id": "fc4e3f2a-887a-46e5-8057-aeeb271a4e56", "metadata": { "createdDate": "2021-12-06T01:50:56.564+00:00", "updatedDate": "2021-12-06T01:50:56.564+00:00" }, "name": "Cancelled system control number", "source": "folio" }'); INSERT INTO inventory_identifier_types VALUES ('fcca2643-406a-482a-b760-7a7f8aec640e', 'Invalid ISBN', 'folio', '{ "id": "fcca2643-406a-482a-b760-7a7f8aec640e", "metadata": { "createdDate": "2021-12-06T01:50:56.644+00:00", "updatedDate": "2021-12-06T01:50:56.644+00:00" }, "name": "Invalid ISBN", "source": "folio" }'); -- -- TOC entry 4235 (class 0 OID 88215584) -- Dependencies: 480 -- Data for Name: inventory_ill_policies; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_ill_policies VALUES ('2a572e7b-dfe5-4dee-8a62-b98d26a802e6', 'Will reproduce', 'folio', '{ "id": "2a572e7b-dfe5-4dee-8a62-b98d26a802e6", "metadata": { "createdDate": "2021-12-06T01:50:59.029+00:00", "updatedDate": "2021-12-06T01:50:59.029+00:00" }, "name": "Will reproduce", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('2b870182-a23d-48e8-917d-9421e5c3ce13', 'Will lend hard copy only', 'folio', '{ "id": "2b870182-a23d-48e8-917d-9421e5c3ce13", "metadata": { "createdDate": "2021-12-06T01:50:59.021+00:00", "updatedDate": "2021-12-06T01:50:59.021+00:00" }, "name": "Will lend hard copy only", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('37fc2702-7ec9-482a-a4e3-5ed9a122ece1', 'Unknown lending policy', 'folio', '{ "id": "37fc2702-7ec9-482a-a4e3-5ed9a122ece1", "metadata": { "createdDate": "2021-12-06T01:50:59.017+00:00", "updatedDate": "2021-12-06T01:50:59.017+00:00" }, "name": "Unknown lending policy", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('46970b40-918e-47a4-a45d-b1677a2d3d46', 'Will lend', 'folio', '{ "id": "46970b40-918e-47a4-a45d-b1677a2d3d46", "metadata": { "createdDate": "2021-12-06T01:50:59.025+00:00", "updatedDate": "2021-12-06T01:50:59.025+00:00" }, "name": "Will lend", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('6bc6a71f-d6e2-4693-87f1-f495afddff00', 'Will not reproduce', 'folio', '{ "id": "6bc6a71f-d6e2-4693-87f1-f495afddff00", "metadata": { "createdDate": "2021-12-06T01:50:59.010+00:00", "updatedDate": "2021-12-06T01:50:59.010+00:00" }, "name": "Will not reproduce", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('9e49924b-f649-4b36-ab57-e66e639a9b0e', 'Limited lending policy', 'folio', '{ "id": "9e49924b-f649-4b36-ab57-e66e639a9b0e", "metadata": { "createdDate": "2021-12-06T01:50:59.034+00:00", "updatedDate": "2021-12-06T01:50:59.034+00:00" }, "name": "Limited lending policy", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('b0f97013-87f5-4bab-87f2-ac4a5191b489', 'Will not lend', 'folio', '{ "id": "b0f97013-87f5-4bab-87f2-ac4a5191b489", "metadata": { "createdDate": "2021-12-06T01:50:59.013+00:00", "updatedDate": "2021-12-06T01:50:59.013+00:00" }, "name": "Will not lend", "source": "folio" }'); INSERT INTO inventory_ill_policies VALUES ('c51f7aa9-9997-45e6-94d6-b502445aae9d', 'Unknown reproduction policy', 'folio', '{ "id": "c51f7aa9-9997-45e6-94d6-b502445aae9d", "metadata": { "createdDate": "2021-12-06T01:50:59.004+00:00", "updatedDate": "2021-12-06T01:50:59.004+00:00" }, "name": "Unknown reproduction policy", "source": "folio" }'); -- -- TOC entry 4236 (class 0 OID 88215601) -- Dependencies: 481 -- Data for Name: inventory_instance_formats; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_formats VALUES ('0d9b1c3d-2d13-4f18-9472-cc1b91bf1752', 'sb', 'audio -- audio belt', NULL, 'rdacarrier', '{ "id": "0d9b1c3d-2d13-4f18-9472-cc1b91bf1752", "code": "sb", "metadata": { "createdDate": "2021-12-06T01:50:58.296+00:00", "updatedDate": "2021-12-06T01:50:58.296+00:00" }, "name": "audio -- audio belt", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('132d70db-53b3-4999-bd79-0fac3b8b9b98', 'vc', 'video -- video cartridge', NULL, 'rdacarrier', '{ "id": "132d70db-53b3-4999-bd79-0fac3b8b9b98", "code": "vc", "metadata": { "createdDate": "2021-12-06T01:50:58.396+00:00", "updatedDate": "2021-12-06T01:50:58.396+00:00" }, "name": "video -- video cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('2802b285-9f27-4c86-a9d7-d2ac08b26a79', 'nz', 'unmediated -- other', NULL, 'rdacarrier', '{ "id": "2802b285-9f27-4c86-a9d7-d2ac08b26a79", "code": "nz", "metadata": { "createdDate": "2021-12-06T01:50:58.294+00:00", "updatedDate": "2021-12-06T01:50:58.294+00:00" }, "name": "unmediated -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('33009ba2-b742-4aab-b592-68b27451e94f', 'hh', 'microform -- microfilm slip', NULL, 'rdacarrier', '{ "id": "33009ba2-b742-4aab-b592-68b27451e94f", "code": "hh", "metadata": { "createdDate": "2021-12-06T01:50:58.424+00:00", "updatedDate": "2021-12-06T01:50:58.424+00:00" }, "name": "microform -- microfilm slip", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('431cc9a0-4572-4613-b267-befb0f3d457f', 'vf', 'video -- videocassette', NULL, 'rdacarrier', '{ "id": "431cc9a0-4572-4613-b267-befb0f3d457f", "code": "vf", "metadata": { "createdDate": "2021-12-06T01:50:58.498+00:00", "updatedDate": "2021-12-06T01:50:58.498+00:00" }, "name": "video -- videocassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('47b226c0-853c-40f4-ba2e-2bd5ba82b665', 'mf', 'projected image -- film cassette', NULL, 'rdacarrier', '{ "id": "47b226c0-853c-40f4-ba2e-2bd5ba82b665", "code": "mf", "metadata": { "createdDate": "2021-12-06T01:50:58.510+00:00", "updatedDate": "2021-12-06T01:50:58.510+00:00" }, "name": "projected image -- film cassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('485e3e1d-9f46-42b6-8c65-6bb7bd4b37f8', 'se', 'audio -- audio cylinder', NULL, 'rdacarrier', '{ "id": "485e3e1d-9f46-42b6-8c65-6bb7bd4b37f8", "code": "se", "metadata": { "createdDate": "2021-12-06T01:50:58.327+00:00", "updatedDate": "2021-12-06T01:50:58.327+00:00" }, "name": "audio -- audio cylinder", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('53f44ae4-167b-4cc2-9a63-4375c0ad9f58', 'gd', 'projected image -- filmslip', NULL, 'rdacarrier', '{ "id": "53f44ae4-167b-4cc2-9a63-4375c0ad9f58", "code": "gd", "metadata": { "createdDate": "2021-12-06T01:50:58.466+00:00", "updatedDate": "2021-12-06T01:50:58.466+00:00" }, "name": "projected image -- filmslip", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('549e3381-7d49-44f6-8232-37af1cb5ecf3', 'ck', 'computer -- computer card', NULL, 'rdacarrier', '{ "id": "549e3381-7d49-44f6-8232-37af1cb5ecf3", "code": "ck", "metadata": { "createdDate": "2021-12-06T01:50:58.391+00:00", "updatedDate": "2021-12-06T01:50:58.391+00:00" }, "name": "computer -- computer card", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('55a66581-3921-4b50-9981-4fe53bf35e7f', 'mr', 'projected image -- film reel', NULL, 'rdacarrier', '{ "id": "55a66581-3921-4b50-9981-4fe53bf35e7f", "code": "mr", "metadata": { "createdDate": "2021-12-06T01:50:58.413+00:00", "updatedDate": "2021-12-06T01:50:58.413+00:00" }, "name": "projected image -- film reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('55d3b8aa-304e-4967-8b78-55926d7809ac', 'pz', 'microscopic -- other', NULL, 'rdacarrier', '{ "id": "55d3b8aa-304e-4967-8b78-55926d7809ac", "code": "pz", "metadata": { "createdDate": "2021-12-06T01:50:58.514+00:00", "updatedDate": "2021-12-06T01:50:58.514+00:00" }, "name": "microscopic -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('5642320a-2ab9-475c-8ca2-4af7551cf296', 'sg', 'audio -- audio cartridge', true, 'rdacarrier', '{ "id": "5642320a-2ab9-475c-8ca2-4af7551cf296", "code": "sg", "metadata": { "createdDate": "2021-12-06T01:50:58.478+00:00", "updatedDate": "2021-12-06T01:50:58.478+00:00" }, "name": "audio -- audio cartridge", "readOnly": true, "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('5913bb96-e881-4087-9e71-33a43f68e12e', 'nb', 'unmediated -- sheet', NULL, 'rdacarrier', '{ "id": "5913bb96-e881-4087-9e71-33a43f68e12e", "code": "nb", "metadata": { "createdDate": "2021-12-06T01:50:58.458+00:00", "updatedDate": "2021-12-06T01:50:58.458+00:00" }, "name": "unmediated -- sheet", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('5bfb7b4f-9cd5-4577-a364-f95352146a56', 'si', 'audio -- sound track reel', NULL, 'rdacarrier', '{ "id": "5bfb7b4f-9cd5-4577-a364-f95352146a56", "code": "si", "metadata": { "createdDate": "2021-12-06T01:50:58.310+00:00", "updatedDate": "2021-12-06T01:50:58.310+00:00" }, "name": "audio -- sound track reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('5cb91d15-96b1-4b8a-bf60-ec310538da66', 'sd', 'audio -- audio disc', NULL, 'rdacarrier', '{ "id": "5cb91d15-96b1-4b8a-bf60-ec310538da66", "code": "sd", "metadata": { "createdDate": "2021-12-06T01:50:58.358+00:00", "updatedDate": "2021-12-06T01:50:58.358+00:00" }, "name": "audio -- audio disc", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('5fa3e09f-2192-41a9-b4bf-9eb8aef0af0a', 'no', 'unmediated -- card', NULL, 'rdacarrier', '{ "id": "5fa3e09f-2192-41a9-b4bf-9eb8aef0af0a", "code": "no", "metadata": { "createdDate": "2021-12-06T01:50:58.409+00:00", "updatedDate": "2021-12-06T01:50:58.409+00:00" }, "name": "unmediated -- card", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('68e7e339-f35c-4be2-b161-0b94d7569b7b', 'na', 'unmediated -- roll', NULL, 'rdacarrier', '{ "id": "68e7e339-f35c-4be2-b161-0b94d7569b7b", "code": "na", "metadata": { "createdDate": "2021-12-06T01:50:58.462+00:00", "updatedDate": "2021-12-06T01:50:58.462+00:00" }, "name": "unmediated -- roll", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('6a679992-b37e-4b57-b6ea-96be6b51d2b4', 'sw', 'audio -- audio wire reel', NULL, 'rdacarrier', '{ "id": "6a679992-b37e-4b57-b6ea-96be6b51d2b4", "code": "sw", "metadata": { "createdDate": "2021-12-06T01:50:58.473+00:00", "updatedDate": "2021-12-06T01:50:58.473+00:00" }, "name": "audio -- audio wire reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('6bf2154b-df6e-4f11-97d0-6541231ac2be', 'mc', 'projected image -- film cartridge', NULL, 'rdacarrier', '{ "id": "6bf2154b-df6e-4f11-97d0-6541231ac2be", "code": "mc", "metadata": { "createdDate": "2021-12-06T01:50:58.400+00:00", "updatedDate": "2021-12-06T01:50:58.400+00:00" }, "name": "projected image -- film cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('6d749f00-97bd-4eab-9828-57167558f514', 'ss', 'audio -- audiocassette', NULL, 'rdacarrier', '{ "id": "6d749f00-97bd-4eab-9828-57167558f514", "code": "ss", "metadata": { "createdDate": "2021-12-06T01:50:58.347+00:00", "updatedDate": "2021-12-06T01:50:58.347+00:00" }, "name": "audio -- audiocassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('7612aa96-61a6-41bd-8ed2-ff1688e794e1', 'st', 'audio -- audiotape reel', NULL, 'rdacarrier', '{ "id": "7612aa96-61a6-41bd-8ed2-ff1688e794e1", "code": "st", "metadata": { "createdDate": "2021-12-06T01:50:58.372+00:00", "updatedDate": "2021-12-06T01:50:58.372+00:00" }, "name": "audio -- audiotape reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('788aa9a6-5f0b-4c52-957b-998266ee3bd3', 'hg', 'microform -- microopaque', NULL, 'rdacarrier', '{ "id": "788aa9a6-5f0b-4c52-957b-998266ee3bd3", "code": "hg", "metadata": { "createdDate": "2021-12-06T01:50:58.443+00:00", "updatedDate": "2021-12-06T01:50:58.443+00:00" }, "name": "microform -- microopaque", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('7bfe7e83-d4aa-46d1-b2a9-f612b18d11f4', 'hd', 'microform -- microfilm reel', NULL, 'rdacarrier', '{ "id": "7bfe7e83-d4aa-46d1-b2a9-f612b18d11f4", "code": "hd", "metadata": { "createdDate": "2021-12-06T01:50:58.482+00:00", "updatedDate": "2021-12-06T01:50:58.482+00:00" }, "name": "microform -- microfilm reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('7c9b361d-66b6-4e4c-ae4b-2c01f655612c', 'ez', 'stereographic -- other', NULL, 'rdacarrier', '{ "id": "7c9b361d-66b6-4e4c-ae4b-2c01f655612c", "code": "ez", "metadata": { "createdDate": "2021-12-06T01:50:58.335+00:00", "updatedDate": "2021-12-06T01:50:58.335+00:00" }, "name": "stereographic -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('7f857834-b2e2-48b1-8528-6a1fe89bf979', 'vd', 'video -- videodisc', NULL, 'rdacarrier', '{ "id": "7f857834-b2e2-48b1-8528-6a1fe89bf979", "code": "vd", "metadata": { "createdDate": "2021-12-06T01:50:58.439+00:00", "updatedDate": "2021-12-06T01:50:58.439+00:00" }, "name": "video -- videodisc", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('7fde4e21-00b5-4de4-a90a-08a84a601aeb', 'sq', 'audio -- audio roll', NULL, 'rdacarrier', '{ "id": "7fde4e21-00b5-4de4-a90a-08a84a601aeb", "code": "sq", "metadata": { "createdDate": "2021-12-06T01:50:58.290+00:00", "updatedDate": "2021-12-06T01:50:58.290+00:00" }, "name": "audio -- audio roll", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('88f58dc0-4243-4c6b-8321-70244ff34a83', 'cb', 'computer -- computer chip cartridge', NULL, 'rdacarrier', '{ "id": "88f58dc0-4243-4c6b-8321-70244ff34a83", "code": "cb", "metadata": { "createdDate": "2021-12-06T01:50:58.285+00:00", "updatedDate": "2021-12-06T01:50:58.285+00:00" }, "name": "computer -- computer chip cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('8d511d33-5e85-4c5d-9bce-6e3c9cd0c324', 'nc', 'unmediated -- volume', NULL, 'rdacarrier', '{ "id": "8d511d33-5e85-4c5d-9bce-6e3c9cd0c324", "code": "nc", "metadata": { "createdDate": "2021-12-06T01:50:58.502+00:00", "updatedDate": "2021-12-06T01:50:58.502+00:00" }, "name": "unmediated -- volume", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('8e04d356-2645-4f97-8de8-9721cf11ccef', 'gf', 'projected image -- filmstrip', NULL, 'rdacarrier', '{ "id": "8e04d356-2645-4f97-8de8-9721cf11ccef", "code": "gf", "metadata": { "createdDate": "2021-12-06T01:50:58.368+00:00", "updatedDate": "2021-12-06T01:50:58.368+00:00" }, "name": "projected image -- filmstrip", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('9166e7c9-7edb-4180-b57e-e495f551297f', 'mz', 'projected image -- other', NULL, 'rdacarrier', '{ "id": "9166e7c9-7edb-4180-b57e-e495f551297f", "code": "mz", "metadata": { "createdDate": "2021-12-06T01:50:58.383+00:00", "updatedDate": "2021-12-06T01:50:58.383+00:00" }, "name": "projected image -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('926662e9-2486-4bb9-ba3b-59bd2e7f2a0c', 'nr', 'unmediated -- object', NULL, 'rdacarrier', '{ "id": "926662e9-2486-4bb9-ba3b-59bd2e7f2a0c", "code": "nr", "metadata": { "createdDate": "2021-12-06T01:50:58.420+00:00", "updatedDate": "2021-12-06T01:50:58.420+00:00" }, "name": "unmediated -- object", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('98f0caa9-d38e-427b-9ec4-454de81a94d7', 'zu', 'unspecified -- unspecified', NULL, 'rdacarrier', '{ "id": "98f0caa9-d38e-427b-9ec4-454de81a94d7", "code": "zu", "metadata": { "createdDate": "2021-12-06T01:50:58.506+00:00", "updatedDate": "2021-12-06T01:50:58.506+00:00" }, "name": "unspecified -- unspecified", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('a0f2612b-f24f-4dc8-a139-89c3da5a38f1', 'hz', 'microform -- other', NULL, 'rdacarrier', '{ "id": "a0f2612b-f24f-4dc8-a139-89c3da5a38f1", "code": "hz", "metadata": { "createdDate": "2021-12-06T01:50:58.363+00:00", "updatedDate": "2021-12-06T01:50:58.363+00:00" }, "name": "microform -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('a3549b8c-3282-4a14-9ec3-c1cf294043b9', 'sz', 'audio -- other', NULL, 'rdacarrier', '{ "id": "a3549b8c-3282-4a14-9ec3-c1cf294043b9", "code": "sz", "metadata": { "createdDate": "2021-12-06T01:50:58.454+00:00", "updatedDate": "2021-12-06T01:50:58.454+00:00" }, "name": "audio -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('ac9de2b9-0914-4a54-8805-463686a5489e', 'cd', 'computer -- computer disc', NULL, 'rdacarrier', '{ "id": "ac9de2b9-0914-4a54-8805-463686a5489e", "code": "cd", "metadata": { "createdDate": "2021-12-06T01:50:58.447+00:00", "updatedDate": "2021-12-06T01:50:58.447+00:00" }, "name": "computer -- computer disc", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('affd5809-2897-42ca-b958-b311f3e0dcfb', 'nn', 'unmediated -- flipchart', NULL, 'rdacarrier', '{ "id": "affd5809-2897-42ca-b958-b311f3e0dcfb", "code": "nn", "metadata": { "createdDate": "2021-12-06T01:50:58.450+00:00", "updatedDate": "2021-12-06T01:50:58.450+00:00" }, "name": "unmediated -- flipchart", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('b1c69d78-4afb-4d8b-9624-8b3cfa5288ad', 'pp', 'microscopic -- microscope slide', NULL, 'rdacarrier', '{ "id": "b1c69d78-4afb-4d8b-9624-8b3cfa5288ad", "code": "pp", "metadata": { "createdDate": "2021-12-06T01:50:58.305+00:00", "updatedDate": "2021-12-06T01:50:58.305+00:00" }, "name": "microscopic -- microscope slide", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('b2b39d2f-856b-4419-93d3-ed1851f91b9f', 'gs', 'projected image -- slide', NULL, 'rdacarrier', '{ "id": "b2b39d2f-856b-4419-93d3-ed1851f91b9f", "code": "gs", "metadata": { "createdDate": "2021-12-06T01:50:58.432+00:00", "updatedDate": "2021-12-06T01:50:58.432+00:00" }, "name": "projected image -- slide", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('b71e5ec6-a15d-4261-baf9-aea6be7af15b', 'hc', 'microform -- microfilm cassette', NULL, 'rdacarrier', '{ "id": "b71e5ec6-a15d-4261-baf9-aea6be7af15b", "code": "hc", "metadata": { "createdDate": "2021-12-06T01:50:58.491+00:00", "updatedDate": "2021-12-06T01:50:58.491+00:00" }, "name": "microform -- microfilm cassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('b72e66e2-d946-4b01-a696-8fab07051ff8', 'hf', 'microform -- microfiche cassette', NULL, 'rdacarrier', '{ "id": "b72e66e2-d946-4b01-a696-8fab07051ff8", "code": "hf", "metadata": { "createdDate": "2021-12-06T01:50:58.428+00:00", "updatedDate": "2021-12-06T01:50:58.428+00:00" }, "name": "microform -- microfiche cassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('ba0d7429-7ccf-419d-8bfb-e6a1200a8d20', 'vr', 'video -- videotape reel', NULL, 'rdacarrier', '{ "id": "ba0d7429-7ccf-419d-8bfb-e6a1200a8d20", "code": "vr", "metadata": { "createdDate": "2021-12-06T01:50:58.342+00:00", "updatedDate": "2021-12-06T01:50:58.342+00:00" }, "name": "video -- videotape reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('c3f41d5e-e192-4828-805c-6df3270c1910', 'es', 'stereographic -- stereograph disc', NULL, 'rdacarrier', '{ "id": "c3f41d5e-e192-4828-805c-6df3270c1910", "code": "es", "metadata": { "createdDate": "2021-12-06T01:50:58.487+00:00", "updatedDate": "2021-12-06T01:50:58.487+00:00" }, "name": "stereographic -- stereograph disc", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('cb3004a3-2a85-4ed4-8084-409f93d6d8ba', 'ha', 'microform -- aperture card', NULL, 'rdacarrier', '{ "id": "cb3004a3-2a85-4ed4-8084-409f93d6d8ba", "code": "ha", "metadata": { "createdDate": "2021-12-06T01:50:58.300+00:00", "updatedDate": "2021-12-06T01:50:58.300+00:00" }, "name": "microform -- aperture card", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('cb96199a-21fb-4f11-b003-99291d8c9752', 'hj', 'microform -- microfilm roll', NULL, 'rdacarrier', '{ "id": "cb96199a-21fb-4f11-b003-99291d8c9752", "code": "hj", "metadata": { "createdDate": "2021-12-06T01:50:58.320+00:00", "updatedDate": "2021-12-06T01:50:58.320+00:00" }, "name": "microform -- microfilm roll", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('d16b19d1-507f-4a22-bb8a-b3f713a73221', 'ch', 'computer -- computer tape reel', NULL, 'rdacarrier', '{ "id": "d16b19d1-507f-4a22-bb8a-b3f713a73221", "code": "ch", "metadata": { "createdDate": "2021-12-06T01:50:58.494+00:00", "updatedDate": "2021-12-06T01:50:58.494+00:00" }, "name": "computer -- computer tape reel", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('e05f2613-05df-4b4d-9292-2ee9aa778ecc', 'ce', 'computer -- computer disc cartridge', NULL, 'rdacarrier', '{ "id": "e05f2613-05df-4b4d-9292-2ee9aa778ecc", "code": "ce", "metadata": { "createdDate": "2021-12-06T01:50:58.375+00:00", "updatedDate": "2021-12-06T01:50:58.375+00:00" }, "name": "computer -- computer disc cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('e3179f91-3032-43ee-be97-f0464f359d9c', 'vz', 'video -- other', NULL, 'rdacarrier', '{ "id": "e3179f91-3032-43ee-be97-f0464f359d9c", "code": "vz", "metadata": { "createdDate": "2021-12-06T01:50:58.324+00:00", "updatedDate": "2021-12-06T01:50:58.324+00:00" }, "name": "video -- other", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('e5aeb29a-cf0a-4d97-8c39-7756c10d423c', 'cf', 'computer -- computer tape cassette', NULL, 'rdacarrier', '{ "id": "e5aeb29a-cf0a-4d97-8c39-7756c10d423c", "code": "cf", "metadata": { "createdDate": "2021-12-06T01:50:58.379+00:00", "updatedDate": "2021-12-06T01:50:58.379+00:00" }, "name": "computer -- computer tape cassette", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('e62f4860-b3b0-462e-92b6-e032336ab663', 'eh', 'stereographic -- stereograph card', NULL, 'rdacarrier', '{ "id": "e62f4860-b3b0-462e-92b6-e032336ab663", "code": "eh", "metadata": { "createdDate": "2021-12-06T01:50:58.387+00:00", "updatedDate": "2021-12-06T01:50:58.387+00:00" }, "name": "stereographic -- stereograph card", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('eb860cea-b842-4a8b-ab8d-0739856f0c2c', 'gt', 'projected image -- overhead transparency', NULL, 'rdacarrier', '{ "id": "eb860cea-b842-4a8b-ab8d-0739856f0c2c", "code": "gt", "metadata": { "createdDate": "2021-12-06T01:50:58.339+00:00", "updatedDate": "2021-12-06T01:50:58.339+00:00" }, "name": "projected image -- overhead transparency", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('f0e689e8-e62d-4aac-b1c1-198ac9114aca', 'mo', 'projected image -- film roll', NULL, 'rdacarrier', '{ "id": "f0e689e8-e62d-4aac-b1c1-198ac9114aca", "code": "mo", "metadata": { "createdDate": "2021-12-06T01:50:58.331+00:00", "updatedDate": "2021-12-06T01:50:58.331+00:00" }, "name": "projected image -- film roll", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('f4f30334-568b-4dd2-88b5-db8401607daf', 'ca', 'computer -- computer tape cartridge', NULL, 'rdacarrier', '{ "id": "f4f30334-568b-4dd2-88b5-db8401607daf", "code": "ca", "metadata": { "createdDate": "2021-12-06T01:50:58.315+00:00", "updatedDate": "2021-12-06T01:50:58.315+00:00" }, "name": "computer -- computer tape cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('f5e8210f-7640-459b-a71f-552567f92369', 'cr', 'computer -- online resource', NULL, 'rdacarrier', '{ "id": "f5e8210f-7640-459b-a71f-552567f92369", "code": "cr", "metadata": { "createdDate": "2021-12-06T01:50:58.469+00:00", "updatedDate": "2021-12-06T01:50:58.469+00:00" }, "name": "computer -- online resource", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('f7107ab3-9c09-4bcb-a637-368f39e0b140', 'gc', 'projected image -- filmstrip cartridge', NULL, 'rdacarrier', '{ "id": "f7107ab3-9c09-4bcb-a637-368f39e0b140", "code": "gc", "metadata": { "createdDate": "2021-12-06T01:50:58.417+00:00", "updatedDate": "2021-12-06T01:50:58.417+00:00" }, "name": "projected image -- filmstrip cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('fc3e32a0-9c85-4454-a42e-39fca788a7dc', 'he', 'microform -- microfiche', NULL, 'rdacarrier', '{ "id": "fc3e32a0-9c85-4454-a42e-39fca788a7dc", "code": "he", "metadata": { "createdDate": "2021-12-06T01:50:58.354+00:00", "updatedDate": "2021-12-06T01:50:58.354+00:00" }, "name": "microform -- microfiche", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('fc9bfed9-2cb0-465f-8758-33af5bba750b', 'hb', 'microform -- microfilm cartridge', NULL, 'rdacarrier', '{ "id": "fc9bfed9-2cb0-465f-8758-33af5bba750b", "code": "hb", "metadata": { "createdDate": "2021-12-06T01:50:58.436+00:00", "updatedDate": "2021-12-06T01:50:58.436+00:00" }, "name": "microform -- microfilm cartridge", "source": "rdacarrier" }'); INSERT INTO inventory_instance_formats VALUES ('fe1b9adb-e0cf-4e05-905f-ce9986279404', 'cz', 'computer -- other', NULL, 'rdacarrier', '{ "id": "fe1b9adb-e0cf-4e05-905f-ce9986279404", "code": "cz", "metadata": { "createdDate": "2021-12-06T01:50:58.350+00:00", "updatedDate": "2021-12-06T01:50:58.350+00:00" }, "name": "computer -- other", "source": "rdacarrier" }'); -- -- TOC entry 4237 (class 0 OID 88215620) -- Dependencies: 482 -- Data for Name: inventory_instance_note_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_note_types VALUES ('02b5b0c6-3375-4912-ac75-ad9f552362b2', 'Methodology note', 'folio', '{ "id": "02b5b0c6-3375-4912-ac75-ad9f552362b2", "metadata": { "createdDate": "2021-12-06T01:50:59.215+00:00", "updatedDate": "2021-12-06T01:50:59.215+00:00" }, "name": "Methodology note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('06489647-c7b7-4b6c-878a-cb7c1178e9ca', 'Study Program Information note', 'folio', '{ "id": "06489647-c7b7-4b6c-878a-cb7c1178e9ca", "metadata": { "createdDate": "2021-12-06T01:50:59.350+00:00", "updatedDate": "2021-12-06T01:50:59.350+00:00" }, "name": "Study Program Information note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('06b44741-888e-4b15-a75e-cb29e27752d1', 'With note', 'folio', '{ "id": "06b44741-888e-4b15-a75e-cb29e27752d1", "metadata": { "createdDate": "2021-12-06T01:50:59.248+00:00", "updatedDate": "2021-12-06T01:50:59.248+00:00" }, "name": "With note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('09812302-92f7-497e-9120-ed25de458ea5', 'Preferred Citation of Described Materials note', 'folio', '{ "id": "09812302-92f7-497e-9120-ed25de458ea5", "metadata": { "createdDate": "2021-12-06T01:50:59.208+00:00", "updatedDate": "2021-12-06T01:50:59.208+00:00" }, "name": "Preferred Citation of Described Materials note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('0dc69a30-6d2b-40df-a50e-e4982bda86f4', 'Binding Information note', 'folio', '{ "id": "0dc69a30-6d2b-40df-a50e-e4982bda86f4", "metadata": { "createdDate": "2021-12-06T01:50:59.346+00:00", "updatedDate": "2021-12-06T01:50:59.346+00:00" }, "name": "Binding Information note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('0ed2da88-3f81-42f5-b688-91b70919d9bb', 'Exhibitions note', 'folio', '{ "id": "0ed2da88-3f81-42f5-b688-91b70919d9bb", "metadata": { "createdDate": "2021-12-06T01:50:59.306+00:00", "updatedDate": "2021-12-06T01:50:59.306+00:00" }, "name": "Exhibitions note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('10e2e11b-450f-45c8-b09b-0f819999966e', 'Summary', 'folio', '{ "id": "10e2e11b-450f-45c8-b09b-0f819999966e", "metadata": { "createdDate": "2021-12-06T01:50:59.204+00:00", "updatedDate": "2021-12-06T01:50:59.204+00:00" }, "name": "Summary", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('13047c94-7d2c-4c41-9658-abacfa97a5c8', 'Information About Documentation note', 'folio', '{ "id": "13047c94-7d2c-4c41-9658-abacfa97a5c8", "metadata": { "createdDate": "2021-12-06T01:50:59.241+00:00", "updatedDate": "2021-12-06T01:50:59.241+00:00" }, "name": "Information About Documentation note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('1c017b8d-c783-4f63-b620-079f7a5b9c07', 'Action note', 'folio', '{ "id": "1c017b8d-c783-4f63-b620-079f7a5b9c07", "metadata": { "createdDate": "2021-12-06T01:50:59.298+00:00", "updatedDate": "2021-12-06T01:50:59.298+00:00" }, "name": "Action note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('1c7acba3-523d-4237-acd2-e88549bfc660', 'Accumulation and Frequency of Use note', 'folio', '{ "id": "1c7acba3-523d-4237-acd2-e88549bfc660", "metadata": { "createdDate": "2021-12-06T01:50:59.369+00:00", "updatedDate": "2021-12-06T01:50:59.369+00:00" }, "name": "Accumulation and Frequency of Use note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('1cb8ac76-01fa-49be-8b9c-fcdaf17458a5', 'Entity and Attribute Information note', 'folio', '{ "id": "1cb8ac76-01fa-49be-8b9c-fcdaf17458a5", "metadata": { "createdDate": "2021-12-06T01:50:59.200+00:00", "updatedDate": "2021-12-06T01:50:59.200+00:00" }, "name": "Entity and Attribute Information note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('1d51e8b2-dee7-43f5-983c-a40757b9cdfa', 'Additional Physical Form Available note', 'folio', '{ "id": "1d51e8b2-dee7-43f5-983c-a40757b9cdfa", "metadata": { "createdDate": "2021-12-06T01:50:59.211+00:00", "updatedDate": "2021-12-06T01:50:59.211+00:00" }, "name": "Additional Physical Form Available note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('265c4910-3997-4242-9269-6a4a2e91392b', 'Local notes', 'folio', '{ "id": "265c4910-3997-4242-9269-6a4a2e91392b", "metadata": { "createdDate": "2021-12-06T01:50:59.295+00:00", "updatedDate": "2021-12-06T01:50:59.295+00:00" }, "name": "Local notes", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('28e12ad3-4a8d-48cc-b56c-a5ded22fc844', 'Geographic Coverage note', 'folio', '{ "id": "28e12ad3-4a8d-48cc-b56c-a5ded22fc844", "metadata": { "createdDate": "2021-12-06T01:50:59.192+00:00", "updatedDate": "2021-12-06T01:50:59.192+00:00" }, "name": "Geographic Coverage note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('3d931c23-6ae8-4e5a-8802-dc8c2e21ea19', 'Type of computer file or data note', 'folio', '{ "id": "3d931c23-6ae8-4e5a-8802-dc8c2e21ea19", "metadata": { "createdDate": "2021-12-06T01:50:59.353+00:00", "updatedDate": "2021-12-06T01:50:59.353+00:00" }, "name": "Type of computer file or data note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('42be8949-6f69-4c55-874b-60b744ac1103', 'Original Version note', 'folio', '{ "id": "42be8949-6f69-4c55-874b-60b744ac1103", "metadata": { "createdDate": "2021-12-06T01:50:59.196+00:00", "updatedDate": "2021-12-06T01:50:59.196+00:00" }, "name": "Original Version note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('43295b78-3bfa-4c28-bc7f-8d924f63493f', 'Date / time and place of an event note', 'folio', '{ "id": "43295b78-3bfa-4c28-bc7f-8d924f63493f", "metadata": { "createdDate": "2021-12-06T01:50:59.234+00:00", "updatedDate": "2021-12-06T01:50:59.234+00:00" }, "name": "Date / time and place of an event note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('49475f04-35ef-4f8a-aa7f-92773594ca76', 'Issuing Body note', 'folio', '{ "id": "49475f04-35ef-4f8a-aa7f-92773594ca76", "metadata": { "createdDate": "2021-12-06T01:50:59.357+00:00", "updatedDate": "2021-12-06T01:50:59.357+00:00" }, "name": "Issuing Body note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('56cf513e-a738-40c5-a3ab-b0c60ba07e15', 'Ownership and Custodial History note', 'folio', '{ "id": "56cf513e-a738-40c5-a3ab-b0c60ba07e15", "metadata": { "createdDate": "2021-12-06T01:50:59.238+00:00", "updatedDate": "2021-12-06T01:50:59.238+00:00" }, "name": "Ownership and Custodial History note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('5ba8e385-0e27-462e-a571-ffa1fa34ea54', 'Formatted Contents Note', 'folio', '{ "id": "5ba8e385-0e27-462e-a571-ffa1fa34ea54", "metadata": { "createdDate": "2021-12-06T01:50:59.182+00:00", "updatedDate": "2021-12-06T01:50:59.182+00:00" }, "name": "Formatted Contents Note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('654be0fd-bba2-4791-afa3-ae60300d7043', 'Information related to Copyright Status', 'folio', '{ "id": "654be0fd-bba2-4791-afa3-ae60300d7043", "metadata": { "createdDate": "2021-12-06T01:50:59.302+00:00", "updatedDate": "2021-12-06T01:50:59.302+00:00" }, "name": "Information related to Copyright Status", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('66ea8f28-d5da-426a-a7c9-739a5d676347', 'Source of Description note', 'folio', '{ "id": "66ea8f28-d5da-426a-a7c9-739a5d676347", "metadata": { "createdDate": "2021-12-06T01:50:59.185+00:00", "updatedDate": "2021-12-06T01:50:59.185+00:00" }, "name": "Source of Description note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('6a2533a7-4de2-4e64-8466-074c2fa9308c', 'General note', 'folio', '{ "id": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "metadata": { "createdDate": "2021-12-06T01:50:59.255+00:00", "updatedDate": "2021-12-06T01:50:59.255+00:00" }, "name": "General note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('6ca9df3f-454d-4b5b-9d41-feb5d5030b99', 'Citation / References note', 'folio', '{ "id": "6ca9df3f-454d-4b5b-9d41-feb5d5030b99", "metadata": { "createdDate": "2021-12-06T01:50:59.289+00:00", "updatedDate": "2021-12-06T01:50:59.289+00:00" }, "name": "Citation / References note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('6f76f4e7-9c0b-4138-9371-09b36136372d', 'Case File Characteristics note', 'folio', '{ "id": "6f76f4e7-9c0b-4138-9371-09b36136372d", "metadata": { "createdDate": "2021-12-06T01:50:59.252+00:00", "updatedDate": "2021-12-06T01:50:59.252+00:00" }, "name": "Case File Characteristics note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('72c611ab-f353-4c09-a0cc-33ff96cc3bef', 'Scale note for graphic material', 'folio', '{ "id": "72c611ab-f353-4c09-a0cc-33ff96cc3bef", "metadata": { "createdDate": "2021-12-06T01:50:59.317+00:00", "updatedDate": "2021-12-06T01:50:59.317+00:00" }, "name": "Scale note for graphic material", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('7356cde5-ec6b-4961-9cb0-961c48a37af4', 'Language note', 'folio', '{ "id": "7356cde5-ec6b-4961-9cb0-961c48a37af4", "metadata": { "createdDate": "2021-12-06T01:50:59.219+00:00", "updatedDate": "2021-12-06T01:50:59.219+00:00" }, "name": "Language note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('779c22a2-311c-4ebb-b71e-b246c7ee574d', 'Linking Entry Complexity note', 'folio', '{ "id": "779c22a2-311c-4ebb-b71e-b246c7ee574d", "metadata": { "createdDate": "2021-12-06T01:50:59.285+00:00", "updatedDate": "2021-12-06T01:50:59.285+00:00" }, "name": "Linking Entry Complexity note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('7929eee7-6822-4199-8df4-bb2ae773e4cd', 'Data quality note', 'folio', '{ "id": "7929eee7-6822-4199-8df4-bb2ae773e4cd", "metadata": { "createdDate": "2021-12-06T01:50:59.262+00:00", "updatedDate": "2021-12-06T01:50:59.262+00:00" }, "name": "Data quality note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('794f19f1-d00b-4b4b-97e9-0de5a34495a0', 'Cartographic Mathematical Data', 'folio', '{ "id": "794f19f1-d00b-4b4b-97e9-0de5a34495a0", "metadata": { "createdDate": "2021-12-06T01:50:59.332+00:00", "updatedDate": "2021-12-06T01:50:59.332+00:00" }, "name": "Cartographic Mathematical Data", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('806cb024-80d2-47c2-8bbf-b91091c85f68', 'Former Title Complexity note', 'folio', '{ "id": "806cb024-80d2-47c2-8bbf-b91091c85f68", "metadata": { "createdDate": "2021-12-06T01:50:59.259+00:00", "updatedDate": "2021-12-06T01:50:59.259+00:00" }, "name": "Former Title Complexity note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('86b6e817-e1bc-42fb-bab0-70e7547de6c1', 'Bibliography note', 'folio', '{ "id": "86b6e817-e1bc-42fb-bab0-70e7547de6c1", "metadata": { "createdDate": "2021-12-06T01:50:59.365+00:00", "updatedDate": "2021-12-06T01:50:59.365+00:00" }, "name": "Bibliography note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('86c4bd09-16de-45ee-89d3-b6d32fae6de9', 'Immediate Source of Acquisition note', 'folio', '{ "id": "86c4bd09-16de-45ee-89d3-b6d32fae6de9", "metadata": { "createdDate": "2021-12-06T01:50:59.270+00:00", "updatedDate": "2021-12-06T01:50:59.270+00:00" }, "name": "Immediate Source of Acquisition note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('922fdcde-952d-45c2-b9ea-5fc8959ad116', 'Target Audience note', 'folio', '{ "id": "922fdcde-952d-45c2-b9ea-5fc8959ad116", "metadata": { "createdDate": "2021-12-06T01:50:59.223+00:00", "updatedDate": "2021-12-06T01:50:59.223+00:00" }, "name": "Target Audience note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('95f62ca7-5df5-4a51-9890-d0ec3a34665f', 'System Details note', 'folio', '{ "id": "95f62ca7-5df5-4a51-9890-d0ec3a34665f", "metadata": { "createdDate": "2021-12-06T01:50:59.339+00:00", "updatedDate": "2021-12-06T01:50:59.339+00:00" }, "name": "System Details note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('9a4b39f4-a7d5-4c4d-abc6-5ccf1fc1d78c', 'Location of Other Archival Materials note', 'folio', '{ "id": "9a4b39f4-a7d5-4c4d-abc6-5ccf1fc1d78c", "metadata": { "createdDate": "2021-12-06T01:50:59.278+00:00", "updatedDate": "2021-12-06T01:50:59.278+00:00" }, "name": "Location of Other Archival Materials note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('9b56b954-7f3b-4e4b-8ed0-cf40aef13975', 'Participant or Performer note', 'folio', '{ "id": "9b56b954-7f3b-4e4b-8ed0-cf40aef13975", "metadata": { "createdDate": "2021-12-06T01:50:59.343+00:00", "updatedDate": "2021-12-06T01:50:59.343+00:00" }, "name": "Participant or Performer note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('9f08c9b7-500a-43e0-b00f-ba02396b198f', 'Creation / Production Credits note', 'folio', '{ "id": "9f08c9b7-500a-43e0-b00f-ba02396b198f", "metadata": { "createdDate": "2021-12-06T01:50:59.336+00:00", "updatedDate": "2021-12-06T01:50:59.336+00:00" }, "name": "Creation / Production Credits note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('a6a5550f-4981-4b48-b821-a57d5c8ca3b3', 'Accessibility note', 'folio', '{ "id": "a6a5550f-4981-4b48-b821-a57d5c8ca3b3", "metadata": { "createdDate": "2021-12-06T01:50:59.176+00:00", "updatedDate": "2021-12-06T01:50:59.176+00:00" }, "name": "Accessibility note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('aecfda7a-e8aa-46d6-9046-9b0b8c231b85', 'Supplement note', 'folio', '{ "id": "aecfda7a-e8aa-46d6-9046-9b0b8c231b85", "metadata": { "createdDate": "2021-12-06T01:50:59.244+00:00", "updatedDate": "2021-12-06T01:50:59.244+00:00" }, "name": "Supplement note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('b73cc9c2-c9fa-49aa-964f-5ae1aa754ecd', 'Dissertation note', 'folio', '{ "id": "b73cc9c2-c9fa-49aa-964f-5ae1aa754ecd", "metadata": { "createdDate": "2021-12-06T01:50:59.281+00:00", "updatedDate": "2021-12-06T01:50:59.281+00:00" }, "name": "Dissertation note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('c6340b85-d048-426a-89aa-163cfb801a56', 'Location of Originals / Duplicates note', 'folio', '{ "id": "c6340b85-d048-426a-89aa-163cfb801a56", "metadata": { "createdDate": "2021-12-06T01:50:59.325+00:00", "updatedDate": "2021-12-06T01:50:59.325+00:00" }, "name": "Location of Originals / Duplicates note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('c636881b-8927-4480-ad1b-8d7b27b4bbfe', 'Biographical or Historical Data', 'folio', '{ "id": "c636881b-8927-4480-ad1b-8d7b27b4bbfe", "metadata": { "createdDate": "2021-12-06T01:50:59.373+00:00", "updatedDate": "2021-12-06T01:50:59.373+00:00" }, "name": "Biographical or Historical Data", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('cf635f41-29e7-4dd0-8598-33f230157074', 'Numbering peculiarities note', 'folio', '{ "id": "cf635f41-29e7-4dd0-8598-33f230157074", "metadata": { "createdDate": "2021-12-06T01:50:59.329+00:00", "updatedDate": "2021-12-06T01:50:59.329+00:00" }, "name": "Numbering peculiarities note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('d548fdff-b71c-4359-8055-f1c008c30f01', 'Reproduction note', 'folio', '{ "id": "d548fdff-b71c-4359-8055-f1c008c30f01", "metadata": { "createdDate": "2021-12-06T01:50:59.274+00:00", "updatedDate": "2021-12-06T01:50:59.274+00:00" }, "name": "Reproduction note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('e0ea861c-959f-4912-8579-5e9ea8a69454', 'Publications About Described Materials note', 'folio', '{ "id": "e0ea861c-959f-4912-8579-5e9ea8a69454", "metadata": { "createdDate": "2021-12-06T01:50:59.266+00:00", "updatedDate": "2021-12-06T01:50:59.266+00:00" }, "name": "Publications About Described Materials note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('e814a32e-02da-4773-8f3a-6629cdb7ecdf', 'Restrictions on Access note', 'folio', '{ "id": "e814a32e-02da-4773-8f3a-6629cdb7ecdf", "metadata": { "createdDate": "2021-12-06T01:50:59.314+00:00", "updatedDate": "2021-12-06T01:50:59.314+00:00" }, "name": "Restrictions on Access note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('e8cdc2fe-c53c-478a-a7f3-47f2fc79c6d4', 'Awards note', 'folio', '{ "id": "e8cdc2fe-c53c-478a-a7f3-47f2fc79c6d4", "metadata": { "createdDate": "2021-12-06T01:50:59.310+00:00", "updatedDate": "2021-12-06T01:50:59.310+00:00" }, "name": "Awards note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('ec9f8285-6bf9-4e6c-a3cb-38ef17f0317f', 'Copy and Version Identification note', 'folio', '{ "id": "ec9f8285-6bf9-4e6c-a3cb-38ef17f0317f", "metadata": { "createdDate": "2021-12-06T01:50:59.321+00:00", "updatedDate": "2021-12-06T01:50:59.321+00:00" }, "name": "Copy and Version Identification note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('f289c02b-9515-4c3f-b242-ffd071e82135', 'Funding Information Note', 'folio', '{ "id": "f289c02b-9515-4c3f-b242-ffd071e82135", "metadata": { "createdDate": "2021-12-06T01:50:59.189+00:00", "updatedDate": "2021-12-06T01:50:59.189+00:00" }, "name": "Funding Information Note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('f677d908-69c6-4450-94a6-abbcf94a1ee5', 'Terms Governing Use and Reproduction note', 'folio', '{ "id": "f677d908-69c6-4450-94a6-abbcf94a1ee5", "metadata": { "createdDate": "2021-12-06T01:50:59.230+00:00", "updatedDate": "2021-12-06T01:50:59.230+00:00" }, "name": "Terms Governing Use and Reproduction note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('f939b820-4a23-43d1-84ba-101add6e1456', 'Type of report and period covered note', 'folio', '{ "id": "f939b820-4a23-43d1-84ba-101add6e1456", "metadata": { "createdDate": "2021-12-06T01:50:59.226+00:00", "updatedDate": "2021-12-06T01:50:59.226+00:00" }, "name": "Type of report and period covered note", "source": "folio" }'); INSERT INTO inventory_instance_note_types VALUES ('fda2f2e3-965f-4220-8a2b-93d35ce6d582', 'Cumulative Index / Finding Aides notes', 'folio', '{ "id": "fda2f2e3-965f-4220-8a2b-93d35ce6d582", "metadata": { "createdDate": "2021-12-06T01:50:59.361+00:00", "updatedDate": "2021-12-06T01:50:59.361+00:00" }, "name": "Cumulative Index / Finding Aides notes", "source": "folio" }'); -- -- TOC entry 4238 (class 0 OID 88215636) -- Dependencies: 483 -- Data for Name: inventory_instance_relationship_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_relationship_types VALUES ('30773a27-b485-4dab-aeb6-b8c04fa3cb17', 'monographic series', '{ "id": "30773a27-b485-4dab-aeb6-b8c04fa3cb17", "metadata": { "createdDate": "2021-12-06T01:50:58.092+00:00", "updatedDate": "2021-12-06T01:50:58.092+00:00" }, "name": "monographic series" }'); INSERT INTO inventory_instance_relationship_types VALUES ('758f13db-ffb4-440e-bb10-8a364aa6cb4a', 'bound-with', '{ "id": "758f13db-ffb4-440e-bb10-8a364aa6cb4a", "metadata": { "createdDate": "2021-12-06T01:50:58.087+00:00", "updatedDate": "2021-12-06T01:50:58.087+00:00" }, "name": "bound-with" }'); INSERT INTO inventory_instance_relationship_types VALUES ('a17daf0a-f057-43b3-9997-13d0724cdf51', 'multipart monograph', '{ "id": "a17daf0a-f057-43b3-9997-13d0724cdf51", "metadata": { "createdDate": "2021-12-06T01:50:58.080+00:00", "updatedDate": "2021-12-06T01:50:58.080+00:00" }, "name": "multipart monograph" }'); -- -- TOC entry 4239 (class 0 OID 88215652) -- Dependencies: 484 -- Data for Name: inventory_instance_relationships; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_relationships VALUES ('1b449f40-5ae8-47df-9113-3c0a958b5ce8', 'a17daf0a-f057-43b3-9997-13d0724cdf51', '549fad9e-7f8e-4d8e-9a71-00d251817866', 'a317b304-528c-424f-961c-39174933b454', '{ "id": "1b449f40-5ae8-47df-9113-3c0a958b5ce8", "instanceRelationshipTypeId": "a17daf0a-f057-43b3-9997-13d0724cdf51", "metadata": { "createdDate": "2021-12-06T01:51:01.096+00:00", "updatedDate": "2021-12-06T01:51:01.096+00:00" }, "subInstanceId": "549fad9e-7f8e-4d8e-9a71-00d251817866", "superInstanceId": "a317b304-528c-424f-961c-39174933b454" }'); INSERT INTO inventory_instance_relationships VALUES ('34ec984a-4384-4088-bc58-5d5721c7b9d6', 'a17daf0a-f057-43b3-9997-13d0724cdf51', 'e6bc03c6-c137-4221-b679-a7c5c31f986c', 'a317b304-528c-424f-961c-39174933b454', '{ "id": "34ec984a-4384-4088-bc58-5d5721c7b9d6", "instanceRelationshipTypeId": "a17daf0a-f057-43b3-9997-13d0724cdf51", "metadata": { "createdDate": "2021-12-06T01:51:01.091+00:00", "updatedDate": "2021-12-06T01:51:01.091+00:00" }, "subInstanceId": "e6bc03c6-c137-4221-b679-a7c5c31f986c", "superInstanceId": "a317b304-528c-424f-961c-39174933b454" }'); INSERT INTO inventory_instance_relationships VALUES ('6789438f-754e-4fa6-8a4b-66949b68c2bb', '30773a27-b485-4dab-aeb6-b8c04fa3cb17', '7ab22f0a-c9cd-449a-9137-c76e5055ca37', 'f7e82a1e-fc06-4b82-bb1d-da326cb378ce', '{ "id": "6789438f-754e-4fa6-8a4b-66949b68c2bb", "instanceRelationshipTypeId": "30773a27-b485-4dab-aeb6-b8c04fa3cb17", "metadata": { "createdDate": "2021-12-06T01:51:01.104+00:00", "updatedDate": "2021-12-06T01:51:01.104+00:00" }, "subInstanceId": "7ab22f0a-c9cd-449a-9137-c76e5055ca37", "superInstanceId": "f7e82a1e-fc06-4b82-bb1d-da326cb378ce" }'); INSERT INTO inventory_instance_relationships VALUES ('e5cea7b1-3c48-428c-bc5e-2efc9ead1924', '30773a27-b485-4dab-aeb6-b8c04fa3cb17', '04489a01-f3cd-4f9e-9be4-d9c198703f45', 'f7e82a1e-fc06-4b82-bb1d-da326cb378ce', '{ "id": "e5cea7b1-3c48-428c-bc5e-2efc9ead1924", "instanceRelationshipTypeId": "30773a27-b485-4dab-aeb6-b8c04fa3cb17", "metadata": { "createdDate": "2021-12-06T01:51:01.108+00:00", "updatedDate": "2021-12-06T01:51:01.108+00:00" }, "subInstanceId": "04489a01-f3cd-4f9e-9be4-d9c198703f45", "superInstanceId": "f7e82a1e-fc06-4b82-bb1d-da326cb378ce" }'); INSERT INTO inventory_instance_relationships VALUES ('e95b3807-ef1a-4588-b685-50ec38b4973a', '30773a27-b485-4dab-aeb6-b8c04fa3cb17', '81825729-e824-4d52-9d15-1695e9bf1831', 'f7e82a1e-fc06-4b82-bb1d-da326cb378ce', '{ "id": "e95b3807-ef1a-4588-b685-50ec38b4973a", "instanceRelationshipTypeId": "30773a27-b485-4dab-aeb6-b8c04fa3cb17", "metadata": { "createdDate": "2021-12-06T01:51:01.100+00:00", "updatedDate": "2021-12-06T01:51:01.100+00:00" }, "subInstanceId": "81825729-e824-4d52-9d15-1695e9bf1831", "superInstanceId": "f7e82a1e-fc06-4b82-bb1d-da326cb378ce" }'); -- -- TOC entry 4240 (class 0 OID 88215669) -- Dependencies: 485 -- Data for Name: inventory_instance_statuses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_statuses VALUES ('26f5208e-110a-4394-be29-1569a8c84a65', 'uncat', 'Uncataloged', 'folio', '{ "id": "26f5208e-110a-4394-be29-1569a8c84a65", "code": "uncat", "metadata": { "createdDate": "2021-12-06T01:50:58.707+00:00", "updatedDate": "2021-12-06T01:50:58.707+00:00" }, "name": "Uncataloged", "source": "folio" }'); INSERT INTO inventory_instance_statuses VALUES ('2a340d34-6b70-443a-bb1b-1b8d1c65d862', 'other', 'Other', 'folio', '{ "id": "2a340d34-6b70-443a-bb1b-1b8d1c65d862", "code": "other", "metadata": { "createdDate": "2021-12-06T01:50:58.690+00:00", "updatedDate": "2021-12-06T01:50:58.690+00:00" }, "name": "Other", "source": "folio" }'); INSERT INTO inventory_instance_statuses VALUES ('52a2ff34-2a12-420d-8539-21aa8d3cf5d8', 'batch', 'Batch Loaded', 'folio', '{ "id": "52a2ff34-2a12-420d-8539-21aa8d3cf5d8", "code": "batch", "metadata": { "createdDate": "2021-12-06T01:50:58.702+00:00", "updatedDate": "2021-12-06T01:50:58.702+00:00" }, "name": "Batch Loaded", "source": "folio" }'); INSERT INTO inventory_instance_statuses VALUES ('9634a5ab-9228-4703-baf2-4d12ebc77d56', 'cat', 'Cataloged', 'folio', '{ "id": "9634a5ab-9228-4703-baf2-4d12ebc77d56", "code": "cat", "metadata": { "createdDate": "2021-12-06T01:50:58.717+00:00", "updatedDate": "2021-12-06T01:50:58.717+00:00" }, "name": "Cataloged", "source": "folio" }'); INSERT INTO inventory_instance_statuses VALUES ('daf2681c-25af-4202-a3fa-e58fdf806183', 'temp', 'Temporary', 'folio', '{ "id": "daf2681c-25af-4202-a3fa-e58fdf806183", "code": "temp", "metadata": { "createdDate": "2021-12-06T01:50:58.711+00:00", "updatedDate": "2021-12-06T01:50:58.711+00:00" }, "name": "Temporary", "source": "folio" }'); INSERT INTO inventory_instance_statuses VALUES ('f5cc2ab6-bb92-4cab-b83f-5a3d09261a41', 'none', 'Not yet assigned', 'folio', '{ "id": "f5cc2ab6-bb92-4cab-b83f-5a3d09261a41", "code": "none", "metadata": { "createdDate": "2021-12-06T01:50:58.698+00:00", "updatedDate": "2021-12-06T01:50:58.698+00:00" }, "name": "Not yet assigned", "source": "folio" }'); -- -- TOC entry 4241 (class 0 OID 88215687) -- Dependencies: 486 -- Data for Name: inventory_instance_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instance_types VALUES ('2022aa2e-bdde-4dc4-90bc-115e8894b8b3', 'crf', 'cartographic three-dimensional form', 'rdacontent', '{ "id": "2022aa2e-bdde-4dc4-90bc-115e8894b8b3", "code": "crf", "metadata": { "createdDate": "2021-12-06T01:50:58.233+00:00", "updatedDate": "2021-12-06T01:50:58.233+00:00" }, "name": "cartographic three-dimensional form", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('225faa14-f9bf-4ecd-990d-69433c912434', 'tdi', 'two-dimensional moving image', 'rdacontent', '{ "id": "225faa14-f9bf-4ecd-990d-69433c912434", "code": "tdi", "metadata": { "createdDate": "2021-12-06T01:50:58.209+00:00", "updatedDate": "2021-12-06T01:50:58.209+00:00" }, "name": "two-dimensional moving image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('30fffe0e-e985-4144-b2e2-1e8179bdb41f', 'zzz', 'unspecified', 'rdacontent', '{ "id": "30fffe0e-e985-4144-b2e2-1e8179bdb41f", "code": "zzz", "metadata": { "createdDate": "2021-12-06T01:50:58.197+00:00", "updatedDate": "2021-12-06T01:50:58.197+00:00" }, "name": "unspecified", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('3115fc44-70f6-4ee6-b9a8-cc6bafa113b0', 'inr', 'INN-Reach temporary record', 'inn-reach', '{ "id": "3115fc44-70f6-4ee6-b9a8-cc6bafa113b0", "code": "inr", "metadata": { "createdDate": "2021-12-06T01:53:00.901+00:00", "updatedDate": "2021-12-06T01:53:00.901+00:00" }, "name": "INN-Reach temporary record", "source": "inn-reach" }'); INSERT INTO inventory_instance_types VALUES ('3363cdb1-e644-446c-82a4-dc3a1d4395b9', 'crd', 'cartographic dataset', 'rdacontent', '{ "id": "3363cdb1-e644-446c-82a4-dc3a1d4395b9", "code": "crd", "metadata": { "createdDate": "2021-12-06T01:50:58.174+00:00", "updatedDate": "2021-12-06T01:50:58.174+00:00" }, "name": "cartographic dataset", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('3be24c14-3551-4180-9292-26a786649c8b', 'prm', 'performed music', 'rdacontent', '{ "id": "3be24c14-3551-4180-9292-26a786649c8b", "code": "prm", "metadata": { "createdDate": "2021-12-06T01:50:58.166+00:00", "updatedDate": "2021-12-06T01:50:58.166+00:00" }, "name": "performed music", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('3e3039b7-fda0-4ac4-885a-022d457cb99c', 'tdm', 'three-dimensional moving image', 'rdacontent', '{ "id": "3e3039b7-fda0-4ac4-885a-022d457cb99c", "code": "tdm", "metadata": { "createdDate": "2021-12-06T01:50:58.237+00:00", "updatedDate": "2021-12-06T01:50:58.237+00:00" }, "name": "three-dimensional moving image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('408f82f0-e612-4977-96a1-02076229e312', 'crt', 'cartographic tactile image', 'rdacontent', '{ "id": "408f82f0-e612-4977-96a1-02076229e312", "code": "crt", "metadata": { "createdDate": "2021-12-06T01:50:58.200+00:00", "updatedDate": "2021-12-06T01:50:58.200+00:00" }, "name": "cartographic tactile image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('497b5090-3da2-486c-b57f-de5bb3c2e26d', 'ntm', 'notated music', 'rdacontent', '{ "id": "497b5090-3da2-486c-b57f-de5bb3c2e26d", "code": "ntm", "metadata": { "createdDate": "2021-12-06T01:50:58.213+00:00", "updatedDate": "2021-12-06T01:50:58.213+00:00" }, "name": "notated music", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('526aa04d-9289-4511-8866-349299592c18', 'cri', 'cartographic image', 'rdacontent', '{ "id": "526aa04d-9289-4511-8866-349299592c18", "code": "cri", "metadata": { "createdDate": "2021-12-06T01:50:58.188+00:00", "updatedDate": "2021-12-06T01:50:58.188+00:00" }, "name": "cartographic image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('535e3160-763a-42f9-b0c0-d8ed7df6e2a2', 'sti', 'still image', 'rdacontent', '{ "id": "535e3160-763a-42f9-b0c0-d8ed7df6e2a2", "code": "sti", "metadata": { "createdDate": "2021-12-06T01:50:58.183+00:00", "updatedDate": "2021-12-06T01:50:58.183+00:00" }, "name": "still image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('6312d172-f0cf-40f6-b27d-9fa8feaf332f', 'txt', 'text', 'rdacontent', '{ "id": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "code": "txt", "metadata": { "createdDate": "2021-12-06T01:50:58.217+00:00", "updatedDate": "2021-12-06T01:50:58.217+00:00" }, "name": "text", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('80c0c134-0240-4b63-99d0-6ca755d5f433', 'crm', 'cartographic moving image', 'rdacontent', '{ "id": "80c0c134-0240-4b63-99d0-6ca755d5f433", "code": "crm", "metadata": { "createdDate": "2021-12-06T01:50:58.193+00:00", "updatedDate": "2021-12-06T01:50:58.193+00:00" }, "name": "cartographic moving image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('8105bd44-e7bd-487e-a8f2-b804a361d92f', 'tct', 'tactile text', 'rdacontent', '{ "id": "8105bd44-e7bd-487e-a8f2-b804a361d92f", "code": "tct", "metadata": { "createdDate": "2021-12-06T01:50:58.161+00:00", "updatedDate": "2021-12-06T01:50:58.161+00:00" }, "name": "tactile text", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('82689e16-629d-47f7-94b5-d89736cf11f2', 'tcf', 'tactile three-dimensional form', 'rdacontent', '{ "id": "82689e16-629d-47f7-94b5-d89736cf11f2", "code": "tcf", "metadata": { "createdDate": "2021-12-06T01:50:58.253+00:00", "updatedDate": "2021-12-06T01:50:58.253+00:00" }, "name": "tactile three-dimensional form", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('9bce18bd-45bf-4949-8fa8-63163e4b7d7f', 'snd', 'sounds', 'rdacontent', '{ "id": "9bce18bd-45bf-4949-8fa8-63163e4b7d7f", "code": "snd", "metadata": { "createdDate": "2021-12-06T01:50:58.249+00:00", "updatedDate": "2021-12-06T01:50:58.249+00:00" }, "name": "sounds", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('a2c91e87-6bab-44d6-8adb-1fd02481fc4f', 'xxx', 'other', 'rdacontent', '{ "id": "a2c91e87-6bab-44d6-8adb-1fd02481fc4f", "code": "xxx", "metadata": { "createdDate": "2021-12-06T01:50:58.156+00:00", "updatedDate": "2021-12-06T01:50:58.156+00:00" }, "name": "other", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('a67e00fd-dcce-42a9-9e75-fd654ec31e89', 'tcm', 'tactile notated music', 'rdacontent', '{ "id": "a67e00fd-dcce-42a9-9e75-fd654ec31e89", "code": "tcm", "metadata": { "createdDate": "2021-12-06T01:50:58.204+00:00", "updatedDate": "2021-12-06T01:50:58.204+00:00" }, "name": "tactile notated music", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('c1e95c2b-4efc-48cf-9e71-edb622cf0c22', 'tdf', 'three-dimensional form', 'rdacontent', '{ "id": "c1e95c2b-4efc-48cf-9e71-edb622cf0c22", "code": "tdf", "metadata": { "createdDate": "2021-12-06T01:50:58.170+00:00", "updatedDate": "2021-12-06T01:50:58.170+00:00" }, "name": "three-dimensional form", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('c208544b-9e28-44fa-a13c-f4093d72f798', 'cop', 'computer program', 'rdacontent', '{ "id": "c208544b-9e28-44fa-a13c-f4093d72f798", "code": "cop", "metadata": { "createdDate": "2021-12-06T01:50:58.258+00:00", "updatedDate": "2021-12-06T01:50:58.258+00:00" }, "name": "computer program", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('c7f7446f-4642-4d97-88c9-55bae2ad6c7f', 'spw', 'spoken word', 'rdacontent', '{ "id": "c7f7446f-4642-4d97-88c9-55bae2ad6c7f", "code": "spw", "metadata": { "createdDate": "2021-12-06T01:50:58.241+00:00", "updatedDate": "2021-12-06T01:50:58.241+00:00" }, "name": "spoken word", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('df5dddff-9c30-4507-8b82-119ff972d4d7', 'cod', 'computer dataset', 'rdacontent', '{ "id": "df5dddff-9c30-4507-8b82-119ff972d4d7", "code": "cod", "metadata": { "createdDate": "2021-12-06T01:50:58.229+00:00", "updatedDate": "2021-12-06T01:50:58.229+00:00" }, "name": "computer dataset", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('e5136fa2-1f19-4581-b005-6e007a940ca8', 'crn', 'cartographic tactile three-dimensional form', 'rdacontent', '{ "id": "e5136fa2-1f19-4581-b005-6e007a940ca8", "code": "crn", "metadata": { "createdDate": "2021-12-06T01:50:58.245+00:00", "updatedDate": "2021-12-06T01:50:58.245+00:00" }, "name": "cartographic tactile three-dimensional form", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('e6a278fb-565a-4296-a7c5-8eb63d259522', 'tcn', 'tactile notated movement', 'rdacontent', '{ "id": "e6a278fb-565a-4296-a7c5-8eb63d259522", "code": "tcn", "metadata": { "createdDate": "2021-12-06T01:50:58.179+00:00", "updatedDate": "2021-12-06T01:50:58.179+00:00" }, "name": "tactile notated movement", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('efe2e89b-0525-4535-aa9b-3ff1a131189e', 'tci', 'tactile image', 'rdacontent', '{ "id": "efe2e89b-0525-4535-aa9b-3ff1a131189e", "code": "tci", "metadata": { "createdDate": "2021-12-06T01:50:58.225+00:00", "updatedDate": "2021-12-06T01:50:58.225+00:00" }, "name": "tactile image", "source": "rdacontent" }'); INSERT INTO inventory_instance_types VALUES ('fbe264b5-69aa-4b7c-a230-3b53337f6440', 'ntv', 'notated movement', 'rdacontent', '{ "id": "fbe264b5-69aa-4b7c-a230-3b53337f6440", "code": "ntv", "metadata": { "createdDate": "2021-12-06T01:50:58.220+00:00", "updatedDate": "2021-12-06T01:50:58.220+00:00" }, "name": "notated movement", "source": "rdacontent" }'); -- -- TOC entry 4170 (class 0 OID 88214355) -- Dependencies: 415 -- Data for Name: inventory_instances; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_instances VALUES ('00f10ab9-d845-4334-92d2-ff55862bf4f9', 1, NULL, false, 'inst000000000002', 'American Bar Association journal.', '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.29+00', 'American Bar Association journal.', '{ "id": "00f10ab9-d845-4334-92d2-ff55862bf4f9", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "K1 .M385", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "KB1 .A437", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "347.05 A512", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "d376e36c-b759-4fed-8502-7130d1eeff39", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "American Bar Association" }, { "contributorNameTypeId": "d376e36c-b759-4fed-8502-7130d1eeff39", "contributorTypeId": "06b2cbd8-66bf-4956-9d90-97c9776365a4", "contributorTypeText": "", "name": "American Bar Association. Journal" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000002", "identifiers": [ { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "15017355" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "1964851" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "236213576" }, { "identifierTypeId": "913300b2-03ed-469a-8179-c1092c991227", "value": "0002-7596" }, { "identifierTypeId": "913300b2-03ed-469a-8179-c1092c991227", "value": "0002-7596" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(ICU)BID9651294" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)1479565" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)1964851" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)236213576" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "2363771" } ], "indexTitle": "American Bar Association journal.", "instanceFormatIds": [ "volume nc rdacarrier" ], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.289+00:00", "updatedDate": "2021-12-06T01:51:00.289+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "69 v. : ill. ; 23-30 cm." ], "previouslyHeld": false, "publication": [ { "place": "Chicago, Ill.", "publisher": "American Bar Association" } ], "publicationFrequency": [ "Monthly, 1921-83", "Quarterly, 1915-20" ], "publicationRange": [ "Began with vol. 1, no. 1 (Jan. 1915); ceased with v. 69, [no.12] (Dec. 1983)" ], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.290+0000", "subjects": [ "Law--United States--Periodicals", "Advocatuur.--gtt", "Droit--Périodiques", "LAW--unbist", "LAWYERS--unbist", "UNITED STATES--unbist", "Law.--fast", "United States.--fast" ], "title": "American Bar Association journal." }'); INSERT INTO inventory_instances VALUES ('04489a01-f3cd-4f9e-9be4-d9c198703f45', 1, NULL, false, 'inst000000000015', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.201+00', 'Environment and identity politics in colonial Africa Fulani migrations and land conflict by Emmanuel M. Mbah', '{ "id": "04489a01-f3cd-4f9e-9be4-d9c198703f45", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "DT571.F84", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "967.1100496322", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Mbah, Emmanuel M" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000015", "identifiers": [ { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "2016030844" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781138239555" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781315294179" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)961183745" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV869303589" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.201+00:00", "updatedDate": "2021-12-06T01:51:00.201+00:00" }, "natureOfContentTermIds": [], "notes": [ { "note": "Literaturangaben", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Introduction: The environment in colonial Africa -- British Cameroon grasslands of Bamenda : geography and history -- Heterogeneous societies and ethnic identity : Fulani and cattle migrations -- Resource conflicts : farmers, pastoralists, cattle taxes and disputes over grazing and land -- Towards a resolution : the land settlement question -- Transforming British Bamenda : cattle wealth and development -- Semi-autonomy for pastoralists : native authority and court for the Fulani -- Modernizing the minds : introduction Western education to the pastoral Fulani -- Managing development : grazing innovations -- Continuity and change : the limits of colonial modernization", "staffOnly": false } ], "physicalDescriptions": [ "175 Seiten Karten" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017", "place": "London New York, NY", "publisher": "Routledge Taylor & Francis Group" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [ "Global Africa 2" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.201+0000", "subjects": [ "Fula (African people)--Cameroon--Bamenda Highlands", "Fula (African people)--Land tenure", "Land settlement patterns--Cameroon--Bamenda Highlands", "Cattle--Environmental aspects--Cameroon--Bamenda Highlands", "Grazing--Environmental aspects--Cameroon--Bamenda Highlands", "Kolonie", "Fulbe", "Regionale Mobilität", "Weidewirtschaft", "Ethnische Beziehungen", "Konflikt", "Grundeigentum", "Natürliche Ressourcen", "Cameroon--Ethnic relations", "Great Britain--Colonies--Africa--Administration", "Großbritannien", "Kamerun--Nordwest", "Cameroon Ethnic relations", "Great Britain Colonies Africa Administration", "Cattle Environmental aspects Cameroon Bamenda Highlands", "Fula (African people) Land tenure", "Fula (African people) Cameroon Bamenda Highlands", "Grazing Environmental aspects Cameroon Bamenda Highlands", "Land settlement patterns Cameroon Bamenda Highlands", "Geschichte 1916-1960" ], "title": "Environment and identity politics in colonial Africa Fulani migrations and land conflict by Emmanuel M. Mbah" }'); INSERT INTO inventory_instances VALUES ('1640f178-f243-4e4a-bf1c-9e1e62b3171d', 1, NULL, false, 'inst000000000005', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.871+00', 'Futures, biometrics and neuroscience research Luiz Moutinho, Mladen Sokele, editors', '{ "id": "1640f178-f243-4e4a-bf1c-9e1e62b3171d", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Moutinho, Luiz" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Sokele, Mladen" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [ { "linkText": "Electronic resource (PDF)", "publicNote": "Address for accessing the table of content. PDF file", "uri": "http://www.gbv.de/dms/zbw/101073931X.pdf" } ], "holdingsRecords2": [], "hrid": "inst000000000005", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "101073931X" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "3319643991" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9783319643991" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9783319644004" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)ocn992783736" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)992783736" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV101073931X" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.871+00:00", "updatedDate": "2021-12-06T01:50:59.871+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Enthält 9 Beiträge", "staffOnly": false } ], "physicalDescriptions": [ "xxix, 224 Seiten Illustrationen" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "[2018]", "place": "Cham", "publisher": "Palgrave Macmillan" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2018 }, "publicationRange": [], "series": [ "Innovative research methodologies in management / Luiz Moutinho, Mladen Sokele ; Volume 2", "Innovative research methodologies in management Volume 2" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.871+0000", "subjects": [ "Betriebswirtschaftslehre", "Management", "Wissenschaftliche Methode" ], "title": "Futures, biometrics and neuroscience research Luiz Moutinho, Mladen Sokele, editors" }'); INSERT INTO inventory_instances VALUES ('1b74ab75-9f41-4837-8662-a1d99118008d', 1, NULL, false, 'inst000000000018', NULL, '225faa14-f9bf-4ecd-990d-69433c912434', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.25+00', 'A journey through Europe Bildtontraeger high-speed lines European Commission, Directorate-General for Mobility and Transport', '{ "id": "1b74ab75-9f41-4837-8662-a1d99118008d", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Europäische Kommission Generaldirektion Mobilität und Verkehr" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000018", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "643935371" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9789279164316" }, { "identifierTypeId": "2e8b3b6c-0e7d-4e48-bca2-b0b23b376af5", "value": "10.2768/21035" }, { "identifierTypeId": "b5d8cdc4-9441-487c-90cf-0c7ec97728eb", "value": "MI-32-10-386-57-Z" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV643935371" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "225faa14-f9bf-4ecd-990d-69433c912434", "languages": [ "ger", "eng", "spa", "fre", "ita", "dut", "por" ], "metadata": { "createdDate": "2021-12-06T01:51:00.249+00:00", "updatedDate": "2021-12-06T01:51:00.249+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "1 DVD-Video (14 Min.) farb. 12 cm" ], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.250+0000", "subjects": [ "Europäische Union", "Hochgeschwindigkeitszug", "Verkehrsnetz", "Hochgeschwindigkeitsverkehr", "Schienenverkehr", "EU-Verkehrspolitik", "EU-Staaten" ], "title": "A journey through Europe Bildtontraeger high-speed lines European Commission, Directorate-General for Mobility and Transport" }'); INSERT INTO inventory_instances VALUES ('30fcc8e7-a019-43f4-b642-2edc389f4501', 1, NULL, false, 'inst000000000003', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.754+00', 'The American Journal of Medicine', '{ "id": "30fcc8e7-a019-43f4-b642-2edc389f4501", "_version": 1, "administrativeNotes": [], "alternativeTitles": [ { "alternativeTitle": "The American journal of medicine (online)" }, { "alternativeTitle": "Am. J. med" }, { "alternativeTitle": "Green journal" } ], "classifications": [ { "classificationNumber": "RC60 .A5", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "W1 AM493", "classificationTypeId": "a7f4d03f-b0d8-496c-aebf-4e9cdb678200" } ], "contributors": [], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000003", "identifiers": [ { "identifierTypeId": "593b78cb-32f3-44d1-ba8c-63fd5e6989e6", "value": "AJMEAZ" }, { "identifierTypeId": "913300b2-03ed-469a-8179-c1092c991227", "value": "0002-9343" }, { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "med49002270" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.753+00:00", "updatedDate": "2021-12-06T01:50:59.753+00:00" }, "natureOfContentTermIds": [ "0abeee3d-8ad2-4b04-92ff-221b4fce1075" ], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Print subscription cancelled by Dec. 2016.", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "May 1988-: A Yorke medical. Also known as the Green journal", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Publisher: Excerpta Medica, 2008-; New York, NY : Elsevier Inc. 2013-", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Supplements issued irregularly, 1982.", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Official journal of the Association of Professors of Medicine 2005-", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Indexed quinquennially in: American journal of medicine 5 year cumulative index", "staffOnly": false } ], "physicalDescriptions": [ "v., ill. 27 cm." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1946-", "place": "New York", "publisher": "Dun-Donnelley Pub. Co. " } ], "publicationFrequency": [], "publicationPeriod": { "start": 1946 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.754+0000", "subjects": [ "Clinical medicine-Periodicals", "Medicine", "Geneeskunde" ], "title": "The American Journal of Medicine" }'); INSERT INTO inventory_instances VALUES ('3c4ae3f3-b460-4a89-a2f9-78ce3145e4fc', 1, NULL, false, 'inst000000000008', NULL, 'c208544b-9e28-44fa-a13c-f4093d72f798', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.01+00', 'The chess player’s mating guide Computer Datei Robert Ris', '{ "id": "3c4ae3f3-b460-4a89-a2f9-78ce3145e4fc", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Ris, Robert" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "ChessBase GmbH Hamburg" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000008", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "858092093" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV858092093" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "c208544b-9e28-44fa-a13c-f4093d72f798", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.010+00:00", "updatedDate": "2021-12-06T01:51:00.010+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [ { "dateOfPublication": "[2016]-", "place": "Hamburg", "publisher": "Chessbase GmbH" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2016 }, "publicationRange": [], "series": [ "Fritztrainer Tactics" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.010+0000", "subjects": [ "DVD-ROM" ], "title": "The chess player’s mating guide Computer Datei Robert Ris" }'); INSERT INTO inventory_instances VALUES ('549fad9e-7f8e-4d8e-9a71-00d251817866', 1, NULL, false, 'inst000000000028', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.937+00', 'Agile Organisation, Risiko- und Change Management Harald Augustin (Hrsg.)', '{ "id": "549fad9e-7f8e-4d8e-9a71-00d251817866", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "658.4013", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" }, { "classificationNumber": "650", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Augustin, Harald" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Shaker Verlag GmbH" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [ { "linkText": "Electronic resource (PDF)", "publicNote": "Address for accessing the table of content. PDF file", "uri": "http://d-nb.info/1150176652/04" } ], "holdingsRecords2": [], "hrid": "inst000000000028", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "3844057439" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9783844057430" }, { "identifierTypeId": "2e8b3b6c-0e7d-4e48-bca2-b0b23b376af5", "value": "9783844057430" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)1024128245" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-101)1150176652" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)DNB1150176652" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "ger" ], "metadata": { "createdDate": "2021-12-06T01:50:59.936+00:00", "updatedDate": "2021-12-06T01:50:59.936+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "x, 148 Seiten Illustrationen 21 cm, 188 g" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017", "place": "Aachen", "publisher": "Shaker Verlag" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [ "Umsetzung der DIN EN ISO 9001:2015 / Harald Augustin (Hrsg.) ; Band 2", "Berichte aus der Betriebswirtschaft", "Umsetzung der DIN EN ISO 9001:2015 Band 2" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.937+0000", "subjects": [ "DIN EN ISO 9001:2015", "Standard", "Risikomanagement", "Einführung", "Organisatorischer Wandel", "Industrie", "Deutschland" ], "title": "Agile Organisation, Risiko- und Change Management Harald Augustin (Hrsg.)" }'); INSERT INTO inventory_instances VALUES ('54cc0262-76df-4cac-acca-b10e9bc5c79a', 1, NULL, false, 'inst000000000023', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.139+00', 'On the signature of complex system a decomposed approach Gaofeng Da, Ping Shing Chan, Maochao Xu', '{ "id": "54cc0262-76df-4cac-acca-b10e9bc5c79a", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Da, Gaofeng" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Chan, Ping Shing" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Xu, Maochao" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000023", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "1011184508" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV1011184508" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.139+00:00", "updatedDate": "2021-12-06T01:51:00.139+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.139+0000", "subjects": [], "title": "On the signature of complex system a decomposed approach Gaofeng Da, Ping Shing Chan, Maochao Xu" }'); INSERT INTO inventory_instances VALUES ('5b1eb450-ff9f-412d-a9e7-887f6eaeb5b4', 1, NULL, false, 'inst000000000010', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.12+00', 'Concepts of fashion 1921 - 1987 microform a study of garments worn by selected winners of the Miss America Pageant Marian Ann J. Matwiejczyk-Montgomery', '{ "id": "5b1eb450-ff9f-412d-a9e7-887f6eaeb5b4", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Matwiejczyk-Montgomery, Marian Ann J" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000010", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "1008673218" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV1008673218" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.119+00:00", "updatedDate": "2021-12-06T01:51:00.119+00:00" }, "natureOfContentTermIds": [], "notes": [ { "note": "Dissertation New York University 1993", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Mikrofiche-Ausgabe", "staffOnly": false } ], "physicalDescriptions": [], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1993", "place": "Ann Arbor, MI", "publisher": "University Microfims International" } ], "publicationFrequency": [], "publicationPeriod": { "start": 1993 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.120+0000", "subjects": [ "Hochschulschrift" ], "title": "Concepts of fashion 1921 - 1987 microform a study of garments worn by selected winners of the Miss America Pageant Marian Ann J. Matwiejczyk-Montgomery" }'); INSERT INTO inventory_instances VALUES ('5bf370e0-8cca-4d9c-82e4-5170ab2a0a39', 1, '2019-04-05', false, 'inst000000000022', 'Semantic web primer', '6312d172-f0cf-40f6-b27d-9fa8feaf332f', '9d18a02f-5897-4c31-9106-c9abb5c7ae8b', false, 'FOLIO', NULL, '9634a5ab-9228-4703-baf2-4d12ebc77d56', '2021-12-06 01:50:59.694+00', 'A semantic web primer', '{ "id": "5bf370e0-8cca-4d9c-82e4-5170ab2a0a39", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "catalogedDate": "2019-04-05", "classifications": [ { "classificationNumber": "025.04", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" }, { "classificationNumber": "TK5105.88815 .A58 2004", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Antoniou, Grigoris" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Van Harmelen, Frank" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000022", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "0262012103" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9780262012102" }, { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "2003065165" } ], "indexTitle": "Semantic web primer", "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.694+00:00", "updatedDate": "2021-12-06T01:50:59.694+00:00" }, "modeOfIssuanceId": "9d18a02f-5897-4c31-9106-c9abb5c7ae8b", "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Includes bibliographical references and index.", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "The development of the Semantic Web, with machine-readable content, has the potential to revolutionize the World Wide Web and its uses. A Semantic Web Primer provides an introduction and guide to this continuously evolving field, describing its key ideas, languages, and technologies. Suitable for use as a textbook or for independent study by professionals, it concentrates on undergraduate-level fundamental concepts and techniques that will enable readers to proceed with building applications on their own and includes exercises, project descriptions, and annotated references to relevant online materials. The third edition of this widely used text has been thoroughly updated, with significant new material that reflects a rapidly developing field. Treatment of the different languages (OWL2, rules) expands the coverage of RDF and OWL, defining the data model independently of XML and including coverage of N3/Turtle and RDFa. A chapter is devoted to OWL2, the new W3C standard. This edition also features additional coverage of the query language SPARQL, the rule language RIF and the possibility of interaction between rules and ontology languages and applications. The chapter on Semantic Web applications reflects the rapid developments of the past few years. A new chapter offers ideas for term projects", "staffOnly": false } ], "physicalDescriptions": [ "xx, 238 p. : ill. ; 24 cm." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "c2004", "place": "Cambridge, Mass. ", "publisher": "MIT Press", "role": "Publisher" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2004 }, "publicationRange": [], "series": [ "Cooperative information systems" ], "source": "FOLIO", "statisticalCodeIds": [ "b5968c9e-cddc-4576-99e3-8e60aed8b0dd" ], "statusId": "9634a5ab-9228-4703-baf2-4d12ebc77d56", "statusUpdatedDate": "2021-12-06T01:50:59.694+0000", "subjects": [ "Semantic Web" ], "title": "A semantic web primer" }'); INSERT INTO inventory_instances VALUES ('62ca5b43-0f11-40af-a6b4-1a9ee2db33cb', 1, NULL, false, 'inst000000000020', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.333+00', 'The Neurotic Heroine in Tennessee Williams microform C.N. Stavrou', '{ "id": "62ca5b43-0f11-40af-a6b4-1a9ee2db33cb", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Stavrou, C.N" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000020", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "53957015X" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV53957015X" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.333+00:00", "updatedDate": "2021-12-06T01:51:00.333+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Mikrofilm-Ausg. 1957 1 Mikrofilm", "staffOnly": false } ], "physicalDescriptions": [ "1 Mikrofilm 26-34 S." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1955", "place": "New York", "publisher": "Columbia University" } ], "publicationFrequency": [], "publicationPeriod": { "start": 1955 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.333+0000", "subjects": [], "title": "The Neurotic Heroine in Tennessee Williams microform C.N. Stavrou" }'); INSERT INTO inventory_instances VALUES ('6506b79b-7702-48b2-9774-a1c538fdd34e', 1, NULL, false, 'inst000000000021', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.915+00', 'Nod', '{ "id": "6506b79b-7702-48b2-9774-a1c538fdd34e", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Barnes, Adrian" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000021", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "0956687695" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9780956687695" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:50:59.914+00:00", "updatedDate": "2021-12-06T01:50:59.914+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.915+0000", "subjects": [], "title": "Nod" }'); INSERT INTO inventory_instances VALUES ('69640328-788e-43fc-9c3c-af39e243f3b7', 1, NULL, false, 'inst000000000001', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.079+00', 'ABA Journal', '{ "id": "69640328-788e-43fc-9c3c-af39e243f3b7", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000001", "identifiers": [ { "identifierTypeId": "913300b2-03ed-469a-8179-c1092c991227", "value": "0747-0088" }, { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "84641839" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:51:00.078+00:00", "updatedDate": "2021-12-06T01:51:00.078+00:00" }, "natureOfContentTermIds": [ "0abeee3d-8ad2-4b04-92ff-221b4fce1075" ], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1915-1983", "place": "Chicago, Ill.", "publisher": "American Bar Association" } ], "publicationFrequency": [], "publicationPeriod": { "end": 1983, "start": 1915 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.079+0000", "subjects": [], "title": "ABA Journal" }'); INSERT INTO inventory_instances VALUES ('6b4ae089-e1ee-431f-af83-e1133f8e3da0', 1, NULL, false, 'inst000000000019', NULL, 'a2c91e87-6bab-44d6-8adb-1fd02481fc4f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.032+00', 'MobiCom''17 5 mmNets''17, October 16, 2017, Snowbird, UT, USA / general chairs: Haitham Hassanieh (University of Illinois at Urbana Champaign, USA), Xinyu Zhang (University of California San Diego, USA)', '{ "id": "6b4ae089-e1ee-431f-af83-e1133f8e3da0", "_version": 1, "administrativeNotes": [], "alternativeTitles": [ { "alternativeTitle": "1st First ACM Workshop Millimeter Wave Networks Sensing Systems" } ], "classifications": [], "contributors": [ { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "ACM Workshop on Millimeter Wave Networks and Sensing Systems 1. 2017 Snowbird, Utah" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Hassanieh, Haitham" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Zhang, Xinyu" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "MobiCom 23. 2017 Snowbird, Utah" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Association for Computing Machinery Special Interest Group on Mobility of Systems Users, Data, and Computing" }, { "contributorNameTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0a", "name": "ACM Workshop on Millimeter Wave Networks and Sensing Systems 1 2017.10.16 Snowbird, Utah" }, { "contributorNameTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0a", "name": "mmNets 1 2017.10.16 Snowbird, Utah" }, { "contributorNameTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0a", "name": "Annual International Conference on Mobile Computing and Networking (ACM MobiCom) 23 2017.10.16-20 Snowbird, Utah" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000019", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "1011273942" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781450351430" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV1011273942" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "a2c91e87-6bab-44d6-8adb-1fd02481fc4f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.031+00:00", "updatedDate": "2021-12-06T01:51:00.031+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.032+0000", "subjects": [], "title": "MobiCom''17 5 mmNets''17, October 16, 2017, Snowbird, UT, USA / general chairs: Haitham Hassanieh (University of Illinois at Urbana Champaign, USA), Xinyu Zhang (University of California San Diego, USA)" }'); INSERT INTO inventory_instances VALUES ('6eee8eb9-db1a-46e2-a8ad-780f19974efa', 1, NULL, false, 'inst000000000011', NULL, 'c1e95c2b-4efc-48cf-9e71-edb622cf0c22', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.055+00', 'DC Motor Control Experiment Objekt for introduction to control systems Herbert Werner', '{ "id": "6eee8eb9-db1a-46e2-a8ad-780f19974efa", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Werner, Herbert" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Technische Universität Hamburg-Harburg Institut für Regelungstechnik" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000011", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "727867881" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV727867881" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "c1e95c2b-4efc-48cf-9e71-edb622cf0c22", "languages": [ "ger" ], "metadata": { "createdDate": "2021-12-06T01:51:00.054+00:00", "updatedDate": "2021-12-06T01:51:00.054+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "1 Koffer (Inhalt: 1 Motor mit Platine auf Plattform, 1 Netzteil, 1 USB-Kabel)" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "[2016]", "place": "Hamburg", "publisher": "Techn. Univ., Inst. für Regelungstechnik" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2016 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.055+0000", "subjects": [], "title": "DC Motor Control Experiment Objekt for introduction to control systems Herbert Werner" }'); INSERT INTO inventory_instances VALUES ('7ab22f0a-c9cd-449a-9137-c76e5055ca37', 1, NULL, false, 'inst000000000016', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.225+00', 'Poverty reduction strategies in Africa edited by Toyin Falola and Mike Odugbo Odey', '{ "id": "7ab22f0a-c9cd-449a-9137-c76e5055ca37", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "HV438.A357", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "362.50967", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Falola, Toyin" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Odey, Mike Odugbo" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [ { "linkText": "Electronic resource (PDF)", "publicNote": "Address for accessing the table of content. PDF file", "uri": "http://www.gbv.de/dms/zbw/880159367.pdf" } ], "holdingsRecords2": [], "hrid": "inst000000000016", "identifiers": [ { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "2017004333" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781138240667" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781315282978" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV880159367" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.224+00:00", "updatedDate": "2021-12-06T01:51:00.224+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Enthält 16 Beiträge", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Includes bibliographical references and index", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Introduction / Mike Odugbo Odey and Toyin Falola -- Part I: Dimensions and assessments of poverty reduction policies and programs in Sub-Saharan Africa -- Poverty in post-colonial Africa: the legacy of contested perspectives / Sati U. Fwatshak -- Scaling up power infrastructure investment in Sub-Saharan Africa for poverty alleviation / Aori R. Nyambati -- The impact of anti-corruption conventions in Sub-Saharan Africa / Daniel Barkley and Claire Maduka -- The besieged continent: interrogating contemporary issues of corruption and poverty in Africa / Idris S. Jimada -- PEPFAR and preventing HIV transmission: evidence from Sub-Saharan Africa / Daniel Barkley and Opeyemi Adeniyi -- Reflections on the current challenges of poverty reduction in Africa / Loveday N. Gbara -- A critical analysis of poverty reduction strategies in post-colonial Africa / Okokhere O. Felix -- Part II: Problems of good governance and institutional failures in West-Africa -- Weaknesses and failures of poverty reduction policies and programs in Nigeria since 1960 / Mike O. Odey -- In the web of neo-liberalism and deepening contradictions? Assessing poverty reform strategies in West Africa since the mid-1980s / Okpeh O. Okpeh, Jr. -- An assessment of abuse of the elderly as an aspect of poverty in Akwa-Ibom State, Nigeria / Ekot O. Mildred -- Reflections on the interface between poverty and food insecurity in Nigeria / Funso A. Adesola -- An appraisal of poverty reduction program in Bayelsa State of Nigeria: \\\"In-Care of the People\\\" (COPE) / Ezi Beedie -- A comparative analysis of incidence of poverty in three urban centers in Ghana from 1945-1990 / Wilhelmina J. Donkoh -- Part III: Dimensions of poverty in east and southern Africa -- Landlessness, national politics, and the future of land reforms in Kenya / Shanguhyia S. Martin -- Extra-version and development in northwestern Ethiopia: the case of the Humera Agricultural Project (1967-1975) / Luca Pudu -- Affirmative action as a theological-pastoral challenge in the south-African democratic context / Elijah M. Baloyi.", "staffOnly": false } ], "physicalDescriptions": [ "xiv, 300 Seiten" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2018", "place": "London", "publisher": "Routledge" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2018 }, "publicationRange": [], "series": [ "Global Africa 3" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.225+0000", "subjects": [ "Poverty--Government policy--Africa, Sub-Saharan", "Armut", "Bekämpfung", "Armutsbekämpfung", "Subsahara-Afrika", "Westafrika", "Africa, Sub-Saharan--Economic conditions--21st century", "Subsaharisches Afrika", "Africa, Sub-Saharan Economic conditions 21st century", "Poverty Government policy Africa, Sub-Saharan" ], "title": "Poverty reduction strategies in Africa edited by Toyin Falola and Mike Odugbo Odey" }'); INSERT INTO inventory_instances VALUES ('7fbd5d84-62d1-44c6-9c45-6cb173998bbd', 1, NULL, true, 'inst000000000006', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, true, 'FOLIO', true, NULL, '2021-12-06 01:50:59.847+00', 'Bridget Jones''s Baby: the diaries', '{ "id": "7fbd5d84-62d1-44c6-9c45-6cb173998bbd", "_version": 1, "administrativeNotes": [ "Cataloging data" ], "alternativeTitles": [], "classifications": [ { "classificationNumber": "PR6056.I4588", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Fielding, Helen" } ], "discoverySuppress": true, "editions": [ "First American Edition" ], "electronicAccess": [ { "linkText": "Electronic resource (audio streaming)", "materialsSpecification": "Novel", "publicNote": "Access to audio file", "uri": "http://www.folio.org/" } ], "holdingsRecords2": [], "hrid": "inst000000000006", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "ocn956625961" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.847+00:00", "updatedDate": "2021-12-06T01:50:59.847+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Bridget Jones finds herself unexpectedly pregnant at the eleventh hour. However, her joyful pregnancy is dominated by one crucial but awkward question --who is the father? Could it be honorable, decent, notable human rights lawyer, Mark Darcy? Or, is it charming, witty, and totally despicable, Daniel Cleaver?", "staffOnly": false } ], "physicalDescriptions": [ "219 pages ; 20 cm." ], "previouslyHeld": true, "publication": [ { "dateOfPublication": "2016", "place": "New York", "publisher": "Alfred A. Knopf" } ], "publicationFrequency": [ "A frequency description" ], "publicationPeriod": { "start": 2016 }, "publicationRange": [ "A publication range" ], "series": [], "source": "FOLIO", "staffSuppress": true, "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.847+0000", "subjects": [ "Jones, Bridget", "Pregnant women", "England", "Humorous fiction", "Diary fiction" ], "title": "Bridget Jones''s Baby: the diaries" }'); INSERT INTO inventory_instances VALUES ('81825729-e824-4d52-9d15-1695e9bf1831', 1, NULL, false, 'inst000000000014', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.179+00', 'Dissent, protest and dispute in Africa edited by Emmanuel M. Mbah and Toyin Falola', '{ "id": "81825729-e824-4d52-9d15-1695e9bf1831", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "HN773", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "303.6/9096", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Mbah, Emmanuel M" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Falola, Toyin" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [ { "linkText": "Electronic resource (PDF)", "publicNote": "Address for accessing the table of content. PDF file", "uri": "https://external.dandelon.com/download/attachments/dandelon/ids/DE0069AE502CCFE91E537C1258123001D0DCA.pdf" } ], "holdingsRecords2": [], "hrid": "inst000000000014", "identifiers": [ { "identifierTypeId": "c858e4f2-2b6b-4385-842b-60732ee14abb", "value": "2016022536" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781138220034" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781315413099" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV86011306X" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:51:00.179+00:00", "updatedDate": "2021-12-06T01:51:00.179+00:00" }, "natureOfContentTermIds": [], "notes": [ { "note": "Literaturangaben", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Introduction: Dissent, protest and dispute Africa / Emmanuel M. Mbah and Toyin Falola -- The music of heaven, the music of Earth, and the music of brats: Tuareg Islam, the Devil, and musical performance / Susan J. Rasmussen -- Finding social change backstage and behind the scenes in South African theatre / Nathanael Vlachos -- Soccer and political (ex)pression in Africa: the case of Cameroon / Alain Lawo-Sukam -- Child labor resistance in southern Nigeria, 1916-1938 / Adam Paddock -- M''Fain goes home: African soldiers in the Gabon campaign of 1940 / Mark Reeves -- \\\"Disgraceful disturbances\\\": TANU, the Tanganyikan Rifles, and the 1964 mutiny / Charles Thomas -- The role of ethnicity in political formation in Kenya: 1963-2007 / Tade O. Okediji and Wahutu J. Siguru -- Land, boundaries, chiefs and wars / Toyin Falola -- Borders and boundaries within Ethiopia: dilemmas of group identity, representation and agency / Alexander Meckelburg -- Rural agrarian land conflicts in postcolonial Nigeria''s central region / Sati Fwatshak -- The evolution of the Mungiki militia in Kenya, 1990 to 2010 / Felix Kiruthu -- Refugee-warriors and other people''s wars in post-colonial Africa: the experience of Rwandese and South African military exiles (1960-94) / Tim Stapleton -- Oiling the guns and gunning for oil: the youth and Niger Delta oil conflicts in Nigeria / Christian C. Madubuko.", "staffOnly": false } ], "physicalDescriptions": [ "xi, 293 Seiten" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017", "place": "London New York", "publisher": "Routledge, Taylor & Francis Group" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [ "Global Africa 1" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.179+0000", "subjects": [ "Social conflict--Africa--History--20th century", "Social conflict--Africa--History--21st century", "Political participation--Africa", "Land tenure--Africa", "Africa--Social conditions--20th century", "Africa--Social conditions--21st century", "Africa--Politics and government--20th century", "Africa--Politics and government--21st century", "Africa Politics and government 20th century", "Africa Politics and government 21st century", "Africa Social conditions 20th century", "Africa Social conditions 21st century", "Land tenure Africa", "Political participation Africa", "Social conflict Africa History 20th century", "Social conflict Africa History 21st century" ], "title": "Dissent, protest and dispute in Africa edited by Emmanuel M. Mbah and Toyin Falola" }'); INSERT INTO inventory_instances VALUES ('85010f04-b914-4ac7-ba30-be2b52f79708', 1, NULL, false, 'bwinst0002', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', '9d18a02f-5897-4c31-9106-c9abb5c7ae8b', false, 'FOLIO', NULL, '9634a5ab-9228-4703-baf2-4d12ebc77d56', '2021-12-06 01:51:01.156+00', 'Metod att beräkna en index för landets vattenkrafttillgång / av Åke Rusck och Gösta Nilsson', '{ "id": "85010f04-b914-4ac7-ba30-be2b52f79708", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Rusck, Åke", "primary": true }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Nilsson, Gösta", "primary": false } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "bwinst0002", "identifiers": [ { "identifierTypeId": "439bfbae-75bc-4f74-9fc7-b2a2d47ce3ef", "value": "836918598" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "swe" ], "metadata": { "createdDate": "2021-12-06T01:51:01.155+00:00", "updatedDate": "2021-12-06T01:51:01.155+00:00" }, "modeOfIssuanceId": "9d18a02f-5897-4c31-9106-c9abb5c7ae8b", "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "17 p. ; illustrations" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1942", "place": "Stockholm", "publisher": "Svenska Vattenkraftföreningen" } ], "publicationFrequency": [], "publicationPeriod": { "start": 1942 }, "publicationRange": [], "series": [ "Svenska Vattenkraftforeningens Publikationer ; 352 (1942:11)" ], "source": "FOLIO", "statisticalCodeIds": [], "statusId": "9634a5ab-9228-4703-baf2-4d12ebc77d56", "statusUpdatedDate": "2021-12-06T01:51:01.156+0000", "subjects": [], "tags": { "tagList": [ "bound-with" ] }, "title": "Metod att beräkna en index för landets vattenkrafttillgång / av Åke Rusck och Gösta Nilsson" }'); INSERT INTO inventory_instances VALUES ('8be05cf5-fb4f-4752-8094-8e179d08fb99', 1, NULL, false, 'inst000000000004', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.791+00', 'Anglo-Saxon manuscripts in microfiche facsimile Volume 25 Corpus Christi College, Cambridge II, MSS 12, 144, 162, 178, 188, 198, 265, 285, 322, 326, 449 microform A. N. Doane (editor and director), Matthew T. Hussey (associate editor), Phillip Pulsiano (founding editor)', '{ "id": "8be05cf5-fb4f-4752-8094-8e179d08fb99", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Lucas, Peter J" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Arizona Center for Medieval and Renaissance Studies" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000004", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "880391235" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9780866989732" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "0866989730" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9780866985529" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "0866985522" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)962073864" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)ocn962073864" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)962073864" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV880391235" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng", "ang", "lat" ], "metadata": { "createdDate": "2021-12-06T01:50:59.790+00:00", "updatedDate": "2021-12-06T01:50:59.790+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Titel und Angaben zu beteiligter Person vom Begleitheft", "staffOnly": false }, { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "In English with segments in Anglo-Saxon and Latin", "staffOnly": false } ], "physicalDescriptions": [ "69 Mikrofiches 1 Begleitbuch (XII, 167 Seiten)" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2016", "place": "Tempe, Arizona", "publisher": "ACMRS, Arizona Center for Medieval and Renaissance Studies" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2016 }, "publicationRange": [], "series": [ "Medieval and Renaissance Texts and Studies volume 497", "volume 497" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.791+0000", "subjects": [], "title": "Anglo-Saxon manuscripts in microfiche facsimile Volume 25 Corpus Christi College, Cambridge II, MSS 12, 144, 162, 178, 188, 198, 265, 285, 322, 326, 449 microform A. N. Doane (editor and director), Matthew T. Hussey (associate editor), Phillip Pulsiano (founding editor)" }'); INSERT INTO inventory_instances VALUES ('a317b304-528c-424f-961c-39174933b454', 1, NULL, false, 'inst000000000026', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.895+00', 'Umsetzung der DIN EN ISO 9001:2015 Harald Augustin (Hrsg.)', '{ "id": "a317b304-528c-424f-961c-39174933b454", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Augustin, Harald" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000026", "identifiers": [ { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV101484262X" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "ger" ], "metadata": { "createdDate": "2021-12-06T01:50:59.894+00:00", "updatedDate": "2021-12-06T01:50:59.894+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017", "place": "Aachen", "publisher": "Shaker Verlag" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [ "Berichte aus der Betriebswirtschaft" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.895+0000", "subjects": [], "title": "Umsetzung der DIN EN ISO 9001:2015 Harald Augustin (Hrsg.)" }'); INSERT INTO inventory_instances VALUES ('a89eccf0-57a6-495e-898d-32b9b2210f2f', 1, NULL, false, 'inst000000000017', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.988+00', 'Interesting Times', '{ "id": "a89eccf0-57a6-495e-898d-32b9b2210f2f", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Pratchett, Terry" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000017", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "0552142352" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9780552142352" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:50:59.988+00:00", "updatedDate": "2021-12-06T01:50:59.988+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.988+0000", "subjects": [], "title": "Interesting Times" }'); INSERT INTO inventory_instances VALUES ('bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0', 1, NULL, false, 'inst000000000029', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.16+00', 'Water resources of East Feliciana Parish, Louisiana', '{ "id": "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "White, Vincent E." } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000029", "identifiers": [], "instanceFormatIds": [ "f5e8210f-7640-459b-a71f-552567f92369" ], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:51:00.159+00:00", "updatedDate": "2021-12-06T01:51:00.159+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.160+0000", "subjects": [], "title": "Water resources of East Feliciana Parish, Louisiana" }'); INSERT INTO inventory_instances VALUES ('c1d3be12-ecec-4fab-9237-baf728575185', 1, NULL, false, 'inst000000000009', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.963+00', 'The city post-modernity edited by Alan Latham', '{ "id": "c1d3be12-ecec-4fab-9237-baf728575185", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "H", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" }, { "classificationNumber": "300", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Latham, Alan" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000009", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "1010770160" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781473937703" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV1010770160" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.963+00:00", "updatedDate": "2021-12-06T01:50:59.963+00:00" }, "natureOfContentTermIds": [], "notes": [ { "instanceNoteTypeId": "6a2533a7-4de2-4e64-8466-074c2fa9308c", "note": "Cities are sites of great wealth and poverty, of hope and despair, of social and economic dynamism, as well as tradition and established power. Social scientists and humanities scholars have over the past three decades generated an impressive range of perspectives for making sense of the vast complexities of cities. These perspectives tell both of the economic, social and political dynamism cities generate, and point to possible lines of future development. The four volumes, The City: Post-Modernity, will focus more exclusively on the contemporary city, looking at the subject through the lenses of globalization and post-colonialism, amongst others", "staffOnly": false } ], "physicalDescriptions": [], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2018", "place": "Los Angeles London New Delhi Singapore Washington DC Melbourne", "publisher": "SAGE" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2018 }, "publicationRange": [], "series": [ "SAGE benchmarks in culture and society" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.963+0000", "subjects": [ "Stadt", "Postmoderne", "Aufsatzsammlung" ], "title": "The city post-modernity edited by Alan Latham" }'); INSERT INTO inventory_instances VALUES ('cd3288a4-898c-4347-a003-2d810ef70f03', 1, NULL, false, 'bwinst0003', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', '9d18a02f-5897-4c31-9106-c9abb5c7ae8b', false, 'FOLIO', NULL, '9634a5ab-9228-4703-baf2-4d12ebc77d56', '2021-12-06 01:51:01.136+00', 'Elpannan och dess ekonomiska förutsättningar / av Hakon Wærn', '{ "id": "cd3288a4-898c-4347-a003-2d810ef70f03", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Wærn, Hakon", "primary": true } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "bwinst0003", "identifiers": [ { "identifierTypeId": "439bfbae-75bc-4f74-9fc7-b2a2d47ce3ef", "value": "255752480" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "swe" ], "metadata": { "createdDate": "2021-12-06T01:51:01.136+00:00", "updatedDate": "2021-12-06T01:51:01.136+00:00" }, "modeOfIssuanceId": "9d18a02f-5897-4c31-9106-c9abb5c7ae8b", "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "23 p." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1942", "place": "Stockholm", "publisher": "Svenska Vattenkraftföreningen" } ], "publicationFrequency": [], "publicationPeriod": { "start": 1942 }, "publicationRange": [], "series": [ "Svenska Vattenkraftforeningens Publikationer ; 351 (1942:10)" ], "source": "FOLIO", "statisticalCodeIds": [], "statusId": "9634a5ab-9228-4703-baf2-4d12ebc77d56", "statusUpdatedDate": "2021-12-06T01:51:01.136+0000", "subjects": [], "tags": { "tagList": [ "bound-with" ] }, "title": "Elpannan och dess ekonomiska förutsättningar / av Hakon Wærn" }'); INSERT INTO inventory_instances VALUES ('ce00bca2-9270-4c6b-b096-b83a2e56e8e9', 1, NULL, false, 'inst000000000007', NULL, '3be24c14-3551-4180-9292-26a786649c8b', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.099+00', 'Cantatas for bass 4 Ich habe genug : BWV 82 / Johann Sebastian Bach ; Matthias Goerne, baritone ; Freiburger Barockorchester, Gottfried von der Goltz, violin and conductor', '{ "id": "ce00bca2-9270-4c6b-b096-b83a2e56e8e9", "_version": 1, "administrativeNotes": [], "alternativeTitles": [ { "alternativeTitle": "Ich habe genung" }, { "alternativeTitle": "Abweichender Titel Ich habe genung" } ], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Bach, Johann Sebastian" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Arfken, Katharina" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Goltz, Gottfried von der" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Freiburger Barockorchester" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000007", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "1011162431" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)GBV1011162431" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "3be24c14-3551-4180-9292-26a786649c8b", "languages": [ "ger" ], "metadata": { "createdDate": "2021-12-06T01:51:00.099+00:00", "updatedDate": "2021-12-06T01:51:00.099+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "Track 10-14" ], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.099+0000", "subjects": [], "title": "Cantatas for bass 4 Ich habe genug : BWV 82 / Johann Sebastian Bach ; Matthias Goerne, baritone ; Freiburger Barockorchester, Gottfried von der Goltz, violin and conductor" }'); INSERT INTO inventory_instances VALUES ('ce9dd893-c812-49d5-8973-d55d018894c4', 1, NULL, false, 'bwinst0001', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', '9d18a02f-5897-4c31-9106-c9abb5c7ae8b', false, 'FOLIO', NULL, '9634a5ab-9228-4703-baf2-4d12ebc77d56', '2021-12-06 01:51:01.117+00', 'Rapport från inspektionsresa till svenska betongdammar i augusti 1939, med särskild hänsyn till sprickbildningsfrågan och användandet av specialcement / av S. Giertz-Hedström', '{ "id": "ce9dd893-c812-49d5-8973-d55d018894c4", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "6e09d47d-95e2-4d8a-831b-f777b8ef6d81", "contributorTypeText": "", "name": "Giertz-Hedström, S.", "primary": true } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "bwinst0001", "identifiers": [], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "swe" ], "metadata": { "createdDate": "2021-12-06T01:51:01.117+00:00", "updatedDate": "2021-12-06T01:51:01.117+00:00" }, "modeOfIssuanceId": "9d18a02f-5897-4c31-9106-c9abb5c7ae8b", "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "16 p." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "1942", "place": "Stockholm", "publisher": "Svenska Vattenkraftföreningen" } ], "publicationFrequency": [], "publicationPeriod": { "start": 1942 }, "publicationRange": [], "series": [ "Svenska Vattenkraftforeningens Publikationer ; 354 (1942:16)" ], "source": "FOLIO", "statisticalCodeIds": [], "statusId": "9634a5ab-9228-4703-baf2-4d12ebc77d56", "statusUpdatedDate": "2021-12-06T01:51:01.117+0000", "subjects": [], "tags": { "tagList": [ "bound-with" ] }, "title": "Rapport från inspektionsresa till svenska betongdammar i augusti 1939, med särskild hänsyn till sprickbildningsfrågan och användandet av specialcement / av S. Giertz-Hedström" }'); INSERT INTO inventory_instances VALUES ('cf23adf0-61ba-4887-bf82-956c4aae2260', 1, NULL, false, 'inst000000000024', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.311+00', 'Temeraire', '{ "id": "cf23adf0-61ba-4887-bf82-956c4aae2260", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Novik, Naomi" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000024", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "1447294130" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9781447294130" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:51:00.311+00:00", "updatedDate": "2021-12-06T01:51:00.311+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.311+0000", "subjects": [], "title": "Temeraire" }'); INSERT INTO inventory_instances VALUES ('e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6', 1, NULL, false, 'inst000000000025', NULL, '3be24c14-3551-4180-9292-26a786649c8b', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:51:00.269+00', 'Transparent water', '{ "id": "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "M1366.S67", "classificationTypeId": "ce176ace-a53e-4b4d-aa89-725ed7b2edac" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "9f0a2cf0-7a9b-45a2-a403-f68d2850d07c", "name": "Sosa, Omar" }, { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "contributorTypeId": "9f0a2cf0-7a9b-45a2-a403-f68d2850d07c", "name": "Keita, Seckou, 1977-" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000025", "identifiers": [ { "identifierTypeId": "5d164f4b-0b15-4e42-ae75-cfcf85318ad9", "value": "ocn968777846" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9786316800312" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "6316800312" }, { "identifierTypeId": "b5d8cdc4-9441-487c-90cf-0c7ec97728eb", "value": "OTA-1031 Otá Records" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)968777846" } ], "instanceFormatIds": [ "5cb91d15-96b1-4b8a-bf60-ec310538da66" ], "instanceFormats": [], "instanceTypeId": "3be24c14-3551-4180-9292-26a786649c8b", "languages": [ "und" ], "metadata": { "createdDate": "2021-12-06T01:51:00.268+00:00", "updatedDate": "2021-12-06T01:51:00.268+00:00" }, "natureOfContentTermIds": [], "notes": [ { "note": "Title from disc label.", "staffOnly": false }, { "note": "All compositions written by Omar Sosa and Seckou Keita, except tracks 6, 8 and 10 written by Omar Sosa.", "staffOnly": false }, { "note": "Produced by Steve Argüelles and Omar Sosa.", "staffOnly": false }, { "note": "Omar Sosa, grand piano, Fender Rhodes, sampler, microKorg, vocals ; Seckou Keita, kora, talking drum, djembe, sabar, vocals ; Wu Tong, sheng, bawu ; Mieko Miyazaki, koto ; Gustavo Ovalles, bata drums, culo''e puya, maracas, guataca, calabaza, clave ; E''Joung-Ju, geojungo ; Mosin Khan Kawa, nagadi ; Dominique Huchet, bird effects.", "staffOnly": false } ], "physicalDescriptions": [ "1 audio disc: digital; 4 3/4 in." ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "[2017]", "place": "[Place of publication not identified]: ", "publisher": "Otá Records, " } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:51:00.269+0000", "subjects": [ "World music.", "Jazz" ], "title": "Transparent water" }'); INSERT INTO inventory_instances VALUES ('e6bc03c6-c137-4221-b679-a7c5c31f986c', 1, NULL, false, 'inst000000000027', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.571+00', 'Organisations- und Prozessentwicklung Harald Augustin (Hrsg.)', '{ "id": "e6bc03c6-c137-4221-b679-a7c5c31f986c", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "658.4013", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" }, { "classificationNumber": "650", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [ { "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a", "name": "Augustin, Harald" }, { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Shaker Verlag GmbH" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [ { "linkText": "Electronic resource (PDF)", "publicNote": "Address for accessing the table of content. PDF file", "uri": "http://d-nb.info/1150175923/04" } ], "holdingsRecords2": [], "hrid": "inst000000000027", "identifiers": [ { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "3844057420" }, { "identifierTypeId": "8261054f-be78-422d-bd51-4ed9f33c3422", "value": "9783844057423" }, { "identifierTypeId": "2e8b3b6c-0e7d-4e48-bca2-b0b23b376af5", "value": "9783844057423" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)1024095011" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-101)1150175923" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)DNB1150175923" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "ger" ], "metadata": { "createdDate": "2021-12-06T01:50:59.570+00:00", "updatedDate": "2021-12-06T01:50:59.570+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "x, 113 Seiten Illustrationen 21 cm, 223 g" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017", "place": "Aachen", "publisher": "Shaker Verlag" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [ "Umsetzung der DIN EN ISO 9001:2015 / Harald Augustin (Hrsg.) ; Band 1", "Berichte aus der Betriebswirtschaft", "Umsetzung der DIN EN ISO 9001:2015 Band 1" ], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.571+0000", "subjects": [ "DIN EN ISO 9001:2015", "Standard", "Organisatorischer Wandel", "Prozessmanagement", "Einführung", "Industrie", "Deutschland" ], "title": "Organisations- und Prozessentwicklung Harald Augustin (Hrsg.)" }'); INSERT INTO inventory_instances VALUES ('f31a36de-fcf8-44f9-87ef-a55d06ad21ae', 1, NULL, false, 'inst000000000012', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.818+00', 'The Girl on the Train', '{ "id": "f31a36de-fcf8-44f9-87ef-a55d06ad21ae", "_version": 1, "administrativeNotes": [], "alternativeTitles": [ { "alternativeTitle": "First alternative title" }, { "alternativeTitle": "Second alternative title" } ], "classifications": [], "contributors": [ { "contributorNameTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210aa", "name": "Creator A" }, { "contributorNameTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0a", "name": "Creator B" } ], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000012", "identifiers": [ { "identifierTypeId": "7f907515-a1bf-4513-8a38-92e1a07c539d", "value": "B01LO7PJOE" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [], "metadata": { "createdDate": "2021-12-06T01:50:59.817+00:00", "updatedDate": "2021-12-06T01:50:59.817+00:00" }, "natureOfContentTermIds": [ "44cd89f3-2e76-469f-a955-cc57cb9e0395" ], "notes": [], "physicalDescriptions": [], "previouslyHeld": false, "publication": [], "publicationFrequency": [], "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.818+0000", "subjects": [], "title": "The Girl on the Train" }'); INSERT INTO inventory_instances VALUES ('f7e82a1e-fc06-4b82-bb1d-da326cb378ce', 1, NULL, false, 'inst000000000013', NULL, '6312d172-f0cf-40f6-b27d-9fa8feaf332f', NULL, false, 'FOLIO', NULL, NULL, '2021-12-06 01:50:59.724+00', 'Global Africa', '{ "id": "f7e82a1e-fc06-4b82-bb1d-da326cb378ce", "_version": 1, "administrativeNotes": [], "alternativeTitles": [], "classifications": [ { "classificationNumber": "300", "classificationTypeId": "42471af9-7d25-4f3a-bf78-60d29dcf463b" } ], "contributors": [], "discoverySuppress": false, "editions": [], "electronicAccess": [], "holdingsRecords2": [], "hrid": "inst000000000013", "identifiers": [ { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(OCoLC)981117973" }, { "identifierTypeId": "7e591197-f335-4afb-bc6d-a6d76ca3bace", "value": "(DE-599)ZDB2905315-8" } ], "instanceFormatIds": [], "instanceFormats": [], "instanceTypeId": "6312d172-f0cf-40f6-b27d-9fa8feaf332f", "languages": [ "eng" ], "metadata": { "createdDate": "2021-12-06T01:50:59.724+00:00", "updatedDate": "2021-12-06T01:50:59.724+00:00" }, "natureOfContentTermIds": [], "notes": [], "physicalDescriptions": [ "Bände" ], "previouslyHeld": false, "publication": [ { "dateOfPublication": "2017-", "place": "London New York", "publisher": "Routledge, Taylor & Francis Group" } ], "publicationFrequency": [], "publicationPeriod": { "start": 2017 }, "publicationRange": [], "series": [], "source": "FOLIO", "statisticalCodeIds": [], "statusUpdatedDate": "2021-12-06T01:50:59.724+0000", "subjects": [ "Monografische Reihe" ], "title": "Global Africa" }'); -- -- TOC entry 4244 (class 0 OID 88215737) -- Dependencies: 489 -- Data for Name: inventory_institutions; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_institutions VALUES ('40ee00ca-a518-4b49-be01-0638d0a4ac57', 'KU', 'Københavns Universitet', '{ "id": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "code": "KU", "metadata": { "createdDate": "2021-12-06T01:50:56.285+00:00", "updatedDate": "2021-12-06T01:50:56.285+00:00" }, "name": "Københavns Universitet" }'); -- -- TOC entry 4242 (class 0 OID 88215704) -- Dependencies: 487 -- Data for Name: inventory_item_damaged_statuses; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_item_damaged_statuses VALUES ('516b82eb-1f19-4a63-8c48-8f1a3e9ff311', 'Not Damaged', 'local', '{ "id": "516b82eb-1f19-4a63-8c48-8f1a3e9ff311", "metadata": { "createdDate": "2021-12-06T01:50:59.465+00:00", "updatedDate": "2021-12-06T01:50:59.465+00:00" }, "name": "Not Damaged", "source": "local" }'); INSERT INTO inventory_item_damaged_statuses VALUES ('54d1dd76-ea33-4bcb-955b-6b29df4f7930', 'Damaged', 'local', '{ "id": "54d1dd76-ea33-4bcb-955b-6b29df4f7930", "metadata": { "createdDate": "2021-12-06T01:50:59.459+00:00", "updatedDate": "2021-12-06T01:50:59.459+00:00" }, "name": "Damaged", "source": "local" }'); -- -- TOC entry 4243 (class 0 OID 88215720) -- Dependencies: 488 -- Data for Name: inventory_item_note_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_item_note_types VALUES ('0e40884c-3523-4c6d-8187-d578e3d2794e', 'Action note', 'folio', '{ "id": "0e40884c-3523-4c6d-8187-d578e3d2794e", "metadata": { "createdDate": "2021-12-06T01:50:59.437+00:00", "updatedDate": "2021-12-06T01:50:59.437+00:00" }, "name": "Action note", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('1dde7141-ec8a-4dae-9825-49ce14c728e7', 'Copy note', 'folio', '{ "id": "1dde7141-ec8a-4dae-9825-49ce14c728e7", "metadata": { "createdDate": "2021-12-06T01:50:59.448+00:00", "updatedDate": "2021-12-06T01:50:59.448+00:00" }, "name": "Copy note", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('87c450be-2033-41fb-80ba-dd2409883681', 'Binding', 'folio', '{ "id": "87c450be-2033-41fb-80ba-dd2409883681", "metadata": { "createdDate": "2021-12-06T01:50:59.433+00:00", "updatedDate": "2021-12-06T01:50:59.433+00:00" }, "name": "Binding", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('8d0a5eca-25de-4391-81a9-236eeefdd20b', 'Note', 'folio', '{ "id": "8d0a5eca-25de-4391-81a9-236eeefdd20b", "metadata": { "createdDate": "2021-12-06T01:50:59.440+00:00", "updatedDate": "2021-12-06T01:50:59.440+00:00" }, "name": "Note", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('acb3a58f-1d72-461d-97c3-0e7119e8d544', 'Reproduction', 'folio', '{ "id": "acb3a58f-1d72-461d-97c3-0e7119e8d544", "metadata": { "createdDate": "2021-12-06T01:50:59.425+00:00", "updatedDate": "2021-12-06T01:50:59.425+00:00" }, "name": "Reproduction", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('c3a539b9-9576-4e3a-b6de-d910200b2919', 'Provenance', 'folio', '{ "id": "c3a539b9-9576-4e3a-b6de-d910200b2919", "metadata": { "createdDate": "2021-12-06T01:50:59.444+00:00", "updatedDate": "2021-12-06T01:50:59.444+00:00" }, "name": "Provenance", "source": "folio" }'); INSERT INTO inventory_item_note_types VALUES ('f3ae3823-d096-4c65-8734-0c1efd2ffea8', 'Electronic bookplate', 'folio', '{ "id": "f3ae3823-d096-4c65-8734-0c1efd2ffea8", "metadata": { "createdDate": "2021-12-06T01:50:59.430+00:00", "updatedDate": "2021-12-06T01:50:59.430+00:00" }, "name": "Electronic bookplate", "source": "folio" }'); -- -- TOC entry 4171 (class 0 OID 88214392) -- Dependencies: 416 -- Data for Name: inventory_items; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_items VALUES ('0b96a642-5e7f-452d-9cae-9cee66c9a892', 1, '645398607547', NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '', NULL, 'e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 'item000000000017', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "0b96a642-5e7f-452d-9cae-9cee66c9a892", "_version": 1, "administrativeNotes": [], "barcode": "645398607547", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "some-callnumber" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "hrid": "item000000000017", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.840+00:00", "updatedDate": "2021-12-06T01:51:00.840+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.840+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('100d10bf-2f06-4aa0-be15-0b95b2d9f9e3', 2, '90000', '', NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', 'TK 45105.88815 A58 42004 FT MEADE', '', 'e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19', 'item000000000015', 'TK5105.88815 . A58 2004 FT MEADE', '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', '{ "id": "100d10bf-2f06-4aa0-be15-0b95b2d9f9e3", "_version": 2, "administrativeNotes": [], "barcode": "90000", "chronology": "", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "TK5105.88815 . A58 2004 FT MEADE", "typeId": "512173a7-bd09-490e-b773-17d83f2b63fe" }, "effectiveLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "effectiveShelvingOrder": "TK 45105.88815 A58 42004 FT MEADE", "electronicAccess": [ { "linkText": "Links available", "materialsSpecification": "Table of contents", "publicNote": "Table of contents only", "relationshipId": "3b430592-2e09-4b48-9a0c-0636d66b9fb3", "uri": "http://www.loc.gov/catdir/toc/ecip0718/2007020429.html" } ], "enumeration": "", "formerIds": [], "holdingsRecordId": "e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19", "hrid": "item000000000015", "itemLevelCallNumber": "TK5105.88815 . A58 2004 FT MEADE", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.856+00:00", "updatedDate": "2021-12-06T01:52:15.839+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [ "b5968c9e-cddc-4576-99e3-8e60aed8b0dd" ], "status": { "date": "2021-12-06T01:51:00.857+00:00", "name": "Available" }, "temporaryLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('1714f71f-b845-444b-a79e-a577487a6f7d', 1, '000111222333444', NULL, 'c.1', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'R 211 A38 V 230 41961 C 11', 'v. 30 1961', '133a7916-f05e-4df4-8f7f-09eb2a7076d1', 'item000000000007', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2e48e713-17f3-4c13-a9f8-23845bb210a4', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, '{ "id": "1714f71f-b845-444b-a79e-a577487a6f7d", "_version": 1, "administrativeNotes": [], "barcode": "000111222333444", "circulationNotes": [], "copyNumber": "c.1", "effectiveCallNumberComponents": { "callNumber": "R11.A38" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "R 211 A38 V 230 41961 C 11", "electronicAccess": [], "enumeration": "v. 30 1961", "formerIds": [], "holdingsRecordId": "133a7916-f05e-4df4-8f7f-09eb2a7076d1", "hrid": "item000000000007", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.671+00:00", "updatedDate": "2021-12-06T01:51:00.671+00:00" }, "notes": [], "permanentLoanTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210a4", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.671+00:00", "name": "Available" }, "temporaryLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('1b6d3338-186e-4e35-9e75-1b886b0da53e', 1, '453987605438', NULL, 'Copy 1', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'PR 46056 I4588 B749 42016 COPY 11', NULL, '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'item000000000008', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', '1', '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, 'e8b311a6-3b21-43f2-a269-dd9310cb2d0e', NULL, '{ "id": "1b6d3338-186e-4e35-9e75-1b886b0da53e", "_version": 1, "administrativeNotes": [], "barcode": "453987605438", "circulationNotes": [], "copyNumber": "Copy 1", "effectiveCallNumberComponents": { "callNumber": "PR6056.I4588 B749 2016" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "PR 46056 I4588 B749 42016 COPY 11", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "hrid": "item000000000008", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.704+00:00", "updatedDate": "2021-12-06T01:51:00.704+00:00" }, "notes": [ { "itemNoteTypeId": "8d0a5eca-25de-4391-81a9-236eeefdd20b", "note": "Signed by the author", "staffOnly": false } ], "numberOfPieces": "1", "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.705+00:00", "name": "Checked out" }, "temporaryLoanTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0e", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('23f2c8e1-bd5d-4f27-9398-a688c998808a', 1, '697685458679', NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '', NULL, '68872d8a-bf16-420b-829f-206da38f6c10', 'item000000000013', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2e48e713-17f3-4c13-a9f8-23845bb210a4', NULL, NULL, NULL, '{ "id": "23f2c8e1-bd5d-4f27-9398-a688c998808a", "_version": 1, "administrativeNotes": [], "barcode": "697685458679", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "some-callnumber" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "68872d8a-bf16-420b-829f-206da38f6c10", "hrid": "item000000000013", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.733+00:00", "updatedDate": "2021-12-06T01:51:00.733+00:00" }, "notes": [], "permanentLoanTypeId": "2e48e713-17f3-4c13-a9f8-23845bb210a4", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.733+00:00", "name": "Checked out" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('23fdb0bc-ab58-442a-b326-577a96204487', 1, '653285216743', NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '', NULL, 'e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79', 'item000000000016', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "23fdb0bc-ab58-442a-b326-577a96204487", "_version": 1, "administrativeNotes": [], "barcode": "653285216743", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "some-callnumber" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "e6d7e91a-4dbc-4a70-9b38-e000d2fbdc79", "hrid": "item000000000016", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.986+00:00", "updatedDate": "2021-12-06T01:51:00.986+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.986+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('4428a37c-8bae-4f0d-865d-970d83d5ad55', 1, '4539876054382', NULL, 'Copy 2', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'PR 46056 I4588 B749 42016 COPY 12', NULL, '65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61', 'item000000000009', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', '1', '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, 'e8b311a6-3b21-43f2-a269-dd9310cb2d0e', NULL, '{ "id": "4428a37c-8bae-4f0d-865d-970d83d5ad55", "_version": 1, "administrativeNotes": [], "barcode": "4539876054382", "circulationNotes": [], "copyNumber": "Copy 2", "effectiveCallNumberComponents": { "callNumber": "PR6056.I4588 B749 2016" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "PR 46056 I4588 B749 42016 COPY 12", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "65cb2bf0-d4c2-4886-8ad0-b76f1ba75d61", "hrid": "item000000000009", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.967+00:00", "updatedDate": "2021-12-06T01:51:00.967+00:00" }, "notes": [ { "itemNoteTypeId": "8d0a5eca-25de-4391-81a9-236eeefdd20b", "note": "Missing pages; p 10-13", "staffOnly": false }, { "itemNoteTypeId": "0e40884c-3523-4c6d-8187-d578e3d2794e", "note": "My action note", "staffOnly": false }, { "itemNoteTypeId": "1dde7141-ec8a-4dae-9825-49ce14c728e7", "note": "My copy note", "staffOnly": false }, { "itemNoteTypeId": "c3a539b9-9576-4e3a-b6de-d910200b2919", "note": "My provenance", "staffOnly": false }, { "itemNoteTypeId": "acb3a58f-1d72-461d-97c3-0e7119e8d544", "note": "My reproduction", "staffOnly": false } ], "numberOfPieces": "1", "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.968+00:00", "name": "Available" }, "temporaryLoanTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0e", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('459afaba-5b39-468d-9072-eb1685e0ddf4', 1, '765475420716', NULL, NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', '', NULL, '65032151-39a5-4cef-8810-5350eb316300', 'item000000000011', NULL, '5ee11d91-f7e8-481d-b079-65d708582ccc', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, '53cf956f-c1df-410b-8bea-27f712cca7c0', '{ "id": "459afaba-5b39-468d-9072-eb1685e0ddf4", "_version": 1, "administrativeNotes": [], "barcode": "765475420716", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "MCN FICTION" }, "effectiveLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "effectiveShelvingOrder": "", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "65032151-39a5-4cef-8810-5350eb316300", "hrid": "item000000000011", "materialTypeId": "5ee11d91-f7e8-481d-b079-65d708582ccc", "metadata": { "createdDate": "2021-12-06T01:51:00.655+00:00", "updatedDate": "2021-12-06T01:51:00.655+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.655+00:00", "name": "Available" }, "temporaryLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('645549b1-2a73-4251-b8bb-39598f773a93', 1, 'A14813848587', '1985:July-Dec.', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 271 NO 16 12 41985 JULY DEC', 'v.71:no.6-2', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000004', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "645549b1-2a73-4251-b8bb-39598f773a93", "_version": 1, "administrativeNotes": [], "barcode": "A14813848587", "chronology": "1985:July-Dec.", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 271 NO 16 12 41985 JULY DEC", "electronicAccess": [], "enumeration": "v.71:no.6-2", "formerIds": [], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000004", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.633+00:00", "updatedDate": "2021-12-06T01:51:00.633+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.633+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('6c7196d2-0c2a-4707-a196-ff6b9e84a75e', 1, '12', NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'DE 13', NULL, '13767c78-f8d0-425e-801d-cc5bd475856a', 'bwit000000001', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "6c7196d2-0c2a-4707-a196-ff6b9e84a75e", "_version": 1, "administrativeNotes": [], "barcode": "12", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "DE3" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "DE 13", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "13767c78-f8d0-425e-801d-cc5bd475856a", "hrid": "bwit000000001", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:01.245+00:00", "updatedDate": "2021-12-06T01:51:01.245+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:01.246+00:00", "name": "Available" }, "tags": { "tagList": [ "bound-with" ] }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('7212ba6a-8dcf-45a1-be9a-ffaa847c4423', 1, '10101', '', 'Copy 2', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'TK 45105.88815 A58 42004 FT MEADE COPY 12', '', 'e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19', 'item000000000014', 'TK5105.88815 . A58 2004 FT MEADE', '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', 'fcd64ce1-6995-48f0-840e-89ffa2288371', NULL, NULL, '{ "id": "7212ba6a-8dcf-45a1-be9a-ffaa847c4423", "_version": 1, "administrativeNotes": [], "barcode": "10101", "chronology": "", "circulationNotes": [], "copyNumber": "Copy 2", "effectiveCallNumberComponents": { "callNumber": "TK5105.88815 . A58 2004 FT MEADE", "typeId": "512173a7-bd09-490e-b773-17d83f2b63fe" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "TK 45105.88815 A58 42004 FT MEADE COPY 12", "electronicAccess": [ { "linkText": "Links available", "materialsSpecification": "Table of contents", "publicNote": "Table of contents only", "relationshipId": "3b430592-2e09-4b48-9a0c-0636d66b9fb3", "uri": "http://www.loc.gov/catdir/toc/ecip0718/2007020429.html" } ], "enumeration": "", "formerIds": [], "holdingsRecordId": "e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19", "hrid": "item000000000014", "itemLevelCallNumber": "TK5105.88815 . A58 2004 FT MEADE", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.878+00:00", "updatedDate": "2021-12-06T01:51:00.878+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "permanentLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "statisticalCodeIds": [ "b5968c9e-cddc-4576-99e3-8e60aed8b0dd" ], "status": { "date": "2021-12-06T01:51:00.878+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('9428231b-dd31-4f70-8406-fe22fbdeabc2', 1, 'A14837334314', '1984:July-Dec.', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 270 NO 17 212 41984 JULY DEC', 'v.70:no.7-12', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000005', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "9428231b-dd31-4f70-8406-fe22fbdeabc2", "_version": 1, "administrativeNotes": [], "barcode": "A14837334314", "chronology": "1984:July-Dec.", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 270 NO 17 212 41984 JULY DEC", "electronicAccess": [], "enumeration": "v.70:no.7-12", "formerIds": [], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000005", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.750+00:00", "updatedDate": "2021-12-06T01:51:00.750+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.751+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('9ea1fd0b-0259-4edb-95a3-eb2f9a063e20', 1, 'A14837334306', '1984:Jan.-June', '1', 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 270 NO 11 16 41984 JAN JUNE 11', 'v.70:no.1-6', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000006', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "9ea1fd0b-0259-4edb-95a3-eb2f9a063e20", "_version": 1, "administrativeNotes": [], "barcode": "A14837334306", "chronology": "1984:Jan.-June", "circulationNotes": [], "copyNumber": "1", "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 270 NO 11 16 41984 JAN JUNE 11", "electronicAccess": [], "enumeration": "v.70:no.1-6", "formerIds": [ "3806267" ], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000006", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.896+00:00", "updatedDate": "2021-12-06T01:51:00.896+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [ "775b6ad4-9c35-4d29-bf78-8775a9b42226" ], "status": { "date": "2021-12-06T01:51:00.896+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('bb5a6689-c008-4c96-8f8f-b666850ee12d', 1, '326547658598', NULL, NULL, 'f34d27c6-a8eb-461b-acd6-5dea81771e70', 'D 215 H63 A3 42002', NULL, '67cd0046-e4f1-4e4f-9024-adf0b0039d09', 'item000000000012', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "bb5a6689-c008-4c96-8f8f-b666850ee12d", "_version": 1, "administrativeNotes": [], "barcode": "326547658598", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "D15.H63 A3 2002" }, "effectiveLocationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "effectiveShelvingOrder": "D 215 H63 A3 42002", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "67cd0046-e4f1-4e4f-9024-adf0b0039d09", "hrid": "item000000000012", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.593+00:00", "updatedDate": "2021-12-06T01:51:00.593+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.593+00:00", "name": "Checked out" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('bc90a3c9-26c9-4519-96bc-d9d44995afef', 1, 'A14811392695', '1987:Jan.-June', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 273 NO 11 16 41987 JAN JUNE', 'v.73:no.1-6', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000001', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "bc90a3c9-26c9-4519-96bc-d9d44995afef", "_version": 1, "administrativeNotes": [ "an administrative note" ], "barcode": "A14811392695", "chronology": "1987:Jan.-June", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 273 NO 11 16 41987 JAN JUNE", "electronicAccess": [], "enumeration": "v.73:no.1-6", "formerIds": [], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000001", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.949+00:00", "updatedDate": "2021-12-06T01:51:00.949+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.950+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('d6f7c1ba-a237-465e-94ed-f37e91bc64bd', 2, '4539876054383', NULL, 'Copy 3', '53cf956f-c1df-410b-8bea-27f712cca7c0', 'PR 46056 I4588 B749 42016 COPY 13', NULL, 'fb7b70f1-b898-4924-a991-0e4b6312bb5f', 'item000000000010', NULL, '1a54b431-2e4f-452d-9cae-9cee66c9a892', '1', '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, 'e8b311a6-3b21-43f2-a269-dd9310cb2d0e', '53cf956f-c1df-410b-8bea-27f712cca7c0', '{ "id": "d6f7c1ba-a237-465e-94ed-f37e91bc64bd", "_version": 2, "administrativeNotes": [], "barcode": "4539876054383", "circulationNotes": [], "copyNumber": "Copy 3", "effectiveCallNumberComponents": { "callNumber": "PR6056.I4588 B749 2016" }, "effectiveLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "effectiveShelvingOrder": "PR 46056 I4588 B749 42016 COPY 13", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "fb7b70f1-b898-4924-a991-0e4b6312bb5f", "hrid": "item000000000010", "materialTypeId": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:51:00.686+00:00", "updatedDate": "2021-12-06T01:52:15.724+00:00" }, "notes": [], "numberOfPieces": "1", "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.686+00:00", "name": "Available" }, "temporaryLoanTypeId": "e8b311a6-3b21-43f2-a269-dd9310cb2d0e", "temporaryLocationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('eedd13c4-7d40-4b1e-8f77-b0b9d19a896b', 1, 'A1429864347', '1986:July-Aug.,Oct.-Dec.', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 272 NO 16 17 210 212 41986 JULY AUG OCT DEC', 'v.72:no.6-7,10-12', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000002', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "eedd13c4-7d40-4b1e-8f77-b0b9d19a896b", "_version": 1, "administrativeNotes": [], "barcode": "A1429864347", "chronology": "1986:July-Aug.,Oct.-Dec.", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 272 NO 16 17 210 212 41986 JULY AUG OCT DEC", "electronicAccess": [], "enumeration": "v.72:no.6-7,10-12", "formerIds": [], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000002", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.933+00:00", "updatedDate": "2021-12-06T01:51:00.933+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.933+00:00", "name": "Available" }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('f4b8c3d1-f461-4551-aa7b-5f45e64f236c', 1, 'X575181', NULL, NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', '', NULL, '9e8dc8ce-68f3-4e75-8479-d548ce521157', 'BW-ITEM-1', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "f4b8c3d1-f461-4551-aa7b-5f45e64f236c", "_version": 1, "administrativeNotes": [], "barcode": "X575181", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "1958 A 8050", "prefix": "A", "typeId": "6caca63e-5651-4db6-9247-3205156e9699" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "", "electronicAccess": [], "formerIds": [], "holdingsRecordId": "9e8dc8ce-68f3-4e75-8479-d548ce521157", "hrid": "BW-ITEM-1", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:01.230+00:00", "updatedDate": "2021-12-06T01:51:01.230+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:01.230+00:00", "name": "Available" }, "tags": { "tagList": [ "important" ] }, "yearCaption": [] }'); INSERT INTO inventory_items VALUES ('f8b6d973-60d4-41ce-a57b-a3884471a6d6', 1, 'A14811392645', '1986:Jan.-June', NULL, 'fcd64ce1-6995-48f0-840e-89ffa2288371', 'K 11 M44 V 272 NO 11 16 41986 JAN JUNE', 'v.72:no.1-6', '0c45bb50-7c9b-48b0-86eb-178a494e25fe', 'item000000000003', NULL, 'd9acad2f-2aac-4b48-9097-e6ab85906b25', NULL, '2b94c631-fca9-4892-a730-03ee529ffe27', NULL, NULL, NULL, '{ "id": "f8b6d973-60d4-41ce-a57b-a3884471a6d6", "_version": 1, "administrativeNotes": [], "barcode": "A14811392645", "chronology": "1986:Jan.-June", "circulationNotes": [], "effectiveCallNumberComponents": { "callNumber": "K1 .M44" }, "effectiveLocationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "effectiveShelvingOrder": "K 11 M44 V 272 NO 11 16 41986 JAN JUNE", "electronicAccess": [], "enumeration": "v.72:no.1-6", "formerIds": [], "holdingsRecordId": "0c45bb50-7c9b-48b0-86eb-178a494e25fe", "hrid": "item000000000003", "materialTypeId": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:51:00.914+00:00", "updatedDate": "2021-12-06T01:51:00.914+00:00" }, "notes": [], "permanentLoanTypeId": "2b94c631-fca9-4892-a730-03ee529ffe27", "statisticalCodeIds": [], "status": { "date": "2021-12-06T01:51:00.914+00:00", "name": "Available" }, "yearCaption": [] }'); -- -- TOC entry 4245 (class 0 OID 88215754) -- Dependencies: 490 -- Data for Name: inventory_libraries; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_libraries VALUES ('5d78803e-ca04-4b4a-aeae-2c63b924518b', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'DI', 'Datalogisk Institut', '{ "id": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "DI", "metadata": { "createdDate": "2021-12-06T01:50:56.325+00:00", "updatedDate": "2021-12-06T01:50:56.325+00:00" }, "name": "Datalogisk Institut" }'); INSERT INTO inventory_libraries VALUES ('c2549bb4-19c7-4fcc-8b52-39e612fb7dbe', '470ff1dd-937a-4195-bf9e-06bcfcd135df', 'E', 'Online', '{ "id": "c2549bb4-19c7-4fcc-8b52-39e612fb7dbe", "campusId": "470ff1dd-937a-4195-bf9e-06bcfcd135df", "code": "E", "metadata": { "createdDate": "2021-12-06T01:50:56.336+00:00", "updatedDate": "2021-12-06T01:50:56.336+00:00" }, "name": "Online" }'); -- -- TOC entry 4246 (class 0 OID 88215772) -- Dependencies: 491 -- Data for Name: inventory_loan_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_loan_types VALUES ('2b94c631-fca9-4892-a730-03ee529ffe27', 'Can circulate', '{ "id": "2b94c631-fca9-4892-a730-03ee529ffe27", "metadata": { "createdDate": "2021-12-06T01:50:56.264+00:00", "updatedDate": "2021-12-06T01:50:56.264+00:00" }, "name": "Can circulate" }'); INSERT INTO inventory_loan_types VALUES ('2e48e713-17f3-4c13-a9f8-23845bb210a4', 'Reading room', '{ "id": "2e48e713-17f3-4c13-a9f8-23845bb210a4", "metadata": { "createdDate": "2021-12-06T01:50:56.257+00:00", "updatedDate": "2021-12-06T01:50:56.257+00:00" }, "name": "Reading room" }'); INSERT INTO inventory_loan_types VALUES ('a1dc1ce3-d56f-4d8a-b498-d5d674ccc845', 'Selected', '{ "id": "a1dc1ce3-d56f-4d8a-b498-d5d674ccc845", "metadata": { "createdDate": "2021-12-06T01:50:56.237+00:00", "updatedDate": "2021-12-06T01:50:56.237+00:00" }, "name": "Selected" }'); INSERT INTO inventory_loan_types VALUES ('e8b311a6-3b21-43f2-a269-dd9310cb2d0e', 'Course reserves', '{ "id": "e8b311a6-3b21-43f2-a269-dd9310cb2d0e", "metadata": { "createdDate": "2021-12-06T01:50:56.250+00:00", "updatedDate": "2021-12-06T01:50:56.250+00:00" }, "name": "Course reserves" }'); -- -- TOC entry 4247 (class 0 OID 88215788) -- Dependencies: 492 -- Data for Name: inventory_locations; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_locations VALUES ('184aae84-a5bf-4c6a-85ba-4a7c73026cd5', '470ff1dd-937a-4195-bf9e-06bcfcd135df', 'E', 'Use for online resources', 'Online', '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, 'c2549bb4-19c7-4fcc-8b52-39e612fb7dbe', 'Online', 'bba36e5d-d567-45fa-81cd-b25874472e30', '{ "id": "184aae84-a5bf-4c6a-85ba-4a7c73026cd5", "campusId": "470ff1dd-937a-4195-bf9e-06bcfcd135df", "code": "E", "description": "Use for online resources", "discoveryDisplayName": "Online", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "c2549bb4-19c7-4fcc-8b52-39e612fb7dbe", "metadata": { "createdDate": "2021-12-06T01:50:56.433+00:00", "updatedDate": "2021-12-06T01:50:56.433+00:00" }, "name": "Online", "primaryServicePoint": "bba36e5d-d567-45fa-81cd-b25874472e30", "servicePointIds": [ "bba36e5d-d567-45fa-81cd-b25874472e30" ], "servicePoints": [] }'); INSERT INTO inventory_locations VALUES ('53cf956f-c1df-410b-8bea-27f712cca7c0', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'KU/CC/DI/A', NULL, NULL, '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, '5d78803e-ca04-4b4a-aeae-2c63b924518b', 'Annex', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', '{ "id": "53cf956f-c1df-410b-8bea-27f712cca7c0", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "KU/CC/DI/A", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "metadata": { "createdDate": "2021-12-06T01:50:56.457+00:00", "updatedDate": "2021-12-06T01:50:56.457+00:00" }, "name": "Annex", "primaryServicePoint": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "servicePointIds": [ "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "servicePoints": [] }'); INSERT INTO inventory_locations VALUES ('758258bc-ecc1-41b8-abca-f7b610822ffd', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'KU/CC/DI/O', NULL, NULL, '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, '5d78803e-ca04-4b4a-aeae-2c63b924518b', 'ORWIG ETHNO CD', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', '{ "id": "758258bc-ecc1-41b8-abca-f7b610822ffd", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "KU/CC/DI/O", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "metadata": { "createdDate": "2021-12-06T01:50:56.413+00:00", "updatedDate": "2021-12-06T01:50:56.413+00:00" }, "name": "ORWIG ETHNO CD", "primaryServicePoint": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "servicePointIds": [ "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "servicePoints": [] }'); INSERT INTO inventory_locations VALUES ('b241764c-1466-4e1d-a028-1a3684a5da87', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'KU/CC/DI/P', NULL, NULL, '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, '5d78803e-ca04-4b4a-aeae-2c63b924518b', 'Popular Reading Collection', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', '{ "id": "b241764c-1466-4e1d-a028-1a3684a5da87", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "KU/CC/DI/P", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "metadata": { "createdDate": "2021-12-06T01:50:56.400+00:00", "updatedDate": "2021-12-06T01:50:56.400+00:00" }, "name": "Popular Reading Collection", "primaryServicePoint": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "servicePointIds": [ "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "servicePoints": [] }'); INSERT INTO inventory_locations VALUES ('f34d27c6-a8eb-461b-acd6-5dea81771e70', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'KU/CC/DI/2', NULL, NULL, '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, '5d78803e-ca04-4b4a-aeae-2c63b924518b', 'SECOND FLOOR', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', '{ "id": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "KU/CC/DI/2", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "metadata": { "createdDate": "2021-12-06T01:50:56.443+00:00", "updatedDate": "2021-12-06T01:50:56.443+00:00" }, "name": "SECOND FLOOR", "primaryServicePoint": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "servicePointIds": [ "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "servicePoints": [] }'); INSERT INTO inventory_locations VALUES ('fcd64ce1-6995-48f0-840e-89ffa2288371', '62cf76b7-cca5-4d33-9217-edf42ce1a848', 'KU/CC/DI/M', NULL, NULL, '40ee00ca-a518-4b49-be01-0638d0a4ac57', true, '5d78803e-ca04-4b4a-aeae-2c63b924518b', 'Main Library', '3a40852d-49fd-4df2-a1f9-6e2641a6e91f', '{ "id": "fcd64ce1-6995-48f0-840e-89ffa2288371", "campusId": "62cf76b7-cca5-4d33-9217-edf42ce1a848", "code": "KU/CC/DI/M", "institutionId": "40ee00ca-a518-4b49-be01-0638d0a4ac57", "isActive": true, "libraryId": "5d78803e-ca04-4b4a-aeae-2c63b924518b", "metadata": { "createdDate": "2021-12-06T01:50:56.424+00:00", "updatedDate": "2021-12-06T01:50:56.424+00:00" }, "name": "Main Library", "primaryServicePoint": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "servicePointIds": [ "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "servicePoints": [] }'); -- -- TOC entry 4248 (class 0 OID 88215811) -- Dependencies: 493 -- Data for Name: inventory_material_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_material_types VALUES ('1a54b431-2e4f-452d-9cae-9cee66c9a892', 'book', 'folio', '{ "id": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "metadata": { "createdDate": "2021-12-06T01:50:56.148+00:00", "updatedDate": "2021-12-06T01:50:56.148+00:00" }, "name": "book", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('30b3e36a-d3b2-415e-98c2-47fbdf878862', 'video recording', 'folio', '{ "id": "30b3e36a-d3b2-415e-98c2-47fbdf878862", "metadata": { "createdDate": "2021-12-06T01:50:56.167+00:00", "updatedDate": "2021-12-06T01:50:56.167+00:00" }, "name": "video recording", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('5ee11d91-f7e8-481d-b079-65d708582ccc', 'dvd', 'folio', '{ "id": "5ee11d91-f7e8-481d-b079-65d708582ccc", "metadata": { "createdDate": "2021-12-06T01:50:56.212+00:00", "updatedDate": "2021-12-06T01:50:56.212+00:00" }, "name": "dvd", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('615b8413-82d5-4203-aa6e-e37984cb5ac3', 'electronic resource', 'folio', '{ "id": "615b8413-82d5-4203-aa6e-e37984cb5ac3", "metadata": { "createdDate": "2021-12-06T01:50:56.178+00:00", "updatedDate": "2021-12-06T01:50:56.178+00:00" }, "name": "electronic resource", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('71fbd940-1027-40a6-8a48-49b44d795e46', 'unspecified', 'folio', '{ "id": "71fbd940-1027-40a6-8a48-49b44d795e46", "metadata": { "createdDate": "2021-12-06T01:50:56.186+00:00", "updatedDate": "2021-12-06T01:50:56.186+00:00" }, "name": "unspecified", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('d9acad2f-2aac-4b48-9097-e6ab85906b25', 'text', 'folio', '{ "id": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "metadata": { "createdDate": "2021-12-06T01:50:56.195+00:00", "updatedDate": "2021-12-06T01:50:56.195+00:00" }, "name": "text", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('dd0bf600-dbd9-44ab-9ff2-e2a61a6539f1', 'sound recording', 'folio', '{ "id": "dd0bf600-dbd9-44ab-9ff2-e2a61a6539f1", "metadata": { "createdDate": "2021-12-06T01:50:56.125+00:00", "updatedDate": "2021-12-06T01:50:56.125+00:00" }, "name": "sound recording", "source": "folio" }'); INSERT INTO inventory_material_types VALUES ('fd6c6515-d470-4561-9c32-3e3290d4ca98', 'microform', 'folio', '{ "id": "fd6c6515-d470-4561-9c32-3e3290d4ca98", "metadata": { "createdDate": "2021-12-06T01:50:56.203+00:00", "updatedDate": "2021-12-06T01:50:56.203+00:00" }, "name": "microform", "source": "folio" }'); -- -- TOC entry 4249 (class 0 OID 88215827) -- Dependencies: 494 -- Data for Name: inventory_modes_of_issuance; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_modes_of_issuance VALUES ('068b5344-e2a6-40df-9186-1829e13cd344', 'serial', 'rdamodeissue', '{ "id": "068b5344-e2a6-40df-9186-1829e13cd344", "metadata": { "createdDate": "2021-12-06T01:50:58.898+00:00", "updatedDate": "2021-12-06T01:50:58.898+00:00" }, "name": "serial", "source": "rdamodeissue" }'); INSERT INTO inventory_modes_of_issuance VALUES ('4fc0f4fe-06fd-490a-a078-c4da1754e03a', 'integrating resource', 'rdamodeissue', '{ "id": "4fc0f4fe-06fd-490a-a078-c4da1754e03a", "metadata": { "createdDate": "2021-12-06T01:50:58.889+00:00", "updatedDate": "2021-12-06T01:50:58.889+00:00" }, "name": "integrating resource", "source": "rdamodeissue" }'); INSERT INTO inventory_modes_of_issuance VALUES ('612bbd3d-c16b-4bfb-8517-2afafc60204a', 'unspecified', 'folio', '{ "id": "612bbd3d-c16b-4bfb-8517-2afafc60204a", "metadata": { "createdDate": "2021-12-06T01:50:58.901+00:00", "updatedDate": "2021-12-06T01:50:58.901+00:00" }, "name": "unspecified", "source": "folio" }'); INSERT INTO inventory_modes_of_issuance VALUES ('9d18a02f-5897-4c31-9106-c9abb5c7ae8b', 'single unit', 'rdamodeissue', '{ "id": "9d18a02f-5897-4c31-9106-c9abb5c7ae8b", "metadata": { "createdDate": "2021-12-06T01:50:58.884+00:00", "updatedDate": "2021-12-06T01:50:58.884+00:00" }, "name": "single unit", "source": "rdamodeissue" }'); INSERT INTO inventory_modes_of_issuance VALUES ('f5cc2ab6-bb92-4cab-b83f-5a3d09261a41', 'multipart monograph', 'rdamodeissue', '{ "id": "f5cc2ab6-bb92-4cab-b83f-5a3d09261a41", "metadata": { "createdDate": "2021-12-06T01:50:58.894+00:00", "updatedDate": "2021-12-06T01:50:58.894+00:00" }, "name": "multipart monograph", "source": "rdamodeissue" }'); -- -- TOC entry 4250 (class 0 OID 88215843) -- Dependencies: 495 -- Data for Name: inventory_nature_of_content_terms; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_nature_of_content_terms VALUES ('04a6a8d2-f902-4774-b15f-d8bd885dc804', 'autobiography', 'folio', '{ "id": "04a6a8d2-f902-4774-b15f-d8bd885dc804", "metadata": { "createdDate": "2021-12-06T01:50:58.537+00:00", "updatedDate": "2021-12-06T01:50:58.537+00:00" }, "name": "autobiography", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('073f7f2f-9212-4395-b039-6f9825b11d54', 'proceedings', 'folio', '{ "id": "073f7f2f-9212-4395-b039-6f9825b11d54", "metadata": { "createdDate": "2021-12-06T01:50:58.608+00:00", "updatedDate": "2021-12-06T01:50:58.608+00:00" }, "name": "proceedings", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('0abeee3d-8ad2-4b04-92ff-221b4fce1075', 'journal', 'folio', '{ "id": "0abeee3d-8ad2-4b04-92ff-221b4fce1075", "metadata": { "createdDate": "2021-12-06T01:50:58.589+00:00", "updatedDate": "2021-12-06T01:50:58.589+00:00" }, "name": "journal", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('2fbc8a7b-b432-45df-ba37-46031b1f6545', 'website', 'folio', '{ "id": "2fbc8a7b-b432-45df-ba37-46031b1f6545", "metadata": { "createdDate": "2021-12-06T01:50:58.582+00:00", "updatedDate": "2021-12-06T01:50:58.582+00:00" }, "name": "website", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('31572023-f4c9-4cf3-80a2-0543c9eda884', 'literature report', 'folio', '{ "id": "31572023-f4c9-4cf3-80a2-0543c9eda884", "metadata": { "createdDate": "2021-12-06T01:50:58.585+00:00", "updatedDate": "2021-12-06T01:50:58.585+00:00" }, "name": "literature report", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('44cd89f3-2e76-469f-a955-cc57cb9e0395', 'textbook', 'folio', '{ "id": "44cd89f3-2e76-469f-a955-cc57cb9e0395", "metadata": { "createdDate": "2021-12-06T01:50:58.574+00:00", "updatedDate": "2021-12-06T01:50:58.574+00:00" }, "name": "textbook", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('4570a93e-ddb6-4200-8e8b-283c8f5c9bfa', 'research report', 'folio', '{ "id": "4570a93e-ddb6-4200-8e8b-283c8f5c9bfa", "metadata": { "createdDate": "2021-12-06T01:50:58.567+00:00", "updatedDate": "2021-12-06T01:50:58.567+00:00" }, "name": "research report", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('536da7c1-9c35-45df-8ea1-c3545448df92', 'monographic series', 'folio', '{ "id": "536da7c1-9c35-45df-8ea1-c3545448df92", "metadata": { "createdDate": "2021-12-06T01:50:58.554+00:00", "updatedDate": "2021-12-06T01:50:58.554+00:00" }, "name": "monographic series", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('631893b6-5d8a-4e1a-9e6b-5344e2945c74', 'illustrated book / picture book', 'folio', '{ "id": "631893b6-5d8a-4e1a-9e6b-5344e2945c74", "metadata": { "createdDate": "2021-12-06T01:50:58.559+00:00", "updatedDate": "2021-12-06T01:50:58.559+00:00" }, "name": "illustrated book / picture book", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('71b43e3a-8cdd-4d22-9751-020f34fb6ef8', 'report', 'folio', '{ "id": "71b43e3a-8cdd-4d22-9751-020f34fb6ef8", "metadata": { "createdDate": "2021-12-06T01:50:58.570+00:00", "updatedDate": "2021-12-06T01:50:58.570+00:00" }, "name": "report", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('85657646-6b6f-4e71-b54c-d47f3b95a5ed', 'school program', 'folio', '{ "id": "85657646-6b6f-4e71-b54c-d47f3b95a5ed", "metadata": { "createdDate": "2021-12-06T01:50:58.597+00:00", "updatedDate": "2021-12-06T01:50:58.597+00:00" }, "name": "school program", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('9419a20e-6c8f-4ae1-85a7-8c184a1f4762', 'travel report', 'folio', '{ "id": "9419a20e-6c8f-4ae1-85a7-8c184a1f4762", "metadata": { "createdDate": "2021-12-06T01:50:58.578+00:00", "updatedDate": "2021-12-06T01:50:58.578+00:00" }, "name": "travel report", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('94f6d06a-61e0-47c1-bbcb-6186989e6040', 'thesis', 'folio', '{ "id": "94f6d06a-61e0-47c1-bbcb-6186989e6040", "metadata": { "createdDate": "2021-12-06T01:50:58.545+00:00", "updatedDate": "2021-12-06T01:50:58.545+00:00" }, "name": "thesis", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('96879b60-098b-453b-bf9a-c47866f1ab2a', 'audiobook', 'folio', '{ "id": "96879b60-098b-453b-bf9a-c47866f1ab2a", "metadata": { "createdDate": "2021-12-06T01:50:58.527+00:00", "updatedDate": "2021-12-06T01:50:58.527+00:00" }, "name": "audiobook", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('acceb2d6-4f05-408f-9a88-a92de26441ce', 'comic (book)', 'folio', '{ "id": "acceb2d6-4f05-408f-9a88-a92de26441ce", "metadata": { "createdDate": "2021-12-06T01:50:58.601+00:00", "updatedDate": "2021-12-06T01:50:58.601+00:00" }, "name": "comic (book)", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('b29d4dc1-f78b-48fe-b3e5-df6c37cdc58d', 'festschrift', 'folio', '{ "id": "b29d4dc1-f78b-48fe-b3e5-df6c37cdc58d", "metadata": { "createdDate": "2021-12-06T01:50:58.533+00:00", "updatedDate": "2021-12-06T01:50:58.533+00:00" }, "name": "festschrift", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('b6e214bd-82f5-467f-af5b-4592456dc4ab', 'biography', 'folio', '{ "id": "b6e214bd-82f5-467f-af5b-4592456dc4ab", "metadata": { "createdDate": "2021-12-06T01:50:58.541+00:00", "updatedDate": "2021-12-06T01:50:58.541+00:00" }, "name": "biography", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('b82b3a0d-00fa-4811-96da-04f531da8ea8', 'exhibition catalogue', 'folio', '{ "id": "b82b3a0d-00fa-4811-96da-04f531da8ea8", "metadata": { "createdDate": "2021-12-06T01:50:58.604+00:00", "updatedDate": "2021-12-06T01:50:58.604+00:00" }, "name": "exhibition catalogue", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('c0d52f31-aabb-4c55-bf81-fea7fdda94a4', 'experience report', 'folio', '{ "id": "c0d52f31-aabb-4c55-bf81-fea7fdda94a4", "metadata": { "createdDate": "2021-12-06T01:50:58.593+00:00", "updatedDate": "2021-12-06T01:50:58.593+00:00" }, "name": "experience report", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('ebbbdef1-00e1-428b-bc11-314dc0705074', 'newspaper', 'folio', '{ "id": "ebbbdef1-00e1-428b-bc11-314dc0705074", "metadata": { "createdDate": "2021-12-06T01:50:58.550+00:00", "updatedDate": "2021-12-06T01:50:58.550+00:00" }, "name": "newspaper", "source": "folio" }'); INSERT INTO inventory_nature_of_content_terms VALUES ('f5908d05-b16a-49cf-b192-96d55a94a0d1', 'bibliography', 'folio', '{ "id": "f5908d05-b16a-49cf-b192-96d55a94a0d1", "metadata": { "createdDate": "2021-12-06T01:50:58.563+00:00", "updatedDate": "2021-12-06T01:50:58.563+00:00" }, "name": "bibliography", "source": "folio" }'); -- -- TOC entry 4251 (class 0 OID 88215860) -- Dependencies: 496 -- Data for Name: inventory_service_points; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_service_points VALUES ('3a40852d-49fd-4df2-a1f9-6e2641a6e91f', 'cd1', 'Circulation Desk -- Hallway', 'Circ Desk 1', true, NULL, '{ "id": "3a40852d-49fd-4df2-a1f9-6e2641a6e91f", "code": "cd1", "discoveryDisplayName": "Circulation Desk -- Hallway", "holdShelfExpiryPeriod": { "duration": 3, "intervalId": "Weeks" }, "metadata": { "createdDate": "2021-12-06T01:50:58.059+00:00", "updatedDate": "2021-12-06T01:50:58.059+00:00" }, "name": "Circ Desk 1", "pickupLocation": true, "staffSlips": [] }'); INSERT INTO inventory_service_points VALUES ('7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'Online', 'Online', 'Online', false, 0, '{ "id": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "code": "Online", "discoveryDisplayName": "Online", "metadata": { "createdDate": "2021-12-06T01:50:58.046+00:00", "updatedDate": "2021-12-06T01:50:58.046+00:00" }, "name": "Online", "pickupLocation": false, "shelvingLagTime": 0, "staffSlips": [] }'); INSERT INTO inventory_service_points VALUES ('c4c90014-c8c9-4ade-8f24-b5e313319f4b', 'cd2', 'Circulation Desk -- Back Entrance', 'Circ Desk 2', true, NULL, '{ "id": "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "code": "cd2", "discoveryDisplayName": "Circulation Desk -- Back Entrance", "holdShelfExpiryPeriod": { "duration": 5, "intervalId": "Days" }, "metadata": { "createdDate": "2021-12-06T01:50:58.055+00:00", "updatedDate": "2021-12-06T01:50:58.055+00:00" }, "name": "Circ Desk 2", "pickupLocation": true, "staffSlips": [] }'); -- -- TOC entry 4252 (class 0 OID 88215880) -- Dependencies: 497 -- Data for Name: inventory_service_points_users; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_service_points_users VALUES ('0067bab1-7349-4ba4-9829-83a9eab8f8c8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a23eac4b-955e-451c-b4ff-6ec2f5e63e23', '{ "id": "0067bab1-7349-4ba4-9829-83a9eab8f8c8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.414+00:00", "updatedDate": "2021-12-06T01:51:01.414+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a23eac4b-955e-451c-b4ff-6ec2f5e63e23" }'); INSERT INTO inventory_service_points_users VALUES ('00d95991-d3f9-4cd5-bace-a124f71e8006', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '93136048-585b-466e-88f8-a10115e6d7e2', '{ "id": "00d95991-d3f9-4cd5-bace-a124f71e8006", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.482+00:00", "updatedDate": "2021-12-06T01:51:01.482+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "93136048-585b-466e-88f8-a10115e6d7e2" }'); INSERT INTO inventory_service_points_users VALUES ('0248bc73-7be2-43e1-b051-7bf170a6e310', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'beaffbac-e56d-4e32-a653-b631945f060c', '{ "id": "0248bc73-7be2-43e1-b051-7bf170a6e310", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.077+00:00", "updatedDate": "2021-12-06T01:51:02.077+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "beaffbac-e56d-4e32-a653-b631945f060c" }'); INSERT INTO inventory_service_points_users VALUES ('02a9f45b-4c1d-4b6e-993e-cbd737515bc8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e923bd61-bf27-42a9-8293-ed7738c24bca', '{ "id": "02a9f45b-4c1d-4b6e-993e-cbd737515bc8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.794+00:00", "updatedDate": "2021-12-06T01:51:01.794+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e923bd61-bf27-42a9-8293-ed7738c24bca" }'); INSERT INTO inventory_service_points_users VALUES ('02ecb25e-9a89-4e4b-9fb4-db3416bbfb73', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a2d8ce6a-e163-49f0-a817-399328a8f5a4', '{ "id": "02ecb25e-9a89-4e4b-9fb4-db3416bbfb73", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.289+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.289+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a2d8ce6a-e163-49f0-a817-399328a8f5a4" }'); INSERT INTO inventory_service_points_users VALUES ('02feb0a3-669c-4006-be1e-e879f345ba58', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'eb81f274-3676-45a9-8e8d-8a151af2506b', '{ "id": "02feb0a3-669c-4006-be1e-e879f345ba58", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.518+00:00", "updatedDate": "2021-12-06T01:51:01.518+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "eb81f274-3676-45a9-8e8d-8a151af2506b" }'); INSERT INTO inventory_service_points_users VALUES ('031bff60-0f10-4698-b91c-212504ec04e3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e1bcf784-484c-42ca-b502-cf2f2e57eca3', '{ "id": "031bff60-0f10-4698-b91c-212504ec04e3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.910+00:00", "updatedDate": "2021-12-06T01:51:01.910+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e1bcf784-484c-42ca-b502-cf2f2e57eca3" }'); INSERT INTO inventory_service_points_users VALUES ('036c2ce5-2fc2-4c21-9824-b2b012dabeb2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '430f49de-6848-4cba-886a-4902cb9b887d', '{ "id": "036c2ce5-2fc2-4c21-9824-b2b012dabeb2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.864+00:00", "updatedDate": "2021-12-06T01:51:01.864+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "430f49de-6848-4cba-886a-4902cb9b887d" }'); INSERT INTO inventory_service_points_users VALUES ('04a4e948-cef5-47ff-b45e-808d34c0fffa', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0cce8c30-0a0d-4ebb-a107-cf47ad35eafb', '{ "id": "04a4e948-cef5-47ff-b45e-808d34c0fffa", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.673+00:00", "updatedDate": "2021-12-06T01:51:01.673+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0cce8c30-0a0d-4ebb-a107-cf47ad35eafb" }'); INSERT INTO inventory_service_points_users VALUES ('04beb350-1547-4f9e-8612-35372583cd07', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '137d4cbd-00ff-4332-97cb-88373fa9b556', '{ "id": "04beb350-1547-4f9e-8612-35372583cd07", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.475+00:00", "updatedDate": "2021-12-06T01:51:01.475+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "137d4cbd-00ff-4332-97cb-88373fa9b556" }'); INSERT INTO inventory_service_points_users VALUES ('054d7871-e44c-4a58-ae40-53390e0da0d4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c0af9380-d277-4820-a607-15a2d9c50ba6', '{ "id": "054d7871-e44c-4a58-ae40-53390e0da0d4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.844+00:00", "updatedDate": "2021-12-06T01:51:01.844+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c0af9380-d277-4820-a607-15a2d9c50ba6" }'); INSERT INTO inventory_service_points_users VALUES ('05789915-1b00-4f6d-9aa7-a548f3a71524', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ab579dc3-219b-4f5b-8068-ab1c7a55c402', '{ "id": "05789915-1b00-4f6d-9aa7-a548f3a71524", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.344+00:00", "updatedDate": "2021-12-06T01:51:01.344+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ab579dc3-219b-4f5b-8068-ab1c7a55c402" }'); INSERT INTO inventory_service_points_users VALUES ('0736e3e6-33c8-4dcd-b9f1-fa1a7627abbe', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a5fb6646-3e42-46ed-b686-e009e1490d2c', '{ "id": "0736e3e6-33c8-4dcd-b9f1-fa1a7627abbe", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.809+00:00", "updatedDate": "2021-12-06T01:51:01.809+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a5fb6646-3e42-46ed-b686-e009e1490d2c" }'); INSERT INTO inventory_service_points_users VALUES ('07f038b4-0ebe-446e-9a4c-478542ed9f5b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '960ab857-c8c7-4445-8d24-1e4c33de3e86', '{ "id": "07f038b4-0ebe-446e-9a4c-478542ed9f5b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.942+00:00", "updatedDate": "2021-12-06T01:51:01.942+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "960ab857-c8c7-4445-8d24-1e4c33de3e86" }'); INSERT INTO inventory_service_points_users VALUES ('081aea19-a3f5-437f-b211-50daf82b573a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '63ff6975-5d7f-46c1-983a-dba27d163c4a', '{ "id": "081aea19-a3f5-437f-b211-50daf82b573a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.542+00:00", "updatedDate": "2021-12-06T01:51:01.542+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "63ff6975-5d7f-46c1-983a-dba27d163c4a" }'); INSERT INTO inventory_service_points_users VALUES ('08b99ff7-35b1-4835-9061-15f2b0ff2ad3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8853c9a2-cae2-4b5e-84ce-2b39bb809e5b', '{ "id": "08b99ff7-35b1-4835-9061-15f2b0ff2ad3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.380+00:00", "updatedDate": "2021-12-06T01:51:01.380+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8853c9a2-cae2-4b5e-84ce-2b39bb809e5b" }'); INSERT INTO inventory_service_points_users VALUES ('08c60611-235c-4e2a-94cf-9c179c779ace', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b7da16ef-f3d2-4c12-a564-858bc3eee366', '{ "id": "08c60611-235c-4e2a-94cf-9c179c779ace", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.766+00:00", "updatedDate": "2021-12-06T01:51:01.766+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b7da16ef-f3d2-4c12-a564-858bc3eee366" }'); INSERT INTO inventory_service_points_users VALUES ('09f350aa-ea4a-42dd-918a-7077dbed177f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '956f39c5-92e3-4c26-bcdc-1827674710cf', '{ "id": "09f350aa-ea4a-42dd-918a-7077dbed177f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.668+00:00", "updatedDate": "2021-12-06T01:51:01.668+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "956f39c5-92e3-4c26-bcdc-1827674710cf" }'); INSERT INTO inventory_service_points_users VALUES ('0a0bb37f-38db-4d43-b1d3-c9b8b75a3c19', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f303e908-30dc-4139-9542-4a4e206c4b96', '{ "id": "0a0bb37f-38db-4d43-b1d3-c9b8b75a3c19", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.460+00:00", "updatedDate": "2021-12-06T01:51:01.460+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f303e908-30dc-4139-9542-4a4e206c4b96" }'); INSERT INTO inventory_service_points_users VALUES ('0a3c5bad-c5ec-459f-92bc-dc224eaf7052', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '94fc2d88-359e-45e1-8360-ff6fb132cac4', '{ "id": "0a3c5bad-c5ec-459f-92bc-dc224eaf7052", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.377+00:00", "updatedDate": "2021-12-06T01:51:01.377+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "94fc2d88-359e-45e1-8360-ff6fb132cac4" }'); INSERT INTO inventory_service_points_users VALUES ('0b8de11d-9e38-471e-9191-4d6f75686c35', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f7a0a518-6ff3-4531-b54b-e630d61aede0', '{ "id": "0b8de11d-9e38-471e-9191-4d6f75686c35", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.332+00:00", "updatedDate": "2021-12-06T01:51:01.332+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f7a0a518-6ff3-4531-b54b-e630d61aede0" }'); INSERT INTO inventory_service_points_users VALUES ('0cd7f335-5cb0-4839-beed-13834ab72aa6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1f2608df-ff79-4576-b578-14627bbe87fa', '{ "id": "0cd7f335-5cb0-4839-beed-13834ab72aa6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.016+00:00", "updatedDate": "2021-12-06T01:51:02.016+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1f2608df-ff79-4576-b578-14627bbe87fa" }'); INSERT INTO inventory_service_points_users VALUES ('0d11cb36-35b0-4950-9087-8f2f885036d8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8af5eaca-d164-4a5f-9941-0467c6facffa', '{ "id": "0d11cb36-35b0-4950-9087-8f2f885036d8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.690+00:00", "updatedDate": "2021-12-06T01:51:01.690+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8af5eaca-d164-4a5f-9941-0467c6facffa" }'); INSERT INTO inventory_service_points_users VALUES ('0dfb58df-fc41-479b-add0-b89c17db3cca', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e', '{ "id": "0dfb58df-fc41-479b-add0-b89c17db3cca", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.601+00:00", "updatedDate": "2021-12-06T01:51:01.601+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e" }'); INSERT INTO inventory_service_points_users VALUES ('0e16c090-1eac-46b0-8ad5-66c9d2286fd6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'bb4d8818-35cc-4cb6-b181-b5ccfb734744', '{ "id": "0e16c090-1eac-46b0-8ad5-66c9d2286fd6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.041+00:00", "updatedDate": "2021-12-06T01:51:02.041+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "bb4d8818-35cc-4cb6-b181-b5ccfb734744" }'); INSERT INTO inventory_service_points_users VALUES ('0e287422-a3e5-45b6-9526-5018212f8cda', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '384272bb-efab-4e94-b3b8-f67f20796f20', '{ "id": "0e287422-a3e5-45b6-9526-5018212f8cda", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.561+00:00", "updatedDate": "2021-12-06T01:51:01.561+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "384272bb-efab-4e94-b3b8-f67f20796f20" }'); INSERT INTO inventory_service_points_users VALUES ('0fa7127f-55c7-4c5f-8a9d-3faa940da196', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd80b45eb-5dc0-4635-b539-dac722cc3a50', '{ "id": "0fa7127f-55c7-4c5f-8a9d-3faa940da196", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.537+00:00", "updatedDate": "2021-12-06T01:51:01.537+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d80b45eb-5dc0-4635-b539-dac722cc3a50" }'); INSERT INTO inventory_service_points_users VALUES ('101f710a-a33e-4268-8784-c2eec697b11a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5c4910af-508f-49f5-b2c2-f856ffd7f2aa', '{ "id": "101f710a-a33e-4268-8784-c2eec697b11a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.555+00:00", "updatedDate": "2021-12-06T01:51:01.555+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5c4910af-508f-49f5-b2c2-f856ffd7f2aa" }'); INSERT INTO inventory_service_points_users VALUES ('1123c275-662e-44f2-9261-ee6fae6eae60', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '78a21fb3-0e80-4172-8ccf-8a1d8d5e1553', '{ "id": "1123c275-662e-44f2-9261-ee6fae6eae60", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.477+00:00", "updatedDate": "2021-12-06T01:51:01.477+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "78a21fb3-0e80-4172-8ccf-8a1d8d5e1553" }'); INSERT INTO inventory_service_points_users VALUES ('1306f5f1-c708-437a-bab0-2cd284ea6b1c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4c564a60-8ac6-41f9-a8b6-088901a5f8ca', '{ "id": "1306f5f1-c708-437a-bab0-2cd284ea6b1c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.629+00:00", "updatedDate": "2021-12-06T01:51:01.629+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4c564a60-8ac6-41f9-a8b6-088901a5f8ca" }'); INSERT INTO inventory_service_points_users VALUES ('136ac040-4652-431a-8e51-053b77101e92', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '23807f0f-6053-417c-b335-f3b0f84ceb8e', '{ "id": "136ac040-4652-431a-8e51-053b77101e92", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.834+00:00", "updatedDate": "2021-12-06T01:51:01.834+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "23807f0f-6053-417c-b335-f3b0f84ceb8e" }'); INSERT INTO inventory_service_points_users VALUES ('139d3527-752d-49c0-a638-4eff1c62e5db', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '420d485a-033f-4999-ab2c-12c00cd5ec07', '{ "id": "139d3527-752d-49c0-a638-4eff1c62e5db", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.774+00:00", "updatedDate": "2021-12-06T01:51:01.774+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "420d485a-033f-4999-ab2c-12c00cd5ec07" }'); INSERT INTO inventory_service_points_users VALUES ('1483acb8-fa81-4fc7-8943-cbbe86e3be11', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0ab0736b-57ba-404c-9b17-d94de2cf4d9a', '{ "id": "1483acb8-fa81-4fc7-8943-cbbe86e3be11", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.320+00:00", "updatedDate": "2021-12-06T01:51:01.320+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0ab0736b-57ba-404c-9b17-d94de2cf4d9a" }'); INSERT INTO inventory_service_points_users VALUES ('165114c7-6f71-4c8b-be96-6dd56bc27697', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '046353cf-3963-482c-9792-32ade0a33afa', '{ "id": "165114c7-6f71-4c8b-be96-6dd56bc27697", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.821+00:00", "updatedDate": "2021-12-06T01:51:01.821+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "046353cf-3963-482c-9792-32ade0a33afa" }'); INSERT INTO inventory_service_points_users VALUES ('167db90a-a64c-4791-af58-34ef8e2c50e6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '872695bb-4157-4c6f-84c7-eb5b50b9ce17', '{ "id": "167db90a-a64c-4791-af58-34ef8e2c50e6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.841+00:00", "updatedDate": "2021-12-06T01:51:01.841+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "872695bb-4157-4c6f-84c7-eb5b50b9ce17" }'); INSERT INTO inventory_service_points_users VALUES ('16e611f1-4817-46d9-992d-06a6fa3ee6ca', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a983c74e-b4f5-4ca9-94f0-b79efa947b27', '{ "id": "16e611f1-4817-46d9-992d-06a6fa3ee6ca", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.980+00:00", "updatedDate": "2021-12-06T01:51:01.980+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a983c74e-b4f5-4ca9-94f0-b79efa947b27" }'); INSERT INTO inventory_service_points_users VALUES ('17bbd33f-3091-4d60-9008-fbd668fa254c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '10cb9367-c095-4872-9add-8aecdf339dd4', '{ "id": "17bbd33f-3091-4d60-9008-fbd668fa254c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.058+00:00", "updatedDate": "2021-12-06T01:51:02.058+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "10cb9367-c095-4872-9add-8aecdf339dd4" }'); INSERT INTO inventory_service_points_users VALUES ('1843e2f0-cb32-45d9-b657-d4fc3aff4f35', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '134b94ee-e128-4a71-8884-988c2c0dfcde', '{ "id": "1843e2f0-cb32-45d9-b657-d4fc3aff4f35", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.726+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.726+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "134b94ee-e128-4a71-8884-988c2c0dfcde" }'); INSERT INTO inventory_service_points_users VALUES ('184dec51-6487-4554-960e-4a81d116c353', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8d65692e-fa98-49f2-9896-f9f6b0893358', '{ "id": "184dec51-6487-4554-960e-4a81d116c353", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.398+00:00", "updatedDate": "2021-12-06T01:51:01.398+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8d65692e-fa98-49f2-9896-f9f6b0893358" }'); INSERT INTO inventory_service_points_users VALUES ('18bf1f21-da38-40f7-891c-0e9aec77d8ad', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6ff36aa8-c68d-42c9-b68b-ece603ea59d7', '{ "id": "18bf1f21-da38-40f7-891c-0e9aec77d8ad", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.719+00:00", "updatedDate": "2021-12-06T01:51:01.719+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6ff36aa8-c68d-42c9-b68b-ece603ea59d7" }'); INSERT INTO inventory_service_points_users VALUES ('18dc592a-e2e4-41ca-a684-148f95b1823a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '55e09c25-0a7b-4df8-8bde-a8964b57ef40', '{ "id": "18dc592a-e2e4-41ca-a684-148f95b1823a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.968+00:00", "updatedDate": "2021-12-06T01:51:01.968+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "55e09c25-0a7b-4df8-8bde-a8964b57ef40" }'); INSERT INTO inventory_service_points_users VALUES ('18e2d455-7e21-4da5-9795-194fd621771d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '97f100da-9218-4351-bc14-ef0558f01625', '{ "id": "18e2d455-7e21-4da5-9795-194fd621771d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.455+00:00", "updatedDate": "2021-12-06T01:51:01.455+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "97f100da-9218-4351-bc14-ef0558f01625" }'); INSERT INTO inventory_service_points_users VALUES ('19c6a73c-18ea-4f01-97c0-677106db68da', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '46063a1d-34d3-4164-a252-77d2d27f3cfa', '{ "id": "19c6a73c-18ea-4f01-97c0-677106db68da", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.980+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.980+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "46063a1d-34d3-4164-a252-77d2d27f3cfa" }'); INSERT INTO inventory_service_points_users VALUES ('1b0dd0bc-7eb6-41f8-923a-944e22a9e8a3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '95a99d37-66b5-4b8d-a598-ab36618f9aac', '{ "id": "1b0dd0bc-7eb6-41f8-923a-944e22a9e8a3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.354+00:00", "updatedDate": "2021-12-06T01:51:01.354+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "95a99d37-66b5-4b8d-a598-ab36618f9aac" }'); INSERT INTO inventory_service_points_users VALUES ('1d1541ce-dbde-4491-8ca8-382116adf48f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'df84acd4-4425-47e9-9a25-db8eb2973950', '{ "id": "1d1541ce-dbde-4491-8ca8-382116adf48f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.642+00:00", "updatedDate": "2021-12-06T01:51:01.642+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "df84acd4-4425-47e9-9a25-db8eb2973950" }'); INSERT INTO inventory_service_points_users VALUES ('1dfbd5c3-c370-4f56-93d9-1487b546a916', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b7f677aa-e2db-4bb5-81f8-beee547bce68', '{ "id": "1dfbd5c3-c370-4f56-93d9-1487b546a916", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.453+00:00", "updatedDate": "2021-12-06T01:51:01.453+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b7f677aa-e2db-4bb5-81f8-beee547bce68" }'); INSERT INTO inventory_service_points_users VALUES ('1f000f3b-c851-4829-84fe-cc7d32aeda1b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '46ed7160-426b-460e-91b3-ab22a7d6fc26', '{ "id": "1f000f3b-c851-4829-84fe-cc7d32aeda1b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.735+00:00", "updatedDate": "2021-12-06T01:51:01.735+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "46ed7160-426b-460e-91b3-ab22a7d6fc26" }'); INSERT INTO inventory_service_points_users VALUES ('22733dc1-7ce2-4a0f-a8cb-befc490f5435', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6b5f249c-7df1-4c2f-afc2-0ef6fc21b701', '{ "id": "22733dc1-7ce2-4a0f-a8cb-befc490f5435", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.485+00:00", "updatedDate": "2021-12-06T01:51:01.485+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6b5f249c-7df1-4c2f-afc2-0ef6fc21b701" }'); INSERT INTO inventory_service_points_users VALUES ('2336f67c-dd13-4ee4-9742-11148b941284', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0db6912a-40c0-41db-8d15-be05ff851f96', '{ "id": "2336f67c-dd13-4ee4-9742-11148b941284", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.931+00:00", "updatedDate": "2021-12-06T01:51:01.931+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0db6912a-40c0-41db-8d15-be05ff851f96" }'); INSERT INTO inventory_service_points_users VALUES ('244c48bc-ff08-4732-9cd6-15857237103e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'dc3cd5a5-4235-48c3-b9d3-a958863f7498', '{ "id": "244c48bc-ff08-4732-9cd6-15857237103e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.995+00:00", "updatedDate": "2021-12-06T01:51:01.995+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "dc3cd5a5-4235-48c3-b9d3-a958863f7498" }'); INSERT INTO inventory_service_points_users VALUES ('297fb8db-5133-4362-a20b-d7daf960b017', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2884afb0-5bec-45c4-b9f4-0bc525bc0322', '{ "id": "297fb8db-5133-4362-a20b-d7daf960b017", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.990+00:00", "updatedDate": "2021-12-06T01:51:01.990+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2884afb0-5bec-45c4-b9f4-0bc525bc0322" }'); INSERT INTO inventory_service_points_users VALUES ('29b30495-29bd-47ac-abe0-f2bf4082ce52', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '21ce4a36-4d3a-4a9d-98be-d40852799d9b', '{ "id": "29b30495-29bd-47ac-abe0-f2bf4082ce52", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.889+00:00", "updatedDate": "2021-12-06T01:51:01.889+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "21ce4a36-4d3a-4a9d-98be-d40852799d9b" }'); INSERT INTO inventory_service_points_users VALUES ('2a08d19a-b69f-40ea-b87b-6cc1db95963a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'fa18e51c-50d9-4fe3-ab58-c592ea30328a', '{ "id": "2a08d19a-b69f-40ea-b87b-6cc1db95963a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.854+00:00", "updatedDate": "2021-12-06T01:51:01.854+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "fa18e51c-50d9-4fe3-ab58-c592ea30328a" }'); INSERT INTO inventory_service_points_users VALUES ('2ba1f3de-747f-4767-b85f-14b98468b0f6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '292451b5-0026-4463-a762-d43fc6cc9122', '{ "id": "2ba1f3de-747f-4767-b85f-14b98468b0f6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.666+00:00", "updatedDate": "2021-12-06T01:51:01.666+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "292451b5-0026-4463-a762-d43fc6cc9122" }'); INSERT INTO inventory_service_points_users VALUES ('2ba2c338-1aec-4efd-8210-7a7a0513c20c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3aa498aa-144d-48c1-a481-f4ab47da11cb', '{ "id": "2ba2c338-1aec-4efd-8210-7a7a0513c20c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.317+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.317+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3aa498aa-144d-48c1-a481-f4ab47da11cb" }'); INSERT INTO inventory_service_points_users VALUES ('2c881475-9933-41c7-b87b-3313a08ed1cc', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c6d99127-e834-4f60-9a77-f74646cd1618', '{ "id": "2c881475-9933-41c7-b87b-3313a08ed1cc", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.470+00:00", "updatedDate": "2021-12-06T01:51:01.470+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c6d99127-e834-4f60-9a77-f74646cd1618" }'); INSERT INTO inventory_service_points_users VALUES ('2e665979-f1f7-49f4-bc01-5279164e3666', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '197f8e91-5110-4487-ad36-b3d21a66059d', '{ "id": "2e665979-f1f7-49f4-bc01-5279164e3666", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.926+00:00", "updatedDate": "2021-12-06T01:51:01.926+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "197f8e91-5110-4487-ad36-b3d21a66059d" }'); INSERT INTO inventory_service_points_users VALUES ('2f67901d-6a28-4f02-b89e-1e19283522b0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ade18246-c529-497f-bd4c-2c3f85e995ad', '{ "id": "2f67901d-6a28-4f02-b89e-1e19283522b0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.799+00:00", "updatedDate": "2021-12-06T01:51:01.799+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ade18246-c529-497f-bd4c-2c3f85e995ad" }'); INSERT INTO inventory_service_points_users VALUES ('2fdae24e-d58b-4ff0-8a21-d47b640d7ad4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b4fa5d79-4af6-4623-9331-fabdfee79e0c', '{ "id": "2fdae24e-d58b-4ff0-8a21-d47b640d7ad4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.563+00:00", "updatedDate": "2021-12-06T01:51:01.563+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b4fa5d79-4af6-4623-9331-fabdfee79e0c" }'); INSERT INTO inventory_service_points_users VALUES ('304676f5-3b4b-4e1c-a13e-6b561854b884', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'acf8aab2-91ee-4210-bb7c-b688d66a9de4', '{ "id": "304676f5-3b4b-4e1c-a13e-6b561854b884", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.589+00:00", "updatedDate": "2021-12-06T01:51:01.589+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "acf8aab2-91ee-4210-bb7c-b688d66a9de4" }'); INSERT INTO inventory_service_points_users VALUES ('31edf69c-f533-4462-876d-8ec33cfb30f9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '80b908e7-3edc-4f6e-9c70-2b19ce25d75f', '{ "id": "31edf69c-f533-4462-876d-8ec33cfb30f9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:24.412+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:24.412+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "80b908e7-3edc-4f6e-9c70-2b19ce25d75f" }'); INSERT INTO inventory_service_points_users VALUES ('31fdb29c-ed31-42e7-bc24-a7cb616c31c9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '589ee8e5-4fe4-4ab3-8a58-441cebea454a', '{ "id": "31fdb29c-ed31-42e7-bc24-a7cb616c31c9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.403+00:00", "updatedDate": "2021-12-06T01:51:01.403+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "589ee8e5-4fe4-4ab3-8a58-441cebea454a" }'); INSERT INTO inventory_service_points_users VALUES ('3221f71d-bb11-4629-be04-cea456b44df5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea', '{ "id": "3221f71d-bb11-4629-be04-cea456b44df5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.998+00:00", "updatedDate": "2021-12-06T01:51:01.998+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea" }'); INSERT INTO inventory_service_points_users VALUES ('3238490a-544d-4659-8d7c-01a50646dd8b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d', '{ "id": "3238490a-544d-4659-8d7c-01a50646dd8b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.655+00:00", "updatedDate": "2021-12-06T01:51:01.655+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d" }'); INSERT INTO inventory_service_points_users VALUES ('337a710c-5de8-40f6-976b-2286a68d5948', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '45e77e83-60a3-4031-89d5-81222043dec6', '{ "id": "337a710c-5de8-40f6-976b-2286a68d5948", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.422+00:00", "updatedDate": "2021-12-06T01:51:01.422+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "45e77e83-60a3-4031-89d5-81222043dec6" }'); INSERT INTO inventory_service_points_users VALUES ('33b67ee4-7ef0-4d1b-b54d-5a96930000eb', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2a424823-588a-45ee-9441-a6384b6614b2', '{ "id": "33b67ee4-7ef0-4d1b-b54d-5a96930000eb", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.618+00:00", "updatedDate": "2021-12-06T01:51:01.618+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2a424823-588a-45ee-9441-a6384b6614b2" }'); INSERT INTO inventory_service_points_users VALUES ('33f9577e-36b1-4965-b03e-01e9d89a16e3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e76cf4c9-e15a-414e-81b9-672a90fb2745', '{ "id": "33f9577e-36b1-4965-b03e-01e9d89a16e3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.753+00:00", "updatedDate": "2021-12-06T01:51:01.753+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e76cf4c9-e15a-414e-81b9-672a90fb2745" }'); INSERT INTO inventory_service_points_users VALUES ('34495c44-47e0-4548-a04c-5aa64a24fe3d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3b38c436-2b21-44a5-afae-b23e5361c3c9', '{ "id": "34495c44-47e0-4548-a04c-5aa64a24fe3d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.831+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.831+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3b38c436-2b21-44a5-afae-b23e5361c3c9" }'); INSERT INTO inventory_service_points_users VALUES ('347985e4-7eb5-4b3f-8463-5caf58095a0c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a49cefad-7447-4f2f-9004-de32e7a6cc53', '{ "id": "347985e4-7eb5-4b3f-8463-5caf58095a0c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.867+00:00", "updatedDate": "2021-12-06T01:51:01.867+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a49cefad-7447-4f2f-9004-de32e7a6cc53" }'); INSERT INTO inventory_service_points_users VALUES ('35660c0a-d229-45ec-967f-a29d2a820760', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5dfffe75-267d-4133-b7bf-6d6daf26d5a4', '{ "id": "35660c0a-d229-45ec-967f-a29d2a820760", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.509+00:00", "updatedDate": "2021-12-06T01:51:01.509+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5dfffe75-267d-4133-b7bf-6d6daf26d5a4" }'); INSERT INTO inventory_service_points_users VALUES ('35e336de-db02-4fcb-af64-bbf98b06c5a4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e1acbc79-7352-5db0-8f38-7b1b029e5ef6', '{ "id": "35e336de-db02-4fcb-af64-bbf98b06c5a4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:53:49.313+00:00", "updatedDate": "2021-12-06T01:53:49.313+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6" }'); INSERT INTO inventory_service_points_users VALUES ('36b63139-cb4e-4694-94c5-13b831cf1082', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'eb834c59-b024-4cd2-bb6c-990df9434f36', '{ "id": "36b63139-cb4e-4694-94c5-13b831cf1082", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.166+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.166+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "eb834c59-b024-4cd2-bb6c-990df9434f36" }'); INSERT INTO inventory_service_points_users VALUES ('371f323b-1714-4bf8-b7ff-49d0edd8a2b4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5a57f974-ea09-4c87-b7f5-e4144dde6128', '{ "id": "371f323b-1714-4bf8-b7ff-49d0edd8a2b4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.961+00:00", "updatedDate": "2021-12-06T01:51:01.961+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5a57f974-ea09-4c87-b7f5-e4144dde6128" }'); INSERT INTO inventory_service_points_users VALUES ('37681cac-89d6-41de-8077-3d8c1df661f9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '201be44f-2f29-47af-85da-2cbfc72ac29e', '{ "id": "37681cac-89d6-41de-8077-3d8c1df661f9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.934+00:00", "updatedDate": "2021-12-06T01:51:01.934+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "201be44f-2f29-47af-85da-2cbfc72ac29e" }'); INSERT INTO inventory_service_points_users VALUES ('37ed4fed-7097-4e98-a5a5-1461c4693dd7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a4e17c41-0867-4ba7-aada-c7369ae8600d', '{ "id": "37ed4fed-7097-4e98-a5a5-1461c4693dd7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.907+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.907+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a4e17c41-0867-4ba7-aada-c7369ae8600d" }'); INSERT INTO inventory_service_points_users VALUES ('3927303f-34b1-4f94-8036-a3afd9c95d27', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '17b26a4a-e481-4b86-8949-5ef6570eb622', '{ "id": "3927303f-34b1-4f94-8036-a3afd9c95d27", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.877+00:00", "updatedDate": "2021-12-06T01:51:01.877+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "17b26a4a-e481-4b86-8949-5ef6570eb622" }'); INSERT INTO inventory_service_points_users VALUES ('3a6922fd-bf8f-4d1a-8551-571e42f28447', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '62b25727-310f-4fa3-b308-666a6cf28c97', '{ "id": "3a6922fd-bf8f-4d1a-8551-571e42f28447", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.412+00:00", "updatedDate": "2021-12-06T01:51:01.412+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "62b25727-310f-4fa3-b308-666a6cf28c97" }'); INSERT INTO inventory_service_points_users VALUES ('3a953927-04c5-4571-b12f-f2c7bcb52c81', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'be2e9bdb-9884-4fe9-87d0-ba91e8425412', '{ "id": "3a953927-04c5-4571-b12f-f2c7bcb52c81", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.650+00:00", "updatedDate": "2021-12-06T01:51:01.650+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "be2e9bdb-9884-4fe9-87d0-ba91e8425412" }'); INSERT INTO inventory_service_points_users VALUES ('3ae071c4-0cfc-47e2-ad1e-4983833cb64d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c8c1eced-7ff5-44e2-89da-12d276c1e2bc', '{ "id": "3ae071c4-0cfc-47e2-ad1e-4983833cb64d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.777+00:00", "updatedDate": "2021-12-06T01:51:01.777+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c8c1eced-7ff5-44e2-89da-12d276c1e2bc" }'); INSERT INTO inventory_service_points_users VALUES ('3c05fc30-8435-4d1e-b1f7-a11eca954e72', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e5e950e0-3f56-4ff1-8e86-671cdbc37688', '{ "id": "3c05fc30-8435-4d1e-b1f7-a11eca954e72", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.025+00:00", "updatedDate": "2021-12-06T01:51:02.025+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e5e950e0-3f56-4ff1-8e86-671cdbc37688" }'); INSERT INTO inventory_service_points_users VALUES ('3c18fdc7-c690-468d-ac5c-eaddce1d5c07', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'fad510e6-5b8d-4b10-b846-ce6ff7457629', '{ "id": "3c18fdc7-c690-468d-ac5c-eaddce1d5c07", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.382+00:00", "updatedDate": "2021-12-06T01:51:01.382+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "fad510e6-5b8d-4b10-b846-ce6ff7457629" }'); INSERT INTO inventory_service_points_users VALUES ('3c7bd6d8-b6aa-4066-bbe3-cdf7932f9330', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6302b991-3223-4bc7-ae66-795d161f64ab', '{ "id": "3c7bd6d8-b6aa-4066-bbe3-cdf7932f9330", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.607+00:00", "updatedDate": "2021-12-06T01:51:01.607+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6302b991-3223-4bc7-ae66-795d161f64ab" }'); INSERT INTO inventory_service_points_users VALUES ('3dbed1f3-d005-4b9c-96a0-a624794a2d7c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ea3a1605-a930-4183-b04e-0b2fca3ae094', '{ "id": "3dbed1f3-d005-4b9c-96a0-a624794a2d7c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.671+00:00", "updatedDate": "2021-12-06T01:51:01.671+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ea3a1605-a930-4183-b04e-0b2fca3ae094" }'); INSERT INTO inventory_service_points_users VALUES ('3e72bff9-9b8e-498f-b5d9-328e5e0c2884', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5e3d70ff-a89a-44a0-a2e2-4cae67668805', '{ "id": "3e72bff9-9b8e-498f-b5d9-328e5e0c2884", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.347+00:00", "updatedDate": "2021-12-06T01:51:01.347+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5e3d70ff-a89a-44a0-a2e2-4cae67668805" }'); INSERT INTO inventory_service_points_users VALUES ('3f05db3b-616b-4fa0-b923-906f91237854', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a8a11126-40b9-45f0-aa6e-9408e57c4b47', '{ "id": "3f05db3b-616b-4fa0-b923-906f91237854", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.992+00:00", "updatedDate": "2021-12-06T01:51:01.992+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a8a11126-40b9-45f0-aa6e-9408e57c4b47" }'); INSERT INTO inventory_service_points_users VALUES ('3f26f17c-9d31-4643-bda8-c256d1059a7e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced', '{ "id": "3f26f17c-9d31-4643-bda8-c256d1059a7e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.599+00:00", "updatedDate": "2021-12-06T01:51:01.599+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced" }'); INSERT INTO inventory_service_points_users VALUES ('3f2eca2e-1a2e-4039-9452-8e7012e77b87', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'daa9cf25-f333-447b-b577-158d6ce944a5', '{ "id": "3f2eca2e-1a2e-4039-9452-8e7012e77b87", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.970+00:00", "updatedDate": "2021-12-06T01:51:01.970+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "daa9cf25-f333-447b-b577-158d6ce944a5" }'); INSERT INTO inventory_service_points_users VALUES ('3f764f5f-1de5-43dc-8cca-a86bea65753e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd0fc4228-2e42-49b2-a5b0-9df48897e8c0', '{ "id": "3f764f5f-1de5-43dc-8cca-a86bea65753e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.352+00:00", "updatedDate": "2021-12-06T01:51:01.352+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d0fc4228-2e42-49b2-a5b0-9df48897e8c0" }'); INSERT INTO inventory_service_points_users VALUES ('3ff6adaf-ebc5-4a4a-ab90-258330f8c981', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'fb5de3c8-5293-440e-8448-a688c3a7367c', '{ "id": "3ff6adaf-ebc5-4a4a-ab90-258330f8c981", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.056+00:00", "updatedDate": "2021-12-06T01:51:02.056+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "fb5de3c8-5293-440e-8448-a688c3a7367c" }'); INSERT INTO inventory_service_points_users VALUES ('401774e7-0245-4bd9-9b5f-23f72584d922', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8931291a-8f92-4044-a17f-49a546b489ce', '{ "id": "401774e7-0245-4bd9-9b5f-23f72584d922", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.680+00:00", "updatedDate": "2021-12-06T01:51:01.680+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8931291a-8f92-4044-a17f-49a546b489ce" }'); INSERT INTO inventory_service_points_users VALUES ('40b127ca-3a5e-4a6f-ad59-9c93de5904b2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f62dc160-eacc-4922-a0cb-e1ed68a44601', '{ "id": "40b127ca-3a5e-4a6f-ad59-9c93de5904b2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.032+00:00", "updatedDate": "2021-12-06T01:51:02.032+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f62dc160-eacc-4922-a0cb-e1ed68a44601" }'); INSERT INTO inventory_service_points_users VALUES ('413ac3b6-bf5c-4b75-8266-9e878c145519', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7dd96d33-6abf-4394-8768-647c76d79412', '{ "id": "413ac3b6-bf5c-4b75-8266-9e878c145519", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.530+00:00", "updatedDate": "2021-12-06T01:51:01.530+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7dd96d33-6abf-4394-8768-647c76d79412" }'); INSERT INTO inventory_service_points_users VALUES ('42b15b8c-1a0d-4ca4-8a30-fa4d33555e1c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4fd8d3dd-ebc0-4d10-ae81-199e831be32e', '{ "id": "42b15b8c-1a0d-4ca4-8a30-fa4d33555e1c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.613+00:00", "updatedDate": "2021-12-06T01:51:01.613+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4fd8d3dd-ebc0-4d10-ae81-199e831be32e" }'); INSERT INTO inventory_service_points_users VALUES ('42bb00d7-2300-4469-ac6d-ed3007d7b80e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a98abce3-be00-4d9a-a66a-0593d27b41e0', '{ "id": "42bb00d7-2300-4469-ac6d-ed3007d7b80e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.416+00:00", "updatedDate": "2021-12-06T01:51:01.416+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a98abce3-be00-4d9a-a66a-0593d27b41e0" }'); INSERT INTO inventory_service_points_users VALUES ('431c4dff-b789-4837-a050-2c009b2f8c15', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0aa0c321-9974-4a67-92dc-bca029d093e2', '{ "id": "431c4dff-b789-4837-a050-2c009b2f8c15", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.802+00:00", "updatedDate": "2021-12-06T01:51:01.802+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0aa0c321-9974-4a67-92dc-bca029d093e2" }'); INSERT INTO inventory_service_points_users VALUES ('43b23baf-d2d2-4072-bc8b-befa3d1e361f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'eaed771f-1472-4f5a-a31f-bbb5922ba5fe', '{ "id": "43b23baf-d2d2-4072-bc8b-befa3d1e361f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.013+00:00", "updatedDate": "2021-12-06T01:51:02.013+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "eaed771f-1472-4f5a-a31f-bbb5922ba5fe" }'); INSERT INTO inventory_service_points_users VALUES ('44876519-81a4-439e-9284-6a3fb20fab76', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f3055954-ebc3-4da8-8a60-0b8f52480125', '{ "id": "44876519-81a4-439e-9284-6a3fb20fab76", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.784+00:00", "updatedDate": "2021-12-06T01:51:01.784+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f3055954-ebc3-4da8-8a60-0b8f52480125" }'); INSERT INTO inventory_service_points_users VALUES ('45224811-8a7e-411e-a464-cf99f2b6ce52', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '223907c9-517b-4b10-a6bc-8f7fcb0a05c3', '{ "id": "45224811-8a7e-411e-a464-cf99f2b6ce52", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.724+00:00", "updatedDate": "2021-12-06T01:51:01.724+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "223907c9-517b-4b10-a6bc-8f7fcb0a05c3" }'); INSERT INTO inventory_service_points_users VALUES ('46972364-3d30-4fa3-ada1-cdb2c0d59a2b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '28724f2b-89b3-4a05-839c-2e77138e01a3', '{ "id": "46972364-3d30-4fa3-ada1-cdb2c0d59a2b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.545+00:00", "updatedDate": "2021-12-06T01:51:01.545+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "28724f2b-89b3-4a05-839c-2e77138e01a3" }'); INSERT INTO inventory_service_points_users VALUES ('46f21f3a-1d10-4cab-84e5-18b47e75f375', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0b6d1482-de21-4643-ae5b-90b4c7164c4a', '{ "id": "46f21f3a-1d10-4cab-84e5-18b47e75f375", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.916+00:00", "updatedDate": "2021-12-06T01:51:01.916+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0b6d1482-de21-4643-ae5b-90b4c7164c4a" }'); INSERT INTO inventory_service_points_users VALUES ('4913961e-89f1-425f-b989-7ac9affb2460', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '43f60acf-2557-48e9-b457-12783925444f', '{ "id": "4913961e-89f1-425f-b989-7ac9affb2460", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.503+00:00", "updatedDate": "2021-12-06T01:51:01.503+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "43f60acf-2557-48e9-b457-12783925444f" }'); INSERT INTO inventory_service_points_users VALUES ('49baf5fd-4454-42d3-9206-c254a2a1556c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a2468e40-fb7c-453c-a217-8388801e2407', '{ "id": "49baf5fd-4454-42d3-9206-c254a2a1556c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.357+00:00", "updatedDate": "2021-12-06T01:51:01.357+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a2468e40-fb7c-453c-a217-8388801e2407" }'); INSERT INTO inventory_service_points_users VALUES ('49c6bcb6-91ae-4d2f-82d9-51817bac62da', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8cde4a35-f58b-492e-bd07-d668f7322253', '{ "id": "49c6bcb6-91ae-4d2f-82d9-51817bac62da", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.816+00:00", "updatedDate": "2021-12-06T01:51:01.816+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8cde4a35-f58b-492e-bd07-d668f7322253" }'); INSERT INTO inventory_service_points_users VALUES ('49d5583b-273c-41bb-b4ea-c84fee2c46e6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2c2e383d-7369-4aff-afb7-eb3db4cb71a0', '{ "id": "49d5583b-273c-41bb-b4ea-c84fee2c46e6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.713+00:00", "updatedDate": "2021-12-06T01:51:01.713+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2c2e383d-7369-4aff-afb7-eb3db4cb71a0" }'); INSERT INTO inventory_service_points_users VALUES ('49eb5abf-2911-4039-b1e7-aca226c95b52', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '22b0e29a-cc5d-456b-b272-b521ad5d2a39', '{ "id": "49eb5abf-2911-4039-b1e7-aca226c95b52", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.061+00:00", "updatedDate": "2021-12-06T01:51:02.061+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "22b0e29a-cc5d-456b-b272-b521ad5d2a39" }'); INSERT INTO inventory_service_points_users VALUES ('4ab1f82b-ec12-4b38-a59f-57936d598ab9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '66fe5bd9-1129-4b40-b54d-05b4c358463c', '{ "id": "4ab1f82b-ec12-4b38-a59f-57936d598ab9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.309+00:00", "updatedDate": "2021-12-06T01:51:01.309+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "66fe5bd9-1129-4b40-b54d-05b4c358463c" }'); INSERT INTO inventory_service_points_users VALUES ('4bef5171-9972-4f19-a38e-d726338f8c00', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '42e9d211-4bfb-45fe-a088-f19d0a514f98', '{ "id": "4bef5171-9972-4f19-a38e-d726338f8c00", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.008+00:00", "updatedDate": "2021-12-06T01:51:02.008+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "42e9d211-4bfb-45fe-a088-f19d0a514f98" }'); INSERT INTO inventory_service_points_users VALUES ('4c7820fa-8dd7-46da-a64e-86a7072ddf5a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '57db810d-d59c-4443-ab43-3542cfdf7905', '{ "id": "4c7820fa-8dd7-46da-a64e-86a7072ddf5a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.739+00:00", "updatedDate": "2021-12-06T01:51:01.739+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "57db810d-d59c-4443-ab43-3542cfdf7905" }'); INSERT INTO inventory_service_points_users VALUES ('4cd28a22-2fb4-4340-bd9f-d89fa15cc671', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e63273e7-48f5-4c43-ab4e-1751ecacaa21', '{ "id": "4cd28a22-2fb4-4340-bd9f-d89fa15cc671", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.304+00:00", "updatedDate": "2021-12-06T01:51:01.304+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e63273e7-48f5-4c43-ab4e-1751ecacaa21" }'); INSERT INTO inventory_service_points_users VALUES ('4d004385-2b2a-4abd-9fe7-af1a452e60f1', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a5a80ce1-c00d-4ede-ba44-912c1e093948', '{ "id": "4d004385-2b2a-4abd-9fe7-af1a452e60f1", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.742+00:00", "updatedDate": "2021-12-06T01:51:01.742+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a5a80ce1-c00d-4ede-ba44-912c1e093948" }'); INSERT INTO inventory_service_points_users VALUES ('4d540535-5e52-412c-a7af-a7a17e4c4ad6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '08522da4-668a-4450-a769-3abfae5678ad', '{ "id": "4d540535-5e52-412c-a7af-a7a17e4c4ad6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.581+00:00", "updatedDate": "2021-12-06T01:51:01.581+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "08522da4-668a-4450-a769-3abfae5678ad" }'); INSERT INTO inventory_service_points_users VALUES ('4d6588f1-d701-4cc5-ad83-4196162a7164', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '86344e52-979a-45da-ad44-9edcc05c5312', '{ "id": "4d6588f1-d701-4cc5-ad83-4196162a7164", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.695+00:00", "updatedDate": "2021-12-06T01:51:01.695+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "86344e52-979a-45da-ad44-9edcc05c5312" }'); INSERT INTO inventory_service_points_users VALUES ('4daaeaa7-486f-48ec-8bf2-25c8d64a97c8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '482bf6cd-5692-437a-8b3d-e39ad6ab0d9b', '{ "id": "4daaeaa7-486f-48ec-8bf2-25c8d64a97c8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:24.851+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:24.851+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "482bf6cd-5692-437a-8b3d-e39ad6ab0d9b" }'); INSERT INTO inventory_service_points_users VALUES ('4e97b318-2ee5-4391-8c28-f0836e19d186', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '860b2291-c28a-4943-804a-169af01edef4', '{ "id": "4e97b318-2ee5-4391-8c28-f0836e19d186", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.806+00:00", "updatedDate": "2021-12-06T01:51:01.806+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "860b2291-c28a-4943-804a-169af01edef4" }'); INSERT INTO inventory_service_points_users VALUES ('4ecb7a0a-c88f-42db-9eae-dfb7ca5667e4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '11dd4634-e4a9-45f0-9683-fa4d7a8f9728', '{ "id": "4ecb7a0a-c88f-42db-9eae-dfb7ca5667e4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.082+00:00", "updatedDate": "2021-12-06T01:51:02.082+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "11dd4634-e4a9-45f0-9683-fa4d7a8f9728" }'); INSERT INTO inventory_service_points_users VALUES ('4ee99277-5c46-4d8e-9dee-aeba02581c39', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3b464026-79e7-450a-a441-0e1d4f8ebf99', '{ "id": "4ee99277-5c46-4d8e-9dee-aeba02581c39", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.789+00:00", "updatedDate": "2021-12-06T01:51:01.789+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3b464026-79e7-450a-a441-0e1d4f8ebf99" }'); INSERT INTO inventory_service_points_users VALUES ('4ef2ced0-26cb-4f15-b9ef-03c4388eb795', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7b06cbcf-5d6d-431b-8922-20509d40f1ae', '{ "id": "4ef2ced0-26cb-4f15-b9ef-03c4388eb795", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.046+00:00", "updatedDate": "2021-12-06T01:51:02.046+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7b06cbcf-5d6d-431b-8922-20509d40f1ae" }'); INSERT INTO inventory_service_points_users VALUES ('502cd22c-7d8f-420e-a784-5dfd68c0cee9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'fa5b4a89-d3ad-4d74-8ad2-8eaadf9c3935', '{ "id": "502cd22c-7d8f-420e-a784-5dfd68c0cee9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.512+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.512+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "fa5b4a89-d3ad-4d74-8ad2-8eaadf9c3935" }'); INSERT INTO inventory_service_points_users VALUES ('50fab933-c99d-4197-acc8-121c162cc02e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c97f19d3-7a82-4891-aaa1-de087a9a903f', '{ "id": "50fab933-c99d-4197-acc8-121c162cc02e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.823+00:00", "updatedDate": "2021-12-06T01:51:01.823+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c97f19d3-7a82-4891-aaa1-de087a9a903f" }'); INSERT INTO inventory_service_points_users VALUES ('54496e83-6b2d-4670-89bd-7c64e7536fbe', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '78c51a90-e64f-49ce-8d28-e246a49c7f63', '{ "id": "54496e83-6b2d-4670-89bd-7c64e7536fbe", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.786+00:00", "updatedDate": "2021-12-06T01:51:01.786+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "78c51a90-e64f-49ce-8d28-e246a49c7f63" }'); INSERT INTO inventory_service_points_users VALUES ('548968ce-aaec-439b-bcef-21233f39431c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ff5ec271-7138-46d0-8ca1-f5f57790e5bd', '{ "id": "548968ce-aaec-439b-bcef-21233f39431c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.987+00:00", "updatedDate": "2021-12-06T01:51:01.987+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ff5ec271-7138-46d0-8ca1-f5f57790e5bd" }'); INSERT INTO inventory_service_points_users VALUES ('5821f660-514b-4987-8382-320135435154', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '54f65a75-f35b-4f56-86a6-fa4a3d957e57', '{ "id": "5821f660-514b-4987-8382-320135435154", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.301+00:00", "updatedDate": "2021-12-06T01:51:01.301+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "54f65a75-f35b-4f56-86a6-fa4a3d957e57" }'); INSERT INTO inventory_service_points_users VALUES ('58772a99-1977-40da-b6e2-a4c12a961e19', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2ee07dc7-835f-4a33-a783-db2ae3f1238c', '{ "id": "58772a99-1977-40da-b6e2-a4c12a961e19", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.624+00:00", "updatedDate": "2021-12-06T01:51:01.624+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2ee07dc7-835f-4a33-a783-db2ae3f1238c" }'); INSERT INTO inventory_service_points_users VALUES ('589843a0-76a0-4b6e-869e-b707d4f89e73', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '48a3115d-d476-4582-b6a8-55c09eed7ec7', '{ "id": "589843a0-76a0-4b6e-869e-b707d4f89e73", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.750+00:00", "updatedDate": "2021-12-06T01:51:01.750+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "48a3115d-d476-4582-b6a8-55c09eed7ec7" }'); INSERT INTO inventory_service_points_users VALUES ('59f798d1-3976-4d1a-bb66-f427b37faec3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '169aeb77-32f6-4f60-a2c0-db791b96e411', '{ "id": "59f798d1-3976-4d1a-bb66-f427b37faec3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.811+00:00", "updatedDate": "2021-12-06T01:51:01.811+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "169aeb77-32f6-4f60-a2c0-db791b96e411" }'); INSERT INTO inventory_service_points_users VALUES ('5a95690a-88ee-4e5a-bf97-b572cbf402b9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1db3d6c7-6ac5-4b3c-b860-deb2df449736', '{ "id": "5a95690a-88ee-4e5a-bf97-b572cbf402b9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.497+00:00", "updatedDate": "2021-12-06T01:51:01.497+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1db3d6c7-6ac5-4b3c-b860-deb2df449736" }'); INSERT INTO inventory_service_points_users VALUES ('5afc1a81-0a0c-4a4a-ae2f-e03fdff6fccb', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '10b4d8b7-9a05-4dfc-a39d-1086ba36b122', '{ "id": "5afc1a81-0a0c-4a4a-ae2f-e03fdff6fccb", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.446+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.446+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "10b4d8b7-9a05-4dfc-a39d-1086ba36b122" }'); INSERT INTO inventory_service_points_users VALUES ('5b09a09d-42f4-4bc9-ac36-e2313cf68acc', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de', '{ "id": "5b09a09d-42f4-4bc9-ac36-e2313cf68acc", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.023+00:00", "updatedDate": "2021-12-06T01:51:02.023+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de" }'); INSERT INTO inventory_service_points_users VALUES ('5bbb3933-2121-440f-bf08-b4a380abc552', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '889be582-1eb4-4390-9dfc-63f4729b32b8', '{ "id": "5bbb3933-2121-440f-bf08-b4a380abc552", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.559+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.559+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "889be582-1eb4-4390-9dfc-63f4729b32b8" }'); INSERT INTO inventory_service_points_users VALUES ('5c7d7a1c-2dcf-49f5-a3c0-ed7717d508ab', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1dbf36ab-bba6-4725-8456-bda646796dd1', '{ "id": "5c7d7a1c-2dcf-49f5-a3c0-ed7717d508ab", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.839+00:00", "updatedDate": "2021-12-06T01:51:01.839+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1dbf36ab-bba6-4725-8456-bda646796dd1" }'); INSERT INTO inventory_service_points_users VALUES ('5d133426-ccae-4fbb-ab23-a5794f99616d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '457a3c37-cada-47ed-ae8d-c8eda723251f', '{ "id": "5d133426-ccae-4fbb-ab23-a5794f99616d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.678+00:00", "updatedDate": "2021-12-06T01:51:01.678+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "457a3c37-cada-47ed-ae8d-c8eda723251f" }'); INSERT INTO inventory_service_points_users VALUES ('5da04b41-ae50-494a-bea6-a3e05e109ab5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4205e8ff-804d-45bb-9d6d-f75f845ce608', '{ "id": "5da04b41-ae50-494a-bea6-a3e05e109ab5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.441+00:00", "updatedDate": "2021-12-06T01:51:01.441+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4205e8ff-804d-45bb-9d6d-f75f845ce608" }'); INSERT INTO inventory_service_points_users VALUES ('5dc965eb-eb10-4855-b56a-78f2da207fa0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '07066a1f-1fb7-4793-bbca-7cd8d1ea90ab', '{ "id": "5dc965eb-eb10-4855-b56a-78f2da207fa0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.782+00:00", "updatedDate": "2021-12-06T01:51:01.782+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "07066a1f-1fb7-4793-bbca-7cd8d1ea90ab" }'); INSERT INTO inventory_service_points_users VALUES ('5e6f733f-62cd-4406-abe5-9e765a5508b1', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '368b8b4a-c3c2-436c-9cba-95dcac52ebf9', '{ "id": "5e6f733f-62cd-4406-abe5-9e765a5508b1", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.921+00:00", "updatedDate": "2021-12-06T01:51:01.921+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "368b8b4a-c3c2-436c-9cba-95dcac52ebf9" }'); INSERT INTO inventory_service_points_users VALUES ('610b8772-75e3-4547-b11c-5031ccd314e0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1bcfd501-232e-47da-a511-fdd29ae3d692', '{ "id": "610b8772-75e3-4547-b11c-5031ccd314e0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.965+00:00", "updatedDate": "2021-12-06T01:51:01.965+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1bcfd501-232e-47da-a511-fdd29ae3d692" }'); INSERT INTO inventory_service_points_users VALUES ('6175477d-2b35-42cc-b696-a05ccebd0ef0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f57c13f1-6114-41b2-aa6f-33045068d6be', '{ "id": "6175477d-2b35-42cc-b696-a05ccebd0ef0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.913+00:00", "updatedDate": "2021-12-06T01:51:01.913+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f57c13f1-6114-41b2-aa6f-33045068d6be" }'); INSERT INTO inventory_service_points_users VALUES ('619ce892-d44e-4bb8-a369-95d85014b5e9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '251cfa92-24a7-45db-9f0d-acd2da450b50', '{ "id": "619ce892-d44e-4bb8-a369-95d85014b5e9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.847+00:00", "updatedDate": "2021-12-06T01:51:01.847+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "251cfa92-24a7-45db-9f0d-acd2da450b50" }'); INSERT INTO inventory_service_points_users VALUES ('62de6c0c-5156-4257-a967-aa9305f6d94a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4ca6da61-a9fa-4226-850d-43aa2d89f9a6', '{ "id": "62de6c0c-5156-4257-a967-aa9305f6d94a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.576+00:00", "updatedDate": "2021-12-06T01:51:01.576+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4ca6da61-a9fa-4226-850d-43aa2d89f9a6" }'); INSERT INTO inventory_service_points_users VALUES ('64a05e04-6fd6-451c-be07-10a4559da7a8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'cc0685f2-6ac2-4840-bb67-1493c14968c5', '{ "id": "64a05e04-6fd6-451c-be07-10a4559da7a8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.611+00:00", "updatedDate": "2021-12-06T01:51:01.611+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "cc0685f2-6ac2-4840-bb67-1493c14968c5" }'); INSERT INTO inventory_service_points_users VALUES ('64b29ace-b9b5-40fe-91c2-63e60cbf04e9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e59bc21a-884e-42a2-8792-163efc3662e7', '{ "id": "64b29ace-b9b5-40fe-91c2-63e60cbf04e9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.571+00:00", "updatedDate": "2021-12-06T01:51:01.571+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e59bc21a-884e-42a2-8792-163efc3662e7" }'); INSERT INTO inventory_service_points_users VALUES ('64f329d4-82d2-4279-8c76-37eacba705e5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '56708cfe-750e-49ad-b72a-003ce7ad78a4', '{ "id": "64f329d4-82d2-4279-8c76-37eacba705e5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.936+00:00", "updatedDate": "2021-12-06T01:51:01.936+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "56708cfe-750e-49ad-b72a-003ce7ad78a4" }'); INSERT INTO inventory_service_points_users VALUES ('67d0a2eb-a080-490a-8dc9-69a11ce64f61', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '583b7d52-8a9b-4aa4-9ba5-c35791600238', '{ "id": "67d0a2eb-a080-490a-8dc9-69a11ce64f61", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.174+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.174+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "583b7d52-8a9b-4aa4-9ba5-c35791600238" }'); INSERT INTO inventory_service_points_users VALUES ('6930428b-2f47-49e9-82f3-c24cdad28cbe', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '488d4776-d0e2-4618-9ca9-78fa5dcc787c', '{ "id": "6930428b-2f47-49e9-82f3-c24cdad28cbe", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.973+00:00", "updatedDate": "2021-12-06T01:51:01.973+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "488d4776-d0e2-4618-9ca9-78fa5dcc787c" }'); INSERT INTO inventory_service_points_users VALUES ('69daa9bd-aff5-4e9f-9884-49e0a9beff4c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6f4111a4-8b6f-4008-9b95-ecd31db69234', '{ "id": "69daa9bd-aff5-4e9f-9884-49e0a9beff4c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.604+00:00", "updatedDate": "2021-12-06T01:51:01.604+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6f4111a4-8b6f-4008-9b95-ecd31db69234" }'); INSERT INTO inventory_service_points_users VALUES ('6a478c1f-6182-455b-90a9-698007eb12e4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '47f7eaea-1a18-4058-907c-62b7d095c61b', '{ "id": "6a478c1f-6182-455b-90a9-698007eb12e4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.836+00:00", "updatedDate": "2021-12-06T01:51:01.836+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "47f7eaea-1a18-4058-907c-62b7d095c61b" }'); INSERT INTO inventory_service_points_users VALUES ('6adc3e4f-2c9b-499c-bcdf-33354b1e5d40', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5', '{ "id": "6adc3e4f-2c9b-499c-bcdf-33354b1e5d40", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.634+00:00", "updatedDate": "2021-12-06T01:51:01.634+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5" }'); INSERT INTO inventory_service_points_users VALUES ('6b9d383a-bed2-40d6-b85a-b67a952b86df', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '9e87bfea-2d31-4cc3-9cef-9e1e67553243', '{ "id": "6b9d383a-bed2-40d6-b85a-b67a952b86df", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.426+00:00", "updatedDate": "2021-12-06T01:51:01.426+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "9e87bfea-2d31-4cc3-9cef-9e1e67553243" }'); INSERT INTO inventory_service_points_users VALUES ('6bb142e8-73a1-4fd8-ac60-47e880449e45', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5ed8a4be-f0d8-459d-9e9a-27f2e8c155af', '{ "id": "6bb142e8-73a1-4fd8-ac60-47e880449e45", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.899+00:00", "updatedDate": "2021-12-06T01:51:01.899+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5ed8a4be-f0d8-459d-9e9a-27f2e8c155af" }'); INSERT INTO inventory_service_points_users VALUES ('6c8b346d-3416-42f2-8a4e-0520bb7ce38b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f308aadb-9403-44de-9b5a-06792b78bb3a', '{ "id": "6c8b346d-3416-42f2-8a4e-0520bb7ce38b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.661+00:00", "updatedDate": "2021-12-06T01:51:01.661+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f308aadb-9403-44de-9b5a-06792b78bb3a" }'); INSERT INTO inventory_service_points_users VALUES ('6cb57349-afca-4012-8f88-dc1c78c307bd', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd6c40971-39a6-4977-9d27-e83e731f51de', '{ "id": "6cb57349-afca-4012-8f88-dc1c78c307bd", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.553+00:00", "updatedDate": "2021-12-06T01:51:01.553+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d6c40971-39a6-4977-9d27-e83e731f51de" }'); INSERT INTO inventory_service_points_users VALUES ('6d5e30b6-4ef8-4f9c-b6bf-98f3f429072d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'dc5dab8d-f80a-476a-b920-3cf21eeee902', '{ "id": "6d5e30b6-4ef8-4f9c-b6bf-98f3f429072d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.982+00:00", "updatedDate": "2021-12-06T01:51:01.982+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "dc5dab8d-f80a-476a-b920-3cf21eeee902" }'); INSERT INTO inventory_service_points_users VALUES ('7003a855-2b31-4cd8-86b0-ed982880dabd', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '16757efe-86ac-40bb-bdd6-fafee02463c7', '{ "id": "7003a855-2b31-4cd8-86b0-ed982880dabd", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.298+00:00", "updatedDate": "2021-12-06T01:51:01.298+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "16757efe-86ac-40bb-bdd6-fafee02463c7" }'); INSERT INTO inventory_service_points_users VALUES ('720526cd-9db8-463d-9c42-193ba3e97e6f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b3dae815-3d30-49f9-ac26-363e661382a0', '{ "id": "720526cd-9db8-463d-9c42-193ba3e97e6f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.011+00:00", "updatedDate": "2021-12-06T01:51:02.011+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b3dae815-3d30-49f9-ac26-363e661382a0" }'); INSERT INTO inventory_service_points_users VALUES ('727aad65-813e-421f-b35c-afda24968e36', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c0d4a2da-7c38-46f4-869c-797bb083ee2d', '{ "id": "727aad65-813e-421f-b35c-afda24968e36", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.079+00:00", "updatedDate": "2021-12-06T01:51:02.079+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c0d4a2da-7c38-46f4-869c-797bb083ee2d" }'); INSERT INTO inventory_service_points_users VALUES ('7414d8b8-6e2c-44b5-bfe5-4e4347368991', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '50e30476-ee93-4b16-a53c-27ce2c4b49d7', '{ "id": "7414d8b8-6e2c-44b5-bfe5-4e4347368991", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.443+00:00", "updatedDate": "2021-12-06T01:51:01.443+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "50e30476-ee93-4b16-a53c-27ce2c4b49d7" }'); INSERT INTO inventory_service_points_users VALUES ('74e6b61e-319a-4ee5-bc46-584d3827b490', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4acbd1f5-dbfe-4928-8325-2955e50faa4b', '{ "id": "74e6b61e-319a-4ee5-bc46-584d3827b490", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.852+00:00", "updatedDate": "2021-12-06T01:51:01.852+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4acbd1f5-dbfe-4928-8325-2955e50faa4b" }'); INSERT INTO inventory_service_points_users VALUES ('76dff37f-4f70-4583-8742-a4d81e36812d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6f511507-dab9-42fb-b966-bb8a1330ee7a', '{ "id": "76dff37f-4f70-4583-8742-a4d81e36812d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.881+00:00", "updatedDate": "2021-12-06T01:51:01.881+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6f511507-dab9-42fb-b966-bb8a1330ee7a" }'); INSERT INTO inventory_service_points_users VALUES ('77542234-2c52-49dd-9d39-c6ee83786af9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ceecd8ee-9586-4024-b107-d368b58a1025', '{ "id": "77542234-2c52-49dd-9d39-c6ee83786af9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.884+00:00", "updatedDate": "2021-12-06T01:51:01.884+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ceecd8ee-9586-4024-b107-d368b58a1025" }'); INSERT INTO inventory_service_points_users VALUES ('77bf59ca-747f-4cb0-a54e-b61865b283ce', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2a823816-c059-4703-becf-0cc68a734189', '{ "id": "77bf59ca-747f-4cb0-a54e-b61865b283ce", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.491+00:00", "updatedDate": "2021-12-06T01:51:01.491+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2a823816-c059-4703-becf-0cc68a734189" }'); INSERT INTO inventory_service_points_users VALUES ('7806b118-0522-483d-91a4-ae3cb23970ba', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4f012e5c-840b-4f7a-b7e0-c2e3b1d41309', '{ "id": "7806b118-0522-483d-91a4-ae3cb23970ba", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.323+00:00", "updatedDate": "2021-12-06T01:51:01.323+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4f012e5c-840b-4f7a-b7e0-c2e3b1d41309" }'); INSERT INTO inventory_service_points_users VALUES ('785057f4-eb8a-4f7f-b971-dd329fb953c4', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2075c729-a9b8-43db-860c-60a3cc31a949', '{ "id": "785057f4-eb8a-4f7f-b971-dd329fb953c4", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.862+00:00", "updatedDate": "2021-12-06T01:51:01.862+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2075c729-a9b8-43db-860c-60a3cc31a949" }'); INSERT INTO inventory_service_points_users VALUES ('788bb98c-d427-476b-85ac-2424225f76d5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '15fa3eda-f495-496c-b21e-4f281b38a3ef', '{ "id": "788bb98c-d427-476b-85ac-2424225f76d5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.596+00:00", "updatedDate": "2021-12-06T01:51:01.596+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "15fa3eda-f495-496c-b21e-4f281b38a3ef" }'); INSERT INTO inventory_service_points_users VALUES ('78f04791-346c-4c79-a140-7916708fd556', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a', '{ "id": "78f04791-346c-4c79-a140-7916708fd556", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.387+00:00", "updatedDate": "2021-12-06T01:51:01.387+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a" }'); INSERT INTO inventory_service_points_users VALUES ('79f6554d-b961-4d19-8521-e267f5623f39', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '9207540e-91e9-4a75-ad1e-65a715784326', '{ "id": "79f6554d-b961-4d19-8521-e267f5623f39", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.683+00:00", "updatedDate": "2021-12-06T01:51:01.683+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "9207540e-91e9-4a75-ad1e-65a715784326" }'); INSERT INTO inventory_service_points_users VALUES ('7a605a92-2a94-4b28-82f7-d6cd36dc9ed9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '21c08ac3-c287-4a21-b966-e263504aa773', '{ "id": "7a605a92-2a94-4b28-82f7-d6cd36dc9ed9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.424+00:00", "updatedDate": "2021-12-06T01:51:01.424+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "21c08ac3-c287-4a21-b966-e263504aa773" }'); INSERT INTO inventory_service_points_users VALUES ('7a945dfc-b53d-4ca0-8bff-268064c1d937', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2220260d-12c7-49ab-9ac4-f923323f0cb3', '{ "id": "7a945dfc-b53d-4ca0-8bff-268064c1d937", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.985+00:00", "updatedDate": "2021-12-06T01:51:01.985+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2220260d-12c7-49ab-9ac4-f923323f0cb3" }'); INSERT INTO inventory_service_points_users VALUES ('7b35bb51-adfb-4fd5-ae8b-99fe81f751da', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'eb7696da-a2c3-4166-8aba-757c42556d1e', '{ "id": "7b35bb51-adfb-4fd5-ae8b-99fe81f751da", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.702+00:00", "updatedDate": "2021-12-06T01:51:01.702+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "eb7696da-a2c3-4166-8aba-757c42556d1e" }'); INSERT INTO inventory_service_points_users VALUES ('7cf9ff15-7872-4dba-940b-2ac9676b0a7c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '011dc219-6b7f-4d93-ae7f-f512ed651493', '{ "id": "7cf9ff15-7872-4dba-940b-2ac9676b0a7c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.524+00:00", "updatedDate": "2021-12-06T01:51:01.524+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "011dc219-6b7f-4d93-ae7f-f512ed651493" }'); INSERT INTO inventory_service_points_users VALUES ('7d67a31e-7b24-42e2-a4c8-0d0684922e86', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2a81b279-d459-4022-82f6-69a569d196b9', '{ "id": "7d67a31e-7b24-42e2-a4c8-0d0684922e86", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.326+00:00", "updatedDate": "2021-12-06T01:51:01.326+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2a81b279-d459-4022-82f6-69a569d196b9" }'); INSERT INTO inventory_service_points_users VALUES ('7de027b6-039e-4d59-838b-4216707725dc', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '67e40b72-66ca-4113-bed9-17a40bc448e0', '{ "id": "7de027b6-039e-4d59-838b-4216707725dc", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.527+00:00", "updatedDate": "2021-12-06T01:51:01.527+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "67e40b72-66ca-4113-bed9-17a40bc448e0" }'); INSERT INTO inventory_service_points_users VALUES ('7e0acb84-6c9c-4d05-9517-99007923ddc0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd4849a05-4066-4129-ae56-3dfc39498e36', '{ "id": "7e0acb84-6c9c-4d05-9517-99007923ddc0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.907+00:00", "updatedDate": "2021-12-06T01:51:01.907+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d4849a05-4066-4129-ae56-3dfc39498e36" }'); INSERT INTO inventory_service_points_users VALUES ('7fe59b49-f382-413a-9243-ecf09cccbd0b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a601f1f2-88a4-465a-850e-8f50c28ce7d9', '{ "id": "7fe59b49-f382-413a-9243-ecf09cccbd0b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.727+00:00", "updatedDate": "2021-12-06T01:51:01.727+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a601f1f2-88a4-465a-850e-8f50c28ce7d9" }'); INSERT INTO inventory_service_points_users VALUES ('808be041-d102-492b-9b4c-a7a85d28eb37', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ffe437bb-ac1b-4806-9a17-9b5c4b47f437', '{ "id": "808be041-d102-492b-9b4c-a7a85d28eb37", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.491+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.491+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ffe437bb-ac1b-4806-9a17-9b5c4b47f437" }'); INSERT INTO inventory_service_points_users VALUES ('8285f3a9-304d-4dfa-b004-94fbbddf4d03', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '65ec5d8b-c3f6-41d4-8026-fba1f7cae715', '{ "id": "8285f3a9-304d-4dfa-b004-94fbbddf4d03", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.869+00:00", "updatedDate": "2021-12-06T01:51:01.869+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "65ec5d8b-c3f6-41d4-8026-fba1f7cae715" }'); INSERT INTO inventory_service_points_users VALUES ('8331bbfd-a417-4bf0-b862-6193ad880a7d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '969e6710-309e-41bd-ba35-2b97faec30b7', '{ "id": "8331bbfd-a417-4bf0-b862-6193ad880a7d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.663+00:00", "updatedDate": "2021-12-06T01:51:01.663+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "969e6710-309e-41bd-ba35-2b97faec30b7" }'); INSERT INTO inventory_service_points_users VALUES ('86581db1-b9f6-44b5-ae19-4c125e217138', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2cb8a9f5-5a04-4b26-89de-c5a522638de2', '{ "id": "86581db1-b9f6-44b5-ae19-4c125e217138", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.756+00:00", "updatedDate": "2021-12-06T01:51:01.756+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2cb8a9f5-5a04-4b26-89de-c5a522638de2" }'); INSERT INTO inventory_service_points_users VALUES ('870a39b7-aedd-484a-b5d8-2a04d36f2f27', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '71f28723-784e-4292-b794-af4ffca9178e', '{ "id": "870a39b7-aedd-484a-b5d8-2a04d36f2f27", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.293+00:00", "updatedDate": "2021-12-06T01:51:01.293+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "71f28723-784e-4292-b794-af4ffca9178e" }'); INSERT INTO inventory_service_points_users VALUES ('87f811d8-c251-4b3d-a323-77bb19d171b3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4f0e711c-d583-41e0-9555-b62f1725023f', '{ "id": "87f811d8-c251-4b3d-a323-77bb19d171b3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.405+00:00", "updatedDate": "2021-12-06T01:51:01.405+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4f0e711c-d583-41e0-9555-b62f1725023f" }'); INSERT INTO inventory_service_points_users VALUES ('8863e1bb-1d20-4433-9b3f-49477756747c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1dbc9318-9718-4e9d-b32a-6684cf258910', '{ "id": "8863e1bb-1d20-4433-9b3f-49477756747c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.764+00:00", "updatedDate": "2021-12-06T01:51:01.764+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1dbc9318-9718-4e9d-b32a-6684cf258910" }'); INSERT INTO inventory_service_points_users VALUES ('8a38f783-bdca-4372-8059-fd260bab1de8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1be7f410-6ec3-4e88-ac25-0f8d8c63274d', '{ "id": "8a38f783-bdca-4372-8059-fd260bab1de8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.929+00:00", "updatedDate": "2021-12-06T01:51:01.929+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1be7f410-6ec3-4e88-ac25-0f8d8c63274d" }'); INSERT INTO inventory_service_points_users VALUES ('8a54cd58-4353-4005-9a9e-9bdc87277f84', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '423d5beb-3196-449e-aacb-9595d6321950', '{ "id": "8a54cd58-4353-4005-9a9e-9bdc87277f84", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.826+00:00", "updatedDate": "2021-12-06T01:51:01.826+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "423d5beb-3196-449e-aacb-9595d6321950" }'); INSERT INTO inventory_service_points_users VALUES ('8acf9dfa-f464-4f7d-9b8d-aa9e22c44c23', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '30d7e2dd-db23-4832-b4be-30d3f5f83a60', '{ "id": "8acf9dfa-f464-4f7d-9b8d-aa9e22c44c23", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.804+00:00", "updatedDate": "2021-12-06T01:51:01.804+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "30d7e2dd-db23-4832-b4be-30d3f5f83a60" }'); INSERT INTO inventory_service_points_users VALUES ('8b2fad5b-1604-4427-8e21-c19c537bc076', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2084e201-b0da-4ac3-b3ae-873c48596093', '{ "id": "8b2fad5b-1604-4427-8e21-c19c537bc076", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.859+00:00", "updatedDate": "2021-12-06T01:51:01.859+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2084e201-b0da-4ac3-b3ae-873c48596093" }'); INSERT INTO inventory_service_points_users VALUES ('8c6b3618-c0e0-409a-a426-3f334c218f2b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0a246f61-d85f-42b6-8dcc-48d25a46690b', '{ "id": "8c6b3618-c0e0-409a-a426-3f334c218f2b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.312+00:00", "updatedDate": "2021-12-06T01:51:01.312+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0a246f61-d85f-42b6-8dcc-48d25a46690b" }'); INSERT INTO inventory_service_points_users VALUES ('8c6d1797-4b29-446f-80e6-6712c0947338', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7cf337a2-a941-403d-a44f-4501b347a970', '{ "id": "8c6d1797-4b29-446f-80e6-6712c0947338", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.117+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.117+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7cf337a2-a941-403d-a44f-4501b347a970" }'); INSERT INTO inventory_service_points_users VALUES ('8cfaecfe-7162-4d06-b3ad-1f286d0d4a49', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c78aa9ec-b7d3-4d53-9e43-20296f39b496', '{ "id": "8cfaecfe-7162-4d06-b3ad-1f286d0d4a49", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.368+00:00", "updatedDate": "2021-12-06T01:51:01.368+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c78aa9ec-b7d3-4d53-9e43-20296f39b496" }'); INSERT INTO inventory_service_points_users VALUES ('8d4ea853-1cac-49c7-b858-115e909c3a44', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '15b9deaf-1a59-4396-a8e5-d6c7e5b79b28', '{ "id": "8d4ea853-1cac-49c7-b858-115e909c3a44", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.791+00:00", "updatedDate": "2021-12-06T01:51:01.791+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "15b9deaf-1a59-4396-a8e5-d6c7e5b79b28" }'); INSERT INTO inventory_service_points_users VALUES ('8e9965e7-e22e-44c3-878a-af844ae569e2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c1277b9b-b165-48ee-ac35-e737ed325f34', '{ "id": "8e9965e7-e22e-44c3-878a-af844ae569e2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.395+00:00", "updatedDate": "2021-12-06T01:51:01.395+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c1277b9b-b165-48ee-ac35-e737ed325f34" }'); INSERT INTO inventory_service_points_users VALUES ('8ec4b481-a785-45c6-9786-229419dfe1f5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '9ad09b01-7429-455f-9f64-e3897027db61', '{ "id": "8ec4b481-a785-45c6-9786-229419dfe1f5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.904+00:00", "updatedDate": "2021-12-06T01:51:01.904+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "9ad09b01-7429-455f-9f64-e3897027db61" }'); INSERT INTO inventory_service_points_users VALUES ('8f1764ab-d5e5-489b-86ff-7a89cc4ae6ca', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7ff26639-c033-442a-8bf4-2e896b17fcf9', '{ "id": "8f1764ab-d5e5-489b-86ff-7a89cc4ae6ca", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.609+00:00", "updatedDate": "2021-12-06T01:51:01.609+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7ff26639-c033-442a-8bf4-2e896b17fcf9" }'); INSERT INTO inventory_service_points_users VALUES ('8ff6517d-718c-4049-b75e-6ec852a1505a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '51e1e298-db10-465b-8c20-7f3d1e929834', '{ "id": "8ff6517d-718c-4049-b75e-6ec852a1505a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.392+00:00", "updatedDate": "2021-12-06T01:51:01.392+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "51e1e298-db10-465b-8c20-7f3d1e929834" }'); INSERT INTO inventory_service_points_users VALUES ('91eebf28-f302-49b2-9e2c-f22147a9fb34', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f1c2d681-faba-4950-918f-bf58d914ba1f', '{ "id": "91eebf28-f302-49b2-9e2c-f22147a9fb34", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.594+00:00", "updatedDate": "2021-12-06T01:51:01.594+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f1c2d681-faba-4950-918f-bf58d914ba1f" }'); INSERT INTO inventory_service_points_users VALUES ('92c940de-ba42-4498-ab4c-66529006fa42', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f45d047f-248d-424a-9571-8b1249279c02', '{ "id": "92c940de-ba42-4498-ab4c-66529006fa42", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.818+00:00", "updatedDate": "2021-12-06T01:51:01.818+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f45d047f-248d-424a-9571-8b1249279c02" }'); INSERT INTO inventory_service_points_users VALUES ('93914402-8bce-4a1e-ab50-b6f59c9fb647', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1', '{ "id": "93914402-8bce-4a1e-ab50-b6f59c9fb647", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.730+00:00", "updatedDate": "2021-12-06T01:51:01.730+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1" }'); INSERT INTO inventory_service_points_users VALUES ('94c9e8fd-7e0f-42dd-af21-79571e5e69ed', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '745bdee1-458c-4076-bad1-be5a470c49fb', '{ "id": "94c9e8fd-7e0f-42dd-af21-79571e5e69ed", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.337+00:00", "updatedDate": "2021-12-06T01:51:01.337+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "745bdee1-458c-4076-bad1-be5a470c49fb" }'); INSERT INTO inventory_service_points_users VALUES ('94d404a5-3ef1-4177-b33e-16006383ad80', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2338689d-f27e-49fd-8bce-9f9bf7be6ea0', '{ "id": "94d404a5-3ef1-4177-b33e-16006383ad80", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.512+00:00", "updatedDate": "2021-12-06T01:51:01.512+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2338689d-f27e-49fd-8bce-9f9bf7be6ea0" }'); INSERT INTO inventory_service_points_users VALUES ('96e773ab-7779-4467-9445-2d861745755d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c573e5f8-a570-475d-a75e-88a4d2b757d2', '{ "id": "96e773ab-7779-4467-9445-2d861745755d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.407+00:00", "updatedDate": "2021-12-06T01:51:01.407+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c573e5f8-a570-475d-a75e-88a4d2b757d2" }'); INSERT INTO inventory_service_points_users VALUES ('97a99de0-05eb-455f-be43-33dc4a7e451c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '543b7091-a5fd-4c6a-bece-85cff9e23366', '{ "id": "97a99de0-05eb-455f-be43-33dc4a7e451c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.454+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.454+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "543b7091-a5fd-4c6a-bece-85cff9e23366" }'); INSERT INTO inventory_service_points_users VALUES ('97edb754-1327-4ffd-9c01-4b178cd2b504', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5bec815c-72b9-452f-ac19-bc2793c94537', '{ "id": "97edb754-1327-4ffd-9c01-4b178cd2b504", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.779+00:00", "updatedDate": "2021-12-06T01:51:01.779+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5bec815c-72b9-452f-ac19-bc2793c94537" }'); INSERT INTO inventory_service_points_users VALUES ('982a9ff4-c508-47fc-8b23-6d217785a0b3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f643e743-3496-4ecd-94d7-1ca2fdf56c82', '{ "id": "982a9ff4-c508-47fc-8b23-6d217785a0b3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.488+00:00", "updatedDate": "2021-12-06T01:51:01.488+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f643e743-3496-4ecd-94d7-1ca2fdf56c82" }'); INSERT INTO inventory_service_points_users VALUES ('98e21a8c-3e95-421f-a2c2-e937e889e99b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '342971e4-43af-44c3-a8c3-478a97cc94bc', '{ "id": "98e21a8c-3e95-421f-a2c2-e937e889e99b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.944+00:00", "updatedDate": "2021-12-06T01:51:01.944+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "342971e4-43af-44c3-a8c3-478a97cc94bc" }'); INSERT INTO inventory_service_points_users VALUES ('98f315f5-a53b-4798-b573-e5c7751ec458', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '261e1062-a473-47f4-a00f-a197c4a87530', '{ "id": "98f315f5-a53b-4798-b573-e5c7751ec458", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.708+00:00", "updatedDate": "2021-12-06T01:51:01.708+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "261e1062-a473-47f4-a00f-a197c4a87530" }'); INSERT INTO inventory_service_points_users VALUES ('99213b98-4bdb-42c7-8918-8d34f7a1fafa', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '75da2654-00a8-4ca5-9c73-2bf9e1e5c883', '{ "id": "99213b98-4bdb-42c7-8918-8d34f7a1fafa", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.349+00:00", "updatedDate": "2021-12-06T01:51:01.349+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "75da2654-00a8-4ca5-9c73-2bf9e1e5c883" }'); INSERT INTO inventory_service_points_users VALUES ('9a0824e3-f341-4e4a-b9d2-ea5fcfa30b7d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '70e0c050-e842-4eee-9632-967a49e43bb2', '{ "id": "9a0824e3-f341-4e4a-b9d2-ea5fcfa30b7d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.939+00:00", "updatedDate": "2021-12-06T01:51:01.939+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "70e0c050-e842-4eee-9632-967a49e43bb2" }'); INSERT INTO inventory_service_points_users VALUES ('9a4a853a-a043-4746-afe6-9459f1adf52a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b56b28b9-7f22-426e-a099-4f753be686fa', '{ "id": "9a4a853a-a043-4746-afe6-9459f1adf52a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.705+00:00", "updatedDate": "2021-12-06T01:51:01.705+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b56b28b9-7f22-426e-a099-4f753be686fa" }'); INSERT INTO inventory_service_points_users VALUES ('9b6e8548-5d09-4255-8eee-e68c296128d8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3793853e-6297-424d-abea-24525079f658', '{ "id": "9b6e8548-5d09-4255-8eee-e68c296128d8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.064+00:00", "updatedDate": "2021-12-06T01:51:02.064+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3793853e-6297-424d-abea-24525079f658" }'); INSERT INTO inventory_service_points_users VALUES ('9c96179f-9e45-4cea-b423-a4f9a13b6069', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '44e640f4-3e0e-4bb4-92af-6263108893b2', '{ "id": "9c96179f-9e45-4cea-b423-a4f9a13b6069", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.685+00:00", "updatedDate": "2021-12-06T01:51:01.685+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "44e640f4-3e0e-4bb4-92af-6263108893b2" }'); INSERT INTO inventory_service_points_users VALUES ('9cdc8708-5c60-4db7-b6ac-d33ce5a60737', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b3f61b07-a1b3-44ac-bb7f-622b90ac17c3', '{ "id": "9cdc8708-5c60-4db7-b6ac-d33ce5a60737", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.796+00:00", "updatedDate": "2021-12-06T01:51:01.796+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b3f61b07-a1b3-44ac-bb7f-622b90ac17c3" }'); INSERT INTO inventory_service_points_users VALUES ('9de5ff59-604d-48b5-8c61-5cec8e9f97b3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2fabd929-3ed9-40ae-aaf2-6c39c4bebf13', '{ "id": "9de5ff59-604d-48b5-8c61-5cec8e9f97b3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.963+00:00", "updatedDate": "2021-12-06T01:51:01.963+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2fabd929-3ed9-40ae-aaf2-6c39c4bebf13" }'); INSERT INTO inventory_service_points_users VALUES ('9e5625cd-ea55-4816-89d9-6da0ce8c6d86', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e25fecaf-dfbf-4e59-bd3d-0493c1b519f5', '{ "id": "9e5625cd-ea55-4816-89d9-6da0ce8c6d86", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.049+00:00", "updatedDate": "2021-12-06T01:51:02.049+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e25fecaf-dfbf-4e59-bd3d-0493c1b519f5" }'); INSERT INTO inventory_service_points_users VALUES ('9e9a7288-7ae4-4f6d-aff9-6e7c6d3df9e6', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18', '{ "id": "9e9a7288-7ae4-4f6d-aff9-6e7c6d3df9e6", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.894+00:00", "updatedDate": "2021-12-06T01:51:01.894+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18" }'); INSERT INTO inventory_service_points_users VALUES ('9ea533aa-0f45-405d-b84d-479977a66122', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4', '{ "id": "9ea533aa-0f45-405d-b84d-479977a66122", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.400+00:00", "updatedDate": "2021-12-06T01:51:01.400+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4" }'); INSERT INTO inventory_service_points_users VALUES ('9f00e332-7df8-430d-942c-9f729fdffd24', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '550a06c3-8d0c-4ae3-a267-b32527272772', '{ "id": "9f00e332-7df8-430d-942c-9f729fdffd24", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.429+00:00", "updatedDate": "2021-12-06T01:51:01.429+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "550a06c3-8d0c-4ae3-a267-b32527272772" }'); INSERT INTO inventory_service_points_users VALUES ('9f4859e1-73c9-4719-ac06-47cad16dacff', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3ada4a0c-e554-4749-8809-fee35fe2c7ad', '{ "id": "9f4859e1-73c9-4719-ac06-47cad16dacff", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.814+00:00", "updatedDate": "2021-12-06T01:51:01.814+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3ada4a0c-e554-4749-8809-fee35fe2c7ad" }'); INSERT INTO inventory_service_points_users VALUES ('9f816e27-8e93-4ab5-bd39-68629119d6ac', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '9a04ae0d-e39f-44c3-b520-43144f6d93e4', '{ "id": "9f816e27-8e93-4ab5-bd39-68629119d6ac", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.616+00:00", "updatedDate": "2021-12-06T01:51:01.616+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "9a04ae0d-e39f-44c3-b520-43144f6d93e4" }'); INSERT INTO inventory_service_points_users VALUES ('a00fa4b0-31c9-46ff-9ccd-030d19f933e0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43', '{ "id": "a00fa4b0-31c9-46ff-9ccd-030d19f933e0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.006+00:00", "updatedDate": "2021-12-06T01:51:02.006+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43" }'); INSERT INTO inventory_service_points_users VALUES ('a0952c32-a4b1-4990-8398-eacad730b1bf', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '888a321d-676e-42fc-b588-a677d16a76ec', '{ "id": "a0952c32-a4b1-4990-8398-eacad730b1bf", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.697+00:00", "updatedDate": "2021-12-06T01:51:01.697+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "888a321d-676e-42fc-b588-a677d16a76ec" }'); INSERT INTO inventory_service_points_users VALUES ('a0dfac7b-fec9-4ac9-a1c7-dfc6c21e4e3e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '36db855c-e416-405e-98f3-6955888d31ec', '{ "id": "a0dfac7b-fec9-4ac9-a1c7-dfc6c21e4e3e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.027+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.027+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "36db855c-e416-405e-98f3-6955888d31ec" }'); INSERT INTO inventory_service_points_users VALUES ('a1031c94-3f1b-4311-9168-887e3ad57623', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6e74dfe1-2eca-48bd-89ce-9fe1633920a3', '{ "id": "a1031c94-3f1b-4311-9168-887e3ad57623", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.886+00:00", "updatedDate": "2021-12-06T01:51:01.886+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6e74dfe1-2eca-48bd-89ce-9fe1633920a3" }'); INSERT INTO inventory_service_points_users VALUES ('a276e6d4-4df9-4a14-b010-9bb416a27b77', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'cd5994cf-6ee5-49b4-b58e-7bc70d724626', '{ "id": "a276e6d4-4df9-4a14-b010-9bb416a27b77", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.374+00:00", "updatedDate": "2021-12-06T01:51:01.374+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "cd5994cf-6ee5-49b4-b58e-7bc70d724626" }'); INSERT INTO inventory_service_points_users VALUES ('a2cb5624-94e5-45bb-948f-ce21b700329d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f6d2c74c-3181-4c25-9a21-1b1f4c30765f', '{ "id": "a2cb5624-94e5-45bb-948f-ce21b700329d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.692+00:00", "updatedDate": "2021-12-06T01:51:01.692+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f6d2c74c-3181-4c25-9a21-1b1f4c30765f" }'); INSERT INTO inventory_service_points_users VALUES ('a441a0bb-a6cb-436f-a399-1ee8115d75fa', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ea2ef01f-d732-4119-90ab-ee6df447548f', '{ "id": "a441a0bb-a6cb-436f-a399-1ee8115d75fa", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.891+00:00", "updatedDate": "2021-12-06T01:51:01.891+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ea2ef01f-d732-4119-90ab-ee6df447548f" }'); INSERT INTO inventory_service_points_users VALUES ('a6073717-92dd-45ed-b0be-0bb99e3f9aef', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7aa8082c-d1ed-4e33-bf0e-02d3efe5624b', '{ "id": "a6073717-92dd-45ed-b0be-0bb99e3f9aef", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.035+00:00", "updatedDate": "2021-12-06T01:51:02.035+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7aa8082c-d1ed-4e33-bf0e-02d3efe5624b" }'); INSERT INTO inventory_service_points_users VALUES ('a716167b-0290-44a0-a011-165d785e0be2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '722d30ad-a8f4-4334-8605-990724027108', '{ "id": "a716167b-0290-44a0-a011-165d785e0be2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:30.159+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:30.159+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "722d30ad-a8f4-4334-8605-990724027108" }'); INSERT INTO inventory_service_points_users VALUES ('ac3b9c82-9b5b-42cb-872f-cbc40105c3e3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '78284bd0-cdf1-4fc9-a404-739388b41cc7', '{ "id": "ac3b9c82-9b5b-42cb-872f-cbc40105c3e3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.446+00:00", "updatedDate": "2021-12-06T01:51:01.446+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "78284bd0-cdf1-4fc9-a404-739388b41cc7" }'); INSERT INTO inventory_service_points_users VALUES ('ac421245-f3ec-4ab3-aa8a-29156eacd8e2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2eb8fef6-95c8-491d-a6a3-00176997dca4', '{ "id": "ac421245-f3ec-4ab3-aa8a-29156eacd8e2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.494+00:00", "updatedDate": "2021-12-06T01:51:01.494+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2eb8fef6-95c8-491d-a6a3-00176997dca4" }'); INSERT INTO inventory_service_points_users VALUES ('ac94cffb-2835-4370-ad9c-0cdc862c2a86', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6', '{ "id": "ac94cffb-2835-4370-ad9c-0cdc862c2a86", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.711+00:00", "updatedDate": "2021-12-06T01:51:01.711+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6" }'); INSERT INTO inventory_service_points_users VALUES ('ad0baad1-2494-4c98-ad36-fc394dfd637f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c7d6c761-905e-4e7b-a616-a624175efe11', '{ "id": "ad0baad1-2494-4c98-ad36-fc394dfd637f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.410+00:00", "updatedDate": "2021-12-06T01:51:01.410+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c7d6c761-905e-4e7b-a616-a624175efe11" }'); INSERT INTO inventory_service_points_users VALUES ('ad1d46fa-7a46-490c-b6d9-816737ce5a5e', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ac521a2a-d933-42f9-b3a4-2d7399880057', '{ "id": "ad1d46fa-7a46-490c-b6d9-816737ce5a5e", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.584+00:00", "updatedDate": "2021-12-06T01:51:01.584+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ac521a2a-d933-42f9-b3a4-2d7399880057" }'); INSERT INTO inventory_service_points_users VALUES ('af4b6c3d-8ed9-416e-be81-88fdf5ab9c35', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e546d50a-926a-421f-8400-a041a2e9db79', '{ "id": "af4b6c3d-8ed9-416e-be81-88fdf5ab9c35", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.030+00:00", "updatedDate": "2021-12-06T01:51:02.030+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e546d50a-926a-421f-8400-a041a2e9db79" }'); INSERT INTO inventory_service_points_users VALUES ('b01cf173-e382-47ba-874b-48ba11290798', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e1e435da-97e2-4083-8657-832aeb549929', '{ "id": "b01cf173-e382-47ba-874b-48ba11290798", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.639+00:00", "updatedDate": "2021-12-06T01:51:01.639+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e1e435da-97e2-4083-8657-832aeb549929" }'); INSERT INTO inventory_service_points_users VALUES ('b0871d04-69ab-455e-a222-048ba5515c8a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '32134c21-fae8-497e-b2d2-daa1ba421070', '{ "id": "b0871d04-69ab-455e-a222-048ba5515c8a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.949+00:00", "updatedDate": "2021-12-06T01:51:01.949+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "32134c21-fae8-497e-b2d2-daa1ba421070" }'); INSERT INTO inventory_service_points_users VALUES ('b1c1218d-11c6-4152-b8c8-ddb2d8b40b72', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0d6d38bf-aaf6-4976-a2ce-7ff787195982', '{ "id": "b1c1218d-11c6-4152-b8c8-ddb2d8b40b72", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.758+00:00", "updatedDate": "2021-12-06T01:51:01.758+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0d6d38bf-aaf6-4976-a2ce-7ff787195982" }'); INSERT INTO inventory_service_points_users VALUES ('b2255927-2834-4a84-b92e-6dcff4f923b0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ffce08d4-c08d-4ff8-8ff8-060a5015aa2a', '{ "id": "b2255927-2834-4a84-b92e-6dcff4f923b0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.479+00:00", "updatedDate": "2021-12-06T01:51:01.479+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ffce08d4-c08d-4ff8-8ff8-060a5015aa2a" }'); INSERT INTO inventory_service_points_users VALUES ('b24cc35b-25e3-4af9-b947-51972b11afe1', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e0b7cb11-7d1f-48d8-b8a5-bc138550313d', '{ "id": "b24cc35b-25e3-4af9-b947-51972b11afe1", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.433+00:00", "updatedDate": "2021-12-06T01:51:01.433+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e0b7cb11-7d1f-48d8-b8a5-bc138550313d" }'); INSERT INTO inventory_service_points_users VALUES ('b290118a-f589-4975-9584-263150b467df', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'bc048122-1914-4971-ab0f-62303fef71aa', '{ "id": "b290118a-f589-4975-9584-263150b467df", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.431+00:00", "updatedDate": "2021-12-06T01:51:01.431+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "bc048122-1914-4971-ab0f-62303fef71aa" }'); INSERT INTO inventory_service_points_users VALUES ('b4db6d61-aa0b-43ee-a062-c6982dc72149', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'dc13dcc6-2bda-412c-b046-1398d1becb75', '{ "id": "b4db6d61-aa0b-43ee-a062-c6982dc72149", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.721+00:00", "updatedDate": "2021-12-06T01:51:01.721+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "dc13dcc6-2bda-412c-b046-1398d1becb75" }'); INSERT INTO inventory_service_points_users VALUES ('b51581cd-dd8a-4f61-ad33-fb6c63dc21be', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b3a2ccbb-7f3f-4688-868f-7842aaf3487f', '{ "id": "b51581cd-dd8a-4f61-ad33-fb6c63dc21be", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.146+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.146+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b3a2ccbb-7f3f-4688-868f-7842aaf3487f" }'); INSERT INTO inventory_service_points_users VALUES ('b65d6c63-be30-4761-86d1-887f04383537', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '60a579b3-1f3c-4996-b2aa-3cee21f24f4b', '{ "id": "b65d6c63-be30-4761-86d1-887f04383537", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.701+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.701+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "60a579b3-1f3c-4996-b2aa-3cee21f24f4b" }'); INSERT INTO inventory_service_points_users VALUES ('b6e30a2f-20be-436f-a1b7-55b25598bddd', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8616dd12-e244-4047-834a-db0c6cd1477b', '{ "id": "b6e30a2f-20be-436f-a1b7-55b25598bddd", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.051+00:00", "updatedDate": "2021-12-06T01:51:02.051+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8616dd12-e244-4047-834a-db0c6cd1477b" }'); INSERT INTO inventory_service_points_users VALUES ('b6e49333-5364-4fb4-a098-6ed1479dd14b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e6dfcfef-e724-4485-870d-d2c4d1dcfdd9', '{ "id": "b6e49333-5364-4fb4-a098-6ed1479dd14b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.074+00:00", "updatedDate": "2021-12-06T01:51:02.074+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e6dfcfef-e724-4485-870d-d2c4d1dcfdd9" }'); INSERT INTO inventory_service_points_users VALUES ('b7d2dcbb-1f75-48f8-85c9-1dea72924c65', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c2610e2c-a6f8-4336-95b6-54d716348b03', '{ "id": "b7d2dcbb-1f75-48f8-85c9-1dea72924c65", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.956+00:00", "updatedDate": "2021-12-06T01:51:01.956+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c2610e2c-a6f8-4336-95b6-54d716348b03" }'); INSERT INTO inventory_service_points_users VALUES ('b8404eb1-ee8f-477e-806d-44ebe480ec40', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2c9e8cdd-d2fe-485b-b663-34225637fe93', '{ "id": "b8404eb1-ee8f-477e-806d-44ebe480ec40", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.306+00:00", "updatedDate": "2021-12-06T01:51:01.306+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2c9e8cdd-d2fe-485b-b663-34225637fe93" }'); INSERT INTO inventory_service_points_users VALUES ('b9186284-508d-4ff8-b648-2fab04a9eea9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8e9d1a69-9745-4ad4-a8e8-6841a9441b40', '{ "id": "b9186284-508d-4ff8-b648-2fab04a9eea9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.314+00:00", "updatedDate": "2021-12-06T01:51:01.314+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8e9d1a69-9745-4ad4-a8e8-6841a9441b40" }'); INSERT INTO inventory_service_points_users VALUES ('b9c46410-dad5-4d07-bc79-2de1b0360a09', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '8f7a47c4-d66f-4dba-9255-f74507a2ecee', '{ "id": "b9c46410-dad5-4d07-bc79-2de1b0360a09", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.918+00:00", "updatedDate": "2021-12-06T01:51:01.918+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "8f7a47c4-d66f-4dba-9255-f74507a2ecee" }'); INSERT INTO inventory_service_points_users VALUES ('ba3235a5-c37c-4399-848e-c190bce7ae54', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '69a7d4f8-a32a-46d8-a006-0e5ea69f34bc', '{ "id": "ba3235a5-c37c-4399-848e-c190bce7ae54", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.896+00:00", "updatedDate": "2021-12-06T01:51:01.896+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "69a7d4f8-a32a-46d8-a006-0e5ea69f34bc" }'); INSERT INTO inventory_service_points_users VALUES ('babf05c4-ae96-4674-bc63-6fb2ac2bc8d8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ec97250b-1ded-46a7-a8f6-a474f8fe622d', '{ "id": "babf05c4-ae96-4674-bc63-6fb2ac2bc8d8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.587+00:00", "updatedDate": "2021-12-06T01:51:01.587+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ec97250b-1ded-46a7-a8f6-a474f8fe622d" }'); INSERT INTO inventory_service_points_users VALUES ('be30fad2-d79e-4bea-ba72-c9f097a2da85', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'bd566b21-d125-421c-9c78-2b9a8bc4c4f7', '{ "id": "be30fad2-d79e-4bea-ba72-c9f097a2da85", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.772+00:00", "updatedDate": "2021-12-06T01:51:01.772+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "bd566b21-d125-421c-9c78-2b9a8bc4c4f7" }'); INSERT INTO inventory_service_points_users VALUES ('bee3ae70-9336-4b19-ad9f-9b6330197c2b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '86c9f455-a685-45d0-9d01-5943a1ba7e5b', '{ "id": "bee3ae70-9336-4b19-ad9f-9b6330197c2b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.688+00:00", "updatedDate": "2021-12-06T01:51:01.688+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "86c9f455-a685-45d0-9d01-5943a1ba7e5b" }'); INSERT INTO inventory_service_points_users VALUES ('c049a7ea-b7d1-498b-b800-e55baac88126', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6c76eeec-183d-4635-9019-11ce8623d50c', '{ "id": "c049a7ea-b7d1-498b-b800-e55baac88126", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.636+00:00", "updatedDate": "2021-12-06T01:51:01.636+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6c76eeec-183d-4635-9019-11ce8623d50c" }'); INSERT INTO inventory_service_points_users VALUES ('c2ec74fd-b2cb-474e-9d28-09d36668cbcf', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b09038a4-0386-4782-8ee8-11aa87e09887', '{ "id": "c2ec74fd-b2cb-474e-9d28-09d36668cbcf", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.923+00:00", "updatedDate": "2021-12-06T01:51:01.923+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b09038a4-0386-4782-8ee8-11aa87e09887" }'); INSERT INTO inventory_service_points_users VALUES ('c3557ed6-06c1-48ed-bb65-566f21ad4158', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e308411d-773e-416e-be58-f16176c0549e', '{ "id": "c3557ed6-06c1-48ed-bb65-566f21ad4158", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.363+00:00", "updatedDate": "2021-12-06T01:51:01.363+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e308411d-773e-416e-be58-f16176c0549e" }'); INSERT INTO inventory_service_points_users VALUES ('c5834a8b-68e7-4c4c-acda-c771f85d94b7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ef39251f-db4c-4253-9951-645735f84904', '{ "id": "c5834a8b-68e7-4c4c-acda-c771f85d94b7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.645+00:00", "updatedDate": "2021-12-06T01:51:01.645+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ef39251f-db4c-4253-9951-645735f84904" }'); INSERT INTO inventory_service_points_users VALUES ('c59d3a43-7e03-4166-b458-67b6a9f82c68', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4', '{ "id": "c59d3a43-7e03-4166-b458-67b6a9f82c68", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.540+00:00", "updatedDate": "2021-12-06T01:51:01.540+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4" }'); INSERT INTO inventory_service_points_users VALUES ('c5d299ec-cc9c-465b-a277-14dc0bf8f8df', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a208cf17-a7f0-452d-ae0e-64011232c86d', '{ "id": "c5d299ec-cc9c-465b-a277-14dc0bf8f8df", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.341+00:00", "updatedDate": "2021-12-06T01:51:01.341+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a208cf17-a7f0-452d-ae0e-64011232c86d" }'); INSERT INTO inventory_service_points_users VALUES ('c5e2c453-909b-4fb7-817b-e48a9124eb56', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b4e91548-c387-4b01-aaa1-489afc3f6936', '{ "id": "c5e2c453-909b-4fb7-817b-e48a9124eb56", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.952+00:00", "updatedDate": "2021-12-06T01:51:01.952+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b4e91548-c387-4b01-aaa1-489afc3f6936" }'); INSERT INTO inventory_service_points_users VALUES ('c77185a7-4df4-4904-8931-c6af2d14066d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ab60d124-5d41-49c5-8aae-2ef2cd3704c2', '{ "id": "c77185a7-4df4-4904-8931-c6af2d14066d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.038+00:00", "updatedDate": "2021-12-06T01:51:02.038+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ab60d124-5d41-49c5-8aae-2ef2cd3704c2" }'); INSERT INTO inventory_service_points_users VALUES ('cc2a3ddb-68dd-45e5-9ca3-dc8108e4bb48', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5cc5bd09-d90e-4484-8058-74c237165877', '{ "id": "cc2a3ddb-68dd-45e5-9ca3-dc8108e4bb48", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.626+00:00", "updatedDate": "2021-12-06T01:51:01.626+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5cc5bd09-d90e-4484-8058-74c237165877" }'); INSERT INTO inventory_service_points_users VALUES ('ccb45e97-0734-494b-ad98-804a8207cd56', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '578a03a3-b4b0-4b62-a62c-6caae710e3d7', '{ "id": "ccb45e97-0734-494b-ad98-804a8207cd56", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.713+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.713+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "578a03a3-b4b0-4b62-a62c-6caae710e3d7" }'); INSERT INTO inventory_service_points_users VALUES ('cd31ebc7-87cf-486f-8f42-57cdac25d696', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6f36265e-722a-490a-b436-806e63af2ea7', '{ "id": "cd31ebc7-87cf-486f-8f42-57cdac25d696", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.028+00:00", "updatedDate": "2021-12-06T01:51:02.028+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6f36265e-722a-490a-b436-806e63af2ea7" }'); INSERT INTO inventory_service_points_users VALUES ('cd6cf2d8-591f-4fd3-ae4f-7e4173e63816', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2e5f9cc4-46ab-4dfe-b40a-8493296353fb', '{ "id": "cd6cf2d8-591f-4fd3-ae4f-7e4173e63816", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.001+00:00", "updatedDate": "2021-12-06T01:51:02.001+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2e5f9cc4-46ab-4dfe-b40a-8493296353fb" }'); INSERT INTO inventory_service_points_users VALUES ('cd8e357c-bac9-45eb-8bf2-f8df4ea7425b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e505acd3-925e-4e2c-a255-8d11e25ba046', '{ "id": "cd8e357c-bac9-45eb-8bf2-f8df4ea7425b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.653+00:00", "updatedDate": "2021-12-06T01:51:01.653+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e505acd3-925e-4e2c-a255-8d11e25ba046" }'); INSERT INTO inventory_service_points_users VALUES ('ceb03f26-a31d-49d5-ae1c-6541d2b8d557', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'bf93cf45-4c02-4a34-aad0-9ed949109630', '{ "id": "ceb03f26-a31d-49d5-ae1c-6541d2b8d557", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.648+00:00", "updatedDate": "2021-12-06T01:51:01.648+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "bf93cf45-4c02-4a34-aad0-9ed949109630" }'); INSERT INTO inventory_service_points_users VALUES ('cf46fc2f-e9c1-4f3e-b758-2f4798e89fc9', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '67002fdf-b2f6-4e1f-bab8-d750efb0558f', '{ "id": "cf46fc2f-e9c1-4f3e-b758-2f4798e89fc9", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.457+00:00", "updatedDate": "2021-12-06T01:51:01.457+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "67002fdf-b2f6-4e1f-bab8-d750efb0558f" }'); INSERT INTO inventory_service_points_users VALUES ('d0503e30-b1c2-4733-90d8-79aee02bed3c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b549fc60-9779-4bac-a4de-df8304ff69c4', '{ "id": "d0503e30-b1c2-4733-90d8-79aee02bed3c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.365+00:00", "updatedDate": "2021-12-06T01:51:01.365+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b549fc60-9779-4bac-a4de-df8304ff69c4" }'); INSERT INTO inventory_service_points_users VALUES ('d0cc9032-e7c4-4341-b5ac-e0b6db3edcad', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b3e39715-0659-4776-9d40-abe655408d84', '{ "id": "d0cc9032-e7c4-4341-b5ac-e0b6db3edcad", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.579+00:00", "updatedDate": "2021-12-06T01:51:01.579+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b3e39715-0659-4776-9d40-abe655408d84" }'); INSERT INTO inventory_service_points_users VALUES ('d11d758d-44b3-46fa-be31-302f62deb365', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a0dadce9-06ed-4b23-9fc0-6b5238aa92d8', '{ "id": "d11d758d-44b3-46fa-be31-302f62deb365", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.521+00:00", "updatedDate": "2021-12-06T01:51:01.521+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a0dadce9-06ed-4b23-9fc0-6b5238aa92d8" }'); INSERT INTO inventory_service_points_users VALUES ('d14e3e26-6a5a-41aa-9250-5c677286dca2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f6cd72ab-3e89-44c0-99aa-54ab4844f167', '{ "id": "d14e3e26-6a5a-41aa-9250-5c677286dca2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.334+00:00", "updatedDate": "2021-12-06T01:51:01.334+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f6cd72ab-3e89-44c0-99aa-54ab4844f167" }'); INSERT INTO inventory_service_points_users VALUES ('d2b50092-0606-43ab-bd97-2da6ebe68c67', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5e84b6a4-fde4-4099-ab54-c82c9041f685', '{ "id": "d2b50092-0606-43ab-bd97-2da6ebe68c67", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.067+00:00", "updatedDate": "2021-12-06T01:51:02.067+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5e84b6a4-fde4-4099-ab54-c82c9041f685" }'); INSERT INTO inventory_service_points_users VALUES ('d49a4ba8-47ab-4280-bb11-3cb4ff92844b', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c8edf675-9323-4410-9d14-0727e038dad0', '{ "id": "d49a4ba8-47ab-4280-bb11-3cb4ff92844b", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.959+00:00", "updatedDate": "2021-12-06T01:51:01.959+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c8edf675-9323-4410-9d14-0727e038dad0" }'); INSERT INTO inventory_service_points_users VALUES ('d4a95cf1-5e87-4e5f-b8a6-0da0b52e975f', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '2120fe62-ba0a-4dce-8701-f360368d5c30', '{ "id": "d4a95cf1-5e87-4e5f-b8a6-0da0b52e975f", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.069+00:00", "updatedDate": "2021-12-06T01:51:02.069+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "2120fe62-ba0a-4dce-8701-f360368d5c30" }'); INSERT INTO inventory_service_points_users VALUES ('d57cb959-94fd-463f-901a-60be3e5bbdd7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '7597bd13-9f57-4cd1-a7cf-dc0ac7375280', '{ "id": "d57cb959-94fd-463f-901a-60be3e5bbdd7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.318+00:00", "updatedDate": "2021-12-06T01:51:01.318+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "7597bd13-9f57-4cd1-a7cf-dc0ac7375280" }'); INSERT INTO inventory_service_points_users VALUES ('d65c85e3-b179-46e4-a4a7-b51c39b4b133', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '734f2e97-2c41-4e70-9b98-44cead2607e4', '{ "id": "d65c85e3-b179-46e4-a4a7-b51c39b4b133", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.976+00:00", "updatedDate": "2021-12-06T01:51:01.976+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "734f2e97-2c41-4e70-9b98-44cead2607e4" }'); INSERT INTO inventory_service_points_users VALUES ('d9127752-cf43-466b-b58a-a08b7e9238e2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '5f9bb63a-66f1-47eb-bc19-f182af2fc3e7', '{ "id": "d9127752-cf43-466b-b58a-a08b7e9238e2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.631+00:00", "updatedDate": "2021-12-06T01:51:01.631+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "5f9bb63a-66f1-47eb-bc19-f182af2fc3e7" }'); INSERT INTO inventory_service_points_users VALUES ('da40d522-8348-4494-b039-485c27144ad7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '3387893c-7bde-4d2f-9ad2-d4974b3e959e', '{ "id": "da40d522-8348-4494-b039-485c27144ad7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.947+00:00", "updatedDate": "2021-12-06T01:51:01.947+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "3387893c-7bde-4d2f-9ad2-d4974b3e959e" }'); INSERT INTO inventory_service_points_users VALUES ('dae3dc23-9214-43d2-8110-c8ea1bb2ad11', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '785c6f6e-36a5-4434-8aa7-210bb55cea34', '{ "id": "dae3dc23-9214-43d2-8110-c8ea1bb2ad11", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.506+00:00", "updatedDate": "2021-12-06T01:51:01.506+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "785c6f6e-36a5-4434-8aa7-210bb55cea34" }'); INSERT INTO inventory_service_points_users VALUES ('dc1de97f-8eb9-4978-b7fd-d907b82b43a1', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6f644096-0cb6-4d9c-9da4-0831b3625c0d', '{ "id": "dc1de97f-8eb9-4978-b7fd-d907b82b43a1", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.501+00:00", "updatedDate": "2021-12-06T01:51:01.501+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6f644096-0cb6-4d9c-9da4-0831b3625c0d" }'); INSERT INTO inventory_service_points_users VALUES ('dc72e0b0-d70c-44d0-b390-771c1900434c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '48861bba-0d73-4277-8f44-f3b65b038017', '{ "id": "dc72e0b0-d70c-44d0-b390-771c1900434c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.534+00:00", "updatedDate": "2021-12-06T01:51:01.534+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "48861bba-0d73-4277-8f44-f3b65b038017" }'); INSERT INTO inventory_service_points_users VALUES ('dcbd9bd3-ccea-464f-8473-fd491af03c75', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1200edd1-4b53-43e7-a9b7-fc590ab1c8d9', '{ "id": "dcbd9bd3-ccea-464f-8473-fd491af03c75", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.831+00:00", "updatedDate": "2021-12-06T01:51:01.831+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1200edd1-4b53-43e7-a9b7-fc590ab1c8d9" }'); INSERT INTO inventory_service_points_users VALUES ('dce6fb3d-2c29-46c9-9d84-b7a75a53eba0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4cb9a24c-76e1-4755-9f54-f51115e00b53', '{ "id": "dce6fb3d-2c29-46c9-9d84-b7a75a53eba0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.448+00:00", "updatedDate": "2021-12-06T01:51:01.448+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4cb9a24c-76e1-4755-9f54-f51115e00b53" }'); INSERT INTO inventory_service_points_users VALUES ('ddd70ec3-634b-4fb5-9f26-3a7109b1b08d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '066795ce-4938-48f2-9411-f3f922b51e1c', '{ "id": "ddd70ec3-634b-4fb5-9f26-3a7109b1b08d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.872+00:00", "updatedDate": "2021-12-06T01:51:01.872+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "066795ce-4938-48f2-9411-f3f922b51e1c" }'); INSERT INTO inventory_service_points_users VALUES ('de9424cb-a8a5-48de-91bd-34060b852082', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '975256dc-abdc-45d1-b51a-f9f9ca15a491', '{ "id": "de9424cb-a8a5-48de-91bd-34060b852082", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.360+00:00", "updatedDate": "2021-12-06T01:51:01.360+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "975256dc-abdc-45d1-b51a-f9f9ca15a491" }'); INSERT INTO inventory_service_points_users VALUES ('df0268c5-b389-4ffb-adb3-93a85b3000f3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '89066e1d-0691-4514-ae37-586cf746d3f4', '{ "id": "df0268c5-b389-4ffb-adb3-93a85b3000f3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.954+00:00", "updatedDate": "2021-12-06T01:51:01.954+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "89066e1d-0691-4514-ae37-586cf746d3f4" }'); INSERT INTO inventory_service_points_users VALUES ('df02d4c4-925a-4e22-9caa-279d38fa1e0c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0414af69-f89c-40f2-bea9-a9b5d0a179d4', '{ "id": "df02d4c4-925a-4e22-9caa-279d38fa1e0c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.658+00:00", "updatedDate": "2021-12-06T01:51:01.658+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0414af69-f89c-40f2-bea9-a9b5d0a179d4" }'); INSERT INTO inventory_service_points_users VALUES ('e0e96c5d-fe71-428e-b8fe-9c9b74ab7455', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c', '{ "id": "e0e96c5d-fe71-428e-b8fe-9c9b74ab7455", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.592+00:00", "updatedDate": "2021-12-06T01:51:01.592+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c" }'); INSERT INTO inventory_service_points_users VALUES ('e15286ab-3781-4986-aef1-37612f330341', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b9a05706-9d87-499d-8e5e-47dc512a21c3', '{ "id": "e15286ab-3781-4986-aef1-37612f330341", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.436+00:00", "updatedDate": "2021-12-06T01:51:01.436+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b9a05706-9d87-499d-8e5e-47dc512a21c3" }'); INSERT INTO inventory_service_points_users VALUES ('e2415b9b-fa4e-4cf7-ad99-eba585c2ac15', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'ad52b1a2-5434-40ee-9ea4-9c4729f42872', '{ "id": "e2415b9b-fa4e-4cf7-ad99-eba585c2ac15", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.204+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.204+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "ad52b1a2-5434-40ee-9ea4-9c4729f42872" }'); INSERT INTO inventory_service_points_users VALUES ('e2bbaacf-4204-4009-a40e-f192c9695c9c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0e64adb1-36ba-4cdd-9909-047612b7629e', '{ "id": "e2bbaacf-4204-4009-a40e-f192c9695c9c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.550+00:00", "updatedDate": "2021-12-06T01:51:01.550+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0e64adb1-36ba-4cdd-9909-047612b7629e" }'); INSERT INTO inventory_service_points_users VALUES ('e2d724da-a690-4320-bf69-4798b7ca5fd7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1c65f9c5-5970-48bb-aa72-82ef96fc145e', '{ "id": "e2d724da-a690-4320-bf69-4798b7ca5fd7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.769+00:00", "updatedDate": "2021-12-06T01:51:01.769+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1c65f9c5-5970-48bb-aa72-82ef96fc145e" }'); INSERT INTO inventory_service_points_users VALUES ('e39a4aae-e327-4f3c-bf88-37f817520538', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '01b9d72b-9aab-4efd-97a4-d03c1667bf0d', '{ "id": "e39a4aae-e327-4f3c-bf88-37f817520538", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.385+00:00", "updatedDate": "2021-12-06T01:51:01.385+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "01b9d72b-9aab-4efd-97a4-d03c1667bf0d" }'); INSERT INTO inventory_service_points_users VALUES ('e58901e1-d3d5-4839-aacb-20181cab8717', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '52e47672-d456-40b6-9f2d-6597d3e9f942', '{ "id": "e58901e1-d3d5-4839-aacb-20181cab8717", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.438+00:00", "updatedDate": "2021-12-06T01:51:01.438+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "52e47672-d456-40b6-9f2d-6597d3e9f942" }'); INSERT INTO inventory_service_points_users VALUES ('e5f76fab-818f-4ea7-8c94-949fcaa50052', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd1f69036-a316-41e4-89c1-77f77a3c7f1d', '{ "id": "e5f76fab-818f-4ea7-8c94-949fcaa50052", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.547+00:00", "updatedDate": "2021-12-06T01:51:01.547+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d1f69036-a316-41e4-89c1-77f77a3c7f1d" }'); INSERT INTO inventory_service_points_users VALUES ('e5fbcb78-490c-40dd-b163-002a99ab81ee', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '34a22ca8-9aff-4b1c-96c2-f908ddb068ae', '{ "id": "e5fbcb78-490c-40dd-b163-002a99ab81ee", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.716+00:00", "updatedDate": "2021-12-06T01:51:01.716+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "34a22ca8-9aff-4b1c-96c2-f908ddb068ae" }'); INSERT INTO inventory_service_points_users VALUES ('e618b27e-9003-48cb-b9dd-762a77707b62', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c51cf0e7-ea33-4638-a54c-afffc75a680b', '{ "id": "e618b27e-9003-48cb-b9dd-762a77707b62", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.467+00:00", "updatedDate": "2021-12-06T01:51:01.467+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c51cf0e7-ea33-4638-a54c-afffc75a680b" }'); INSERT INTO inventory_service_points_users VALUES ('e683ae8a-9c20-471b-aa56-d7151ca8d9a3', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd20d2f4e-6356-4dc3-b7b1-8b9fb5564e02', '{ "id": "e683ae8a-9c20-471b-aa56-d7151ca8d9a3", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.465+00:00", "updatedDate": "2021-12-06T01:51:01.465+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d20d2f4e-6356-4dc3-b7b1-8b9fb5564e02" }'); INSERT INTO inventory_service_points_users VALUES ('e720c9f7-5975-4f0c-b567-92c2614811ff', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f5d7aed2-1647-4e83-b85e-74760f770799', '{ "id": "e720c9f7-5975-4f0c-b567-92c2614811ff", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.450+00:00", "updatedDate": "2021-12-06T01:51:01.450+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f5d7aed2-1647-4e83-b85e-74760f770799" }'); INSERT INTO inventory_service_points_users VALUES ('e8fd2359-db48-4537-9cf0-84a3abdee6eb', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'a56edfbe-087e-4f79-bd7e-d855fbe746e4', '{ "id": "e8fd2359-db48-4537-9cf0-84a3abdee6eb", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.371+00:00", "updatedDate": "2021-12-06T01:51:01.371+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "a56edfbe-087e-4f79-bd7e-d855fbe746e4" }'); INSERT INTO inventory_service_points_users VALUES ('e934c9b5-92c4-4703-be1a-6783d5c91204', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096', '{ "id": "e934c9b5-92c4-4703-be1a-6783d5c91204", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.745+00:00", "updatedDate": "2021-12-06T01:51:01.745+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096" }'); INSERT INTO inventory_service_points_users VALUES ('e96deabb-5807-4a51-ad45-02f36ccf6364', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f0dc6802-450f-459a-9dc6-209086375b7f', '{ "id": "e96deabb-5807-4a51-ad45-02f36ccf6364", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.053+00:00", "updatedDate": "2021-12-06T01:51:02.053+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f0dc6802-450f-459a-9dc6-209086375b7f" }'); INSERT INTO inventory_service_points_users VALUES ('ecdabc42-f229-4bd4-957c-5dae2adbd0ca', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'd3409c88-7e3f-497a-b94c-69e85e23b45c', '{ "id": "ecdabc42-f229-4bd4-957c-5dae2adbd0ca", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.978+00:00", "updatedDate": "2021-12-06T01:51:01.978+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "d3409c88-7e3f-497a-b94c-69e85e23b45c" }'); INSERT INTO inventory_service_points_users VALUES ('ee09ffef-1525-416e-8327-2c23463ed5dc', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'eaeffd06-57d3-488c-bd1b-c39d5c62e97d', '{ "id": "ee09ffef-1525-416e-8327-2c23463ed5dc", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.419+00:00", "updatedDate": "2021-12-06T01:51:01.419+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "eaeffd06-57d3-488c-bd1b-c39d5c62e97d" }'); INSERT INTO inventory_service_points_users VALUES ('ee842290-20b9-4409-aa5c-c200659e327c', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'be3113c3-0965-4bf4-97c2-40ff54501c2b', '{ "id": "ee842290-20b9-4409-aa5c-c200659e327c", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.472+00:00", "updatedDate": "2021-12-06T01:51:01.472+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "be3113c3-0965-4bf4-97c2-40ff54501c2b" }'); INSERT INTO inventory_service_points_users VALUES ('ef936907-1b20-471d-8daa-7f3654e9c5bb', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c6a1f097-1292-441c-a760-682279a7f94c', '{ "id": "ef936907-1b20-471d-8daa-7f3654e9c5bb", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.020+00:00", "updatedDate": "2021-12-06T01:51:02.020+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c6a1f097-1292-441c-a760-682279a7f94c" }'); INSERT INTO inventory_service_points_users VALUES ('efc37148-83c1-49b9-baad-b72c85f94253', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e', '{ "id": "efc37148-83c1-49b9-baad-b72c85f94253", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.565+00:00", "updatedDate": "2021-12-06T01:51:01.565+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e" }'); INSERT INTO inventory_service_points_users VALUES ('efccbf8f-5583-4677-b3cd-10a0e795caa7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e25750d8-9475-43d1-a6ff-ddb9bc941ea8', '{ "id": "efccbf8f-5583-4677-b3cd-10a0e795caa7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.677+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.677+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e25750d8-9475-43d1-a6ff-ddb9bc941ea8" }'); INSERT INTO inventory_service_points_users VALUES ('f0701eeb-819b-42a2-bd41-cf51f13c7af7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a', '{ "id": "f0701eeb-819b-42a2-bd41-cf51f13c7af7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.085+00:00", "updatedDate": "2021-12-06T01:51:02.085+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a" }'); INSERT INTO inventory_service_points_users VALUES ('f12a8237-5dca-47e4-abda-7f615077d782', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '65fcc41e-df15-459a-bf93-2f53cfa8ff7f', '{ "id": "f12a8237-5dca-47e4-abda-7f615077d782", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.004+00:00", "updatedDate": "2021-12-06T01:51:02.004+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "65fcc41e-df15-459a-bf93-2f53cfa8ff7f" }'); INSERT INTO inventory_service_points_users VALUES ('f14deca9-3f18-4521-9259-ce60217ba661', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9', '{ "id": "f14deca9-3f18-4521-9259-ce60217ba661", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.857+00:00", "updatedDate": "2021-12-06T01:51:01.857+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9" }'); INSERT INTO inventory_service_points_users VALUES ('f1620349-586f-45ed-94fd-72839d9d9431', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c', '{ "id": "f1620349-586f-45ed-94fd-72839d9d9431", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.700+00:00", "updatedDate": "2021-12-06T01:51:01.700+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c" }'); INSERT INTO inventory_service_points_users VALUES ('f1b4bc31-1781-4ffe-958a-9742cfd414a0', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'fbc2b501-a8cc-43a7-8d8c-b68067b63a33', '{ "id": "f1b4bc31-1781-4ffe-958a-9742cfd414a0", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.901+00:00", "updatedDate": "2021-12-06T01:51:01.901+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "fbc2b501-a8cc-43a7-8d8c-b68067b63a33" }'); INSERT INTO inventory_service_points_users VALUES ('f62f94a9-3bc4-493e-a361-e7f1f1d00a7d', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '04e1cda1-a049-463b-97af-98c59a8fd806', '{ "id": "f62f94a9-3bc4-493e-a361-e7f1f1d00a7d", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.515+00:00", "updatedDate": "2021-12-06T01:51:01.515+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "04e1cda1-a049-463b-97af-98c59a8fd806" }'); INSERT INTO inventory_service_points_users VALUES ('f7285da8-5b62-42d7-a1ad-790a6170c220', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'abad6503-a51b-4fec-a1cd-b5f672b1ff7b', '{ "id": "f7285da8-5b62-42d7-a1ad-790a6170c220", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.018+00:00", "updatedDate": "2021-12-06T01:51:02.018+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "abad6503-a51b-4fec-a1cd-b5f672b1ff7b" }'); INSERT INTO inventory_service_points_users VALUES ('f7f68c46-e9cf-4dd3-a578-eb46973339b8', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'dc6e1590-7021-433d-98a3-eda0f8d8fde1', '{ "id": "f7f68c46-e9cf-4dd3-a578-eb46973339b8", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.761+00:00", "updatedDate": "2021-12-06T01:51:01.761+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "dc6e1590-7021-433d-98a3-eda0f8d8fde1" }'); INSERT INTO inventory_service_points_users VALUES ('f8562e49-8676-44d4-9840-a4d79bca5985', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'dd176277-5c2d-4310-bf2f-e45e312b5026', '{ "id": "f8562e49-8676-44d4-9840-a4d79bca5985", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.574+00:00", "updatedDate": "2021-12-06T01:51:01.574+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "dd176277-5c2d-4310-bf2f-e45e312b5026" }'); INSERT INTO inventory_service_points_users VALUES ('f8d8a5c3-4980-479d-b9bd-bcbd8bb61a11', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1b648069-8563-41c8-afc0-d8359f11503c', '{ "id": "f8d8a5c3-4980-479d-b9bd-bcbd8bb61a11", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.733+00:00", "updatedDate": "2021-12-06T01:51:01.733+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1b648069-8563-41c8-afc0-d8359f11503c" }'); INSERT INTO inventory_service_points_users VALUES ('f9733204-b352-4d5c-84d1-9ea80ff349e2', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '260f1870-7dee-452d-a379-301f063febda', '{ "id": "f9733204-b352-4d5c-84d1-9ea80ff349e2", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.558+00:00", "updatedDate": "2021-12-06T01:51:01.558+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "260f1870-7dee-452d-a379-301f063febda" }'); INSERT INTO inventory_service_points_users VALUES ('fa232c92-468d-4661-969c-31612167ee21', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'c9255397-a8cb-4208-9558-1aae0e6f2c68', '{ "id": "fa232c92-468d-4661-969c-31612167ee21", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.874+00:00", "updatedDate": "2021-12-06T01:51:01.874+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "c9255397-a8cb-4208-9558-1aae0e6f2c68" }'); INSERT INTO inventory_service_points_users VALUES ('fb0ecef7-abee-4929-a6d5-6088bc5a7283', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'f1dc9a7e-492b-4f2b-848a-115b5919d589', '{ "id": "fb0ecef7-abee-4929-a6d5-6088bc5a7283", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.462+00:00", "updatedDate": "2021-12-06T01:51:01.462+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "f1dc9a7e-492b-4f2b-848a-115b5919d589" }'); INSERT INTO inventory_service_points_users VALUES ('fb23f0c8-50d1-41d4-b4df-67d87ce224e7', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'b617c5f2-78d4-4c7e-bf0c-d21392a8c39f', '{ "id": "fb23f0c8-50d1-41d4-b4df-67d87ce224e7", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.829+00:00", "updatedDate": "2021-12-06T01:51:01.829+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "b617c5f2-78d4-4c7e-bf0c-d21392a8c39f" }'); INSERT INTO inventory_service_points_users VALUES ('fc76006b-abc6-468a-ae56-61be03995f02', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'bb3b3060-cc9e-4586-ba76-a16c6f757648', '{ "id": "fc76006b-abc6-468a-ae56-61be03995f02", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.941+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.941+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "bb3b3060-cc9e-4586-ba76-a16c6f757648" }'); INSERT INTO inventory_service_points_users VALUES ('fcfed944-25cf-4587-8c9d-5c8f2bfb325a', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '4adf499e-c954-4bf9-9261-26720608e120', '{ "id": "fcfed944-25cf-4587-8c9d-5c8f2bfb325a", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.675+00:00", "updatedDate": "2021-12-06T01:51:01.675+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "4adf499e-c954-4bf9-9261-26720608e120" }'); INSERT INTO inventory_service_points_users VALUES ('fde2dca6-cf6f-40ff-afc0-4da747a7b203', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8', '{ "id": "fde2dca6-cf6f-40ff-afc0-4da747a7b203", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.748+00:00", "updatedDate": "2021-12-06T01:51:01.748+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8" }'); INSERT INTO inventory_service_points_users VALUES ('feb2041d-f9ad-4c52-a0e1-01c87ce70143', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '87c329f1-2220-4a8a-b750-ded39bbe9769', '{ "id": "feb2041d-f9ad-4c52-a0e1-01c87ce70143", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:02.043+00:00", "updatedDate": "2021-12-06T01:51:02.043+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "87c329f1-2220-4a8a-b750-ded39bbe9769" }'); INSERT INTO inventory_service_points_users VALUES ('ff0195b0-4c06-4c0a-becf-f8d4862179b5', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', 'aace299f-7a74-4118-9cf3-599110dce278', '{ "id": "ff0195b0-4c06-4c0a-becf-f8d4862179b5", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.568+00:00", "updatedDate": "2021-12-06T01:51:01.568+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "aace299f-7a74-4118-9cf3-599110dce278" }'); INSERT INTO inventory_service_points_users VALUES ('ff602056-46a6-4f50-9101-983b76876cea', '7c5abc9f-f3d7-4856-b8d7-6712462ca007', '259d55dc-015d-420a-b13d-8706018305b1', '{ "id": "ff602056-46a6-4f50-9101-983b76876cea", "defaultServicePointId": "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "metadata": { "createdDate": "2021-12-06T01:51:01.328+00:00", "updatedDate": "2021-12-06T01:51:01.328+00:00" }, "servicePointsIds": [ "7c5abc9f-f3d7-4856-b8d7-6712462ca007", "c4c90014-c8c9-4ade-8f24-b5e313319f4b", "3a40852d-49fd-4df2-a1f9-6e2641a6e91f" ], "userId": "259d55dc-015d-420a-b13d-8706018305b1" }'); -- -- TOC entry 4253 (class 0 OID 88215896) -- Dependencies: 498 -- Data for Name: inventory_statistical_code_types; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_statistical_code_types VALUES ('0d3ec58e-dc3c-4aa1-9eba-180fca95c544', 'RECM (Record management)', 'folio', '{ "id": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544", "metadata": { "createdDate": "2021-12-06T01:50:58.731+00:00", "updatedDate": "2021-12-06T01:50:58.731+00:00" }, "name": "RECM (Record management)", "source": "folio" }'); INSERT INTO inventory_statistical_code_types VALUES ('3abd6fc2-b3e4-4879-b1e1-78be41769fe3', 'ARL (Collection stats)', 'folio', '{ "id": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3", "metadata": { "createdDate": "2021-12-06T01:50:58.740+00:00", "updatedDate": "2021-12-06T01:50:58.740+00:00" }, "name": "ARL (Collection stats)", "source": "folio" }'); INSERT INTO inventory_statistical_code_types VALUES ('d816175b-578f-4056-af61-689f449c3c45', 'DISC (Discovery)', 'folio', '{ "id": "d816175b-578f-4056-af61-689f449c3c45", "metadata": { "createdDate": "2021-12-06T01:50:58.736+00:00", "updatedDate": "2021-12-06T01:50:58.736+00:00" }, "name": "DISC (Discovery)", "source": "folio" }'); INSERT INTO inventory_statistical_code_types VALUES ('e2ab27f9-a726-4e5e-9963-fff9e6128680', 'SERM (Serial management)', 'folio', '{ "id": "e2ab27f9-a726-4e5e-9963-fff9e6128680", "metadata": { "createdDate": "2021-12-06T01:50:58.744+00:00", "updatedDate": "2021-12-06T01:50:58.744+00:00" }, "name": "SERM (Serial management)", "source": "folio" }'); -- -- TOC entry 4254 (class 0 OID 88215912) -- Dependencies: 499 -- Data for Name: inventory_statistical_codes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO inventory_statistical_codes VALUES ('0868921a-4407-47c9-9b3e-db94644dbae7', 'ENF', 'Entry not found', 'UC', 'e2ab27f9-a726-4e5e-9963-fff9e6128680', '{ "id": "0868921a-4407-47c9-9b3e-db94644dbae7", "code": "ENF", "metadata": { "createdDate": "2021-12-06T01:50:58.755+00:00", "updatedDate": "2021-12-06T01:50:58.755+00:00" }, "name": "Entry not found", "source": "UC", "statisticalCodeTypeId": "e2ab27f9-a726-4e5e-9963-fff9e6128680" }'); INSERT INTO inventory_statistical_codes VALUES ('0e516e54-bf36-4fc2-a0f7-3fe89a61c9c0', 'ISER', 'Inactive serial', 'UC', 'e2ab27f9-a726-4e5e-9963-fff9e6128680', '{ "id": "0e516e54-bf36-4fc2-a0f7-3fe89a61c9c0", "code": "ISER", "metadata": { "createdDate": "2021-12-06T01:50:58.822+00:00", "updatedDate": "2021-12-06T01:50:58.822+00:00" }, "name": "Inactive serial", "source": "UC", "statisticalCodeTypeId": "e2ab27f9-a726-4e5e-9963-fff9e6128680" }'); INSERT INTO inventory_statistical_codes VALUES ('16f2d65e-eb68-4ab1-93e3-03af50cb7370', 'mfiche', 'Microfiche (mfiche)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "16f2d65e-eb68-4ab1-93e3-03af50cb7370", "code": "mfiche", "metadata": { "createdDate": "2021-12-06T01:50:58.833+00:00", "updatedDate": "2021-12-06T01:50:58.833+00:00" }, "name": "Microfiche (mfiche)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('1c622d0f-2e91-4c30-ba43-2750f9735f51', 'mfilm', 'Microfilm (mfilm)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "1c622d0f-2e91-4c30-ba43-2750f9735f51", "code": "mfilm", "metadata": { "createdDate": "2021-12-06T01:50:58.810+00:00", "updatedDate": "2021-12-06T01:50:58.810+00:00" }, "name": "Microfilm (mfilm)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('264c4f94-1538-43a3-8b40-bed68384b31b', 'XOCLC', 'Do not share with OCLC', 'folio', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "264c4f94-1538-43a3-8b40-bed68384b31b", "code": "XOCLC", "metadata": { "createdDate": "2021-12-06T01:50:58.765+00:00", "updatedDate": "2021-12-06T01:50:58.765+00:00" }, "name": "Do not share with OCLC", "source": "folio", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('2850630b-cd12-4379-af57-5c51491a6873', 'mmedia', 'Mixed media (mmedia)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "2850630b-cd12-4379-af57-5c51491a6873", "code": "mmedia", "metadata": { "createdDate": "2021-12-06T01:50:58.837+00:00", "updatedDate": "2021-12-06T01:50:58.837+00:00" }, "name": "Mixed media (mmedia)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('30b5400d-0b9e-4757-a3d0-db0d30a49e72', 'music', 'Music scores, print (music)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "30b5400d-0b9e-4757-a3d0-db0d30a49e72", "code": "music", "metadata": { "createdDate": "2021-12-06T01:50:58.817+00:00", "updatedDate": "2021-12-06T01:50:58.817+00:00" }, "name": "Music scores, print (music)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('38249f9e-13f8-48bc-a010-8023cd194af5', 'its', 'Information Technology Services (its)', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "38249f9e-13f8-48bc-a010-8023cd194af5", "code": "its", "metadata": { "createdDate": "2021-12-06T01:50:58.786+00:00", "updatedDate": "2021-12-06T01:50:58.786+00:00" }, "name": "Information Technology Services (its)", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('6899291a-1fb9-4130-98ce-b40368556818', 'rmusic', 'Music sound recordings', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "6899291a-1fb9-4130-98ce-b40368556818", "code": "rmusic", "metadata": { "createdDate": "2021-12-06T01:50:58.773+00:00", "updatedDate": "2021-12-06T01:50:58.773+00:00" }, "name": "Music sound recordings", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('6d584d0e-3dbc-46c4-a1bd-e9238dd9a6be', 'vidstream', 'Streaming video (vidstream)', 'folio', 'd816175b-578f-4056-af61-689f449c3c45', '{ "id": "6d584d0e-3dbc-46c4-a1bd-e9238dd9a6be", "code": "vidstream", "metadata": { "createdDate": "2021-12-06T01:50:58.790+00:00", "updatedDate": "2021-12-06T01:50:58.790+00:00" }, "name": "Streaming video (vidstream)", "source": "folio", "statisticalCodeTypeId": "d816175b-578f-4056-af61-689f449c3c45" }'); INSERT INTO inventory_statistical_codes VALUES ('775b6ad4-9c35-4d29-bf78-8775a9b42226', 'serials', 'Serials, print (serials)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "775b6ad4-9c35-4d29-bf78-8775a9b42226", "code": "serials", "metadata": { "createdDate": "2021-12-06T01:50:58.870+00:00", "updatedDate": "2021-12-06T01:50:58.870+00:00" }, "name": "Serials, print (serials)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('91b8f0b4-0e13-4270-9fd6-e39203d0f449', 'rnonmusic', 'Non-music sound recordings (rnonmusic)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "91b8f0b4-0e13-4270-9fd6-e39203d0f449", "code": "rnonmusic", "metadata": { "createdDate": "2021-12-06T01:50:58.806+00:00", "updatedDate": "2021-12-06T01:50:58.806+00:00" }, "name": "Non-music sound recordings (rnonmusic)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('950d3370-9a3c-421e-b116-76e7511af9e9', 'polsky', 'Polsky TECHB@R (polsky)', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "950d3370-9a3c-421e-b116-76e7511af9e9", "code": "polsky", "metadata": { "createdDate": "2021-12-06T01:50:58.858+00:00", "updatedDate": "2021-12-06T01:50:58.858+00:00" }, "name": "Polsky TECHB@R (polsky)", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('972f81d5-9f8f-4b56-a10e-5c05419718e6', 'visual', 'Visual materials, DVDs, etc. (visual)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "972f81d5-9f8f-4b56-a10e-5c05419718e6", "code": "visual", "metadata": { "createdDate": "2021-12-06T01:50:58.854+00:00", "updatedDate": "2021-12-06T01:50:58.854+00:00" }, "name": "Visual materials, DVDs, etc. (visual)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('97e91f57-fad7-41ea-a660-4031bf8d4ea8', 'maps', 'Maps, print (maps)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "97e91f57-fad7-41ea-a660-4031bf8d4ea8", "code": "maps", "metadata": { "createdDate": "2021-12-06T01:50:58.761+00:00", "updatedDate": "2021-12-06T01:50:58.761+00:00" }, "name": "Maps, print (maps)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('9d8abbe2-1a94-4866-8731-4d12ac09f7a8', 'ebooks', 'Books, electronic (ebooks)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "9d8abbe2-1a94-4866-8731-4d12ac09f7a8", "code": "ebooks", "metadata": { "createdDate": "2021-12-06T01:50:58.794+00:00", "updatedDate": "2021-12-06T01:50:58.794+00:00" }, "name": "Books, electronic (ebooks)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('a5ccf92e-7b1f-4990-ac03-780a6a767f37', 'eserials', 'Serials, electronic (eserials)', 'UC', 'd816175b-578f-4056-af61-689f449c3c45', '{ "id": "a5ccf92e-7b1f-4990-ac03-780a6a767f37", "code": "eserials", "metadata": { "createdDate": "2021-12-06T01:50:58.845+00:00", "updatedDate": "2021-12-06T01:50:58.845+00:00" }, "name": "Serials, electronic (eserials)", "source": "UC", "statisticalCodeTypeId": "d816175b-578f-4056-af61-689f449c3c45" }'); INSERT INTO inventory_statistical_codes VALUES ('b2c0e100-0485-43f2-b161-3c60aac9f68a', 'evisual', 'Visual, static, electronic', 'UC', 'd816175b-578f-4056-af61-689f449c3c45', '{ "id": "b2c0e100-0485-43f2-b161-3c60aac9f68a", "code": "evisual", "metadata": { "createdDate": "2021-12-06T01:50:58.830+00:00", "updatedDate": "2021-12-06T01:50:58.830+00:00" }, "name": "Visual, static, electronic", "source": "UC", "statisticalCodeTypeId": "d816175b-578f-4056-af61-689f449c3c45" }'); INSERT INTO inventory_statistical_codes VALUES ('b5968c9e-cddc-4576-99e3-8e60aed8b0dd', 'books', 'Book, print (books)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "b5968c9e-cddc-4576-99e3-8e60aed8b0dd", "code": "books", "metadata": { "createdDate": "2021-12-06T01:50:58.865+00:00", "updatedDate": "2021-12-06T01:50:58.865+00:00" }, "name": "Book, print (books)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('b6b46869-f3c1-4370-b603-29774a1e42b1', 'arch', 'Archives (arch)', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "b6b46869-f3c1-4370-b603-29774a1e42b1", "code": "arch", "metadata": { "createdDate": "2021-12-06T01:50:58.781+00:00", "updatedDate": "2021-12-06T01:50:58.781+00:00" }, "name": "Archives (arch)", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('b76a3088-8de6-46c8-a130-c8e74b8d2c5b', 'emaps', 'Maps, electronic (emaps)', 'UC', 'd816175b-578f-4056-af61-689f449c3c45', '{ "id": "b76a3088-8de6-46c8-a130-c8e74b8d2c5b", "code": "emaps", "metadata": { "createdDate": "2021-12-06T01:50:58.826+00:00", "updatedDate": "2021-12-06T01:50:58.826+00:00" }, "name": "Maps, electronic (emaps)", "source": "UC", "statisticalCodeTypeId": "d816175b-578f-4056-af61-689f449c3c45" }'); INSERT INTO inventory_statistical_codes VALUES ('bb76b1c1-c9df-445c-8deb-68bb3580edc2', 'compfiles', 'Computer files, CDs, etc (compfiles)', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "bb76b1c1-c9df-445c-8deb-68bb3580edc2", "code": "compfiles", "metadata": { "createdDate": "2021-12-06T01:50:58.798+00:00", "updatedDate": "2021-12-06T01:50:58.798+00:00" }, "name": "Computer files, CDs, etc (compfiles)", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('c4073462-6144-4b69-a543-dd131e241799', 'withdrawn', 'Withdrawn (withdrawn)', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "c4073462-6144-4b69-a543-dd131e241799", "code": "withdrawn", "metadata": { "createdDate": "2021-12-06T01:50:58.777+00:00", "updatedDate": "2021-12-06T01:50:58.777+00:00" }, "name": "Withdrawn (withdrawn)", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('c7a32c50-ea7c-43b7-87ab-d134c8371330', 'ASER', 'Active serial', 'UC', 'e2ab27f9-a726-4e5e-9963-fff9e6128680', '{ "id": "c7a32c50-ea7c-43b7-87ab-d134c8371330", "code": "ASER", "metadata": { "createdDate": "2021-12-06T01:50:58.841+00:00", "updatedDate": "2021-12-06T01:50:58.841+00:00" }, "name": "Active serial", "source": "UC", "statisticalCodeTypeId": "e2ab27f9-a726-4e5e-9963-fff9e6128680" }'); INSERT INTO inventory_statistical_codes VALUES ('d82c025e-436d-4006-a677-bd2b4cdb7692', 'mss', 'Manuscripts (mss)', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "d82c025e-436d-4006-a677-bd2b4cdb7692", "code": "mss", "metadata": { "createdDate": "2021-12-06T01:50:58.862+00:00", "updatedDate": "2021-12-06T01:50:58.862+00:00" }, "name": "Manuscripts (mss)", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); INSERT INTO inventory_statistical_codes VALUES ('e10796e0-a594-47b7-b748-3a81b69b3d9b', 'audstream', 'Streaming audio (audstream)', 'UC', 'd816175b-578f-4056-af61-689f449c3c45', '{ "id": "e10796e0-a594-47b7-b748-3a81b69b3d9b", "code": "audstream", "metadata": { "createdDate": "2021-12-06T01:50:58.850+00:00", "updatedDate": "2021-12-06T01:50:58.850+00:00" }, "name": "Streaming audio (audstream)", "source": "UC", "statisticalCodeTypeId": "d816175b-578f-4056-af61-689f449c3c45" }'); INSERT INTO inventory_statistical_codes VALUES ('ecab577d-a050-4ea2-8a86-ea5a234283ea', 'emusic', 'Music scores, electronic', 'UC', '3abd6fc2-b3e4-4879-b1e1-78be41769fe3', '{ "id": "ecab577d-a050-4ea2-8a86-ea5a234283ea", "code": "emusic", "metadata": { "createdDate": "2021-12-06T01:50:58.814+00:00", "updatedDate": "2021-12-06T01:50:58.814+00:00" }, "name": "Music scores, electronic", "source": "UC", "statisticalCodeTypeId": "3abd6fc2-b3e4-4879-b1e1-78be41769fe3" }'); INSERT INTO inventory_statistical_codes VALUES ('f47b773a-bd5f-4246-ac1e-fa4adcd0dcdf', 'UCPress', 'University of Chicago Press Imprint', 'UC', '0d3ec58e-dc3c-4aa1-9eba-180fca95c544', '{ "id": "f47b773a-bd5f-4246-ac1e-fa4adcd0dcdf", "code": "UCPress", "metadata": { "createdDate": "2021-12-06T01:50:58.769+00:00", "updatedDate": "2021-12-06T01:50:58.769+00:00" }, "name": "University of Chicago Press Imprint", "source": "UC", "statisticalCodeTypeId": "0d3ec58e-dc3c-4aa1-9eba-180fca95c544" }'); -- -- TOC entry 4255 (class 0 OID 88215931) -- Dependencies: 500 -- Data for Name: invoice_invoices; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4256 (class 0 OID 88215946) -- Dependencies: 501 -- Data for Name: invoice_lines; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4267 (class 0 OID 88216145) -- Dependencies: 512 -- Data for Name: organization_categories; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO organization_categories VALUES ('28f1af24-e88f-45c9-8b65-8091afe4e799', 'Returns', '{ "id": "28f1af24-e88f-45c9-8b65-8091afe4e799", "metadata": { "createdDate": "2021-12-06T01:51:38.600+00:00", "updatedDate": "2021-12-06T01:51:38.600+00:00" }, "value": "Returns" }'); INSERT INTO organization_categories VALUES ('ab760714-4185-4859-b0dd-3e72f01c5c52', 'Payments', '{ "id": "ab760714-4185-4859-b0dd-3e72f01c5c52", "metadata": { "createdDate": "2021-12-06T01:51:38.594+00:00", "updatedDate": "2021-12-06T01:51:38.594+00:00" }, "value": "Payments" }'); INSERT INTO organization_categories VALUES ('cbfaec07-5df1-4197-bfa5-1bc91f9073cf', 'Shipments', '{ "id": "cbfaec07-5df1-4197-bfa5-1bc91f9073cf", "metadata": { "createdDate": "2021-12-06T01:51:38.578+00:00", "updatedDate": "2021-12-06T01:51:38.578+00:00" }, "value": "Shipments" }'); INSERT INTO organization_categories VALUES ('f52ceea4-8e35-404b-9ebd-5c7db6613195', 'Customer Service', '{ "id": "f52ceea4-8e35-404b-9ebd-5c7db6613195", "metadata": { "createdDate": "2021-12-06T01:51:38.587+00:00", "updatedDate": "2021-12-06T01:51:38.587+00:00" }, "value": "Customer Service" }'); -- -- TOC entry 4268 (class 0 OID 88216160) -- Dependencies: 513 -- Data for Name: organization_contacts; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO organization_contacts VALUES ('11fb627a-cdf1-11e8-a8d5-f2801f1b9fd1', 'David', false, 'English', 'Grohl', '', 'Mr.', '{ "id": "11fb627a-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "3212 Duke Street", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "city": "Alexandria", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "VA", "zipCode": "22314" } ], "categories": [ "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main customer service email", "isPrimary": true, "language": "English", "value": "customerservice@alexanderstreet.com" } ], "firstName": "David", "inactive": false, "language": "English", "lastName": "Grohl", "metadata": { "createdDate": "2021-12-06T01:51:38.366+00:00", "updatedDate": "2021-12-06T01:51:38.366+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-800-889-5937" } ], "prefix": "Mr.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://alexanderstreet.com/" } ] }'); INSERT INTO organization_contacts VALUES ('12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1', 'John-Joe', false, 'English', 'Taylor', '', 'Mr.', '{ "id": "12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "Suite 300, 6000 Broken Sound Parkway, NW", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "city": "Boca Raton", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "FL", "zipCode": "33487" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Servicel", "isPrimary": true, "language": "English", "value": "enquiries@taylorandfrancis.com" } ], "firstName": "John-Joe", "inactive": false, "language": "English", "lastName": "Taylor", "metadata": { "createdDate": "2021-12-06T01:51:38.356+00:00", "updatedDate": "2021-12-06T01:51:38.356+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-800-634-7064" } ], "prefix": "Mr.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://taylorandfrancis.com/" } ] }'); INSERT INTO organization_contacts VALUES ('13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1', 'Ryan', false, 'English', 'Zinke', '', 'Mr.', '{ "id": "13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "12201 Sunrise Valley Drive", "addressLine2": "P.O. Box 15550", "categories": [ "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Reston", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "VA", "zipCode": "20192" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main customer service email", "isPrimary": true, "language": "English", "value": "usgsstore@usgs.gov" } ], "firstName": "Ryan", "inactive": false, "language": "English", "lastName": "Zinke", "metadata": { "createdDate": "2021-12-06T01:51:38.301+00:00", "updatedDate": "2021-12-06T01:51:38.301+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-888-ASK-USGS" } ], "prefix": "Mr.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.usgs.gov/" } ] }'); INSERT INTO organization_contacts VALUES ('14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1', 'Dana', false, 'English', 'Clark', '', '', '{ "id": "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "80 LIBERTY SHIP WAY7", "addressLine2": "SUITE 5", "categories": [ "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "SAUSALITO", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "CA", "zipCode": "94965" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "initial contact address", "isPrimary": true, "language": "English", "value": "info@rocofilms.com" } ], "firstName": "Dana", "inactive": false, "language": "English", "lastName": "Clark", "metadata": { "createdDate": "2021-12-06T01:51:38.385+00:00", "updatedDate": "2021-12-06T01:51:38.385+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-415-332-6471" } ], "prefix": "", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "English", "notes": "", "value": "http://www.rocofilms.com/" } ] }'); INSERT INTO organization_contacts VALUES ('15fb695a-cdf1-11e8-a8d5-f2801f1b9fd1', 'Susan', false, 'English', 'Bach', '', '', '{ "id": "15fb695a-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "RUA VISCONDE DE CARAVELAS, Nº 17", "addressLine2": "BOTAFOGO", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "RIO DE JANEIRO", "country": "Brazil", "isPrimary": true, "language": "Portuguese", "stateRegion": "", "zipCode": "22271-021" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "sbach@sbachbooks.com.br" } ], "firstName": "Susan", "inactive": false, "language": "English", "lastName": "Bach", "metadata": { "createdDate": "2021-12-06T01:51:38.402+00:00", "updatedDate": "2021-12-06T01:51:38.402+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "isPrimary": true, "language": "Portuguese", "phoneNumber": "55-55-21-2539-3590" } ], "prefix": "", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "English/Portuguese", "notes": "", "value": "http://www.sbachbooks.com.br/" } ] }'); INSERT INTO organization_contacts VALUES ('50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1', 'Josh', false, 'en-us', 'Beck', '', '', '{ "id": "50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "10 ESTES ST", "addressLine2": "PO BOX 682", "categories": [ "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Ipswich", "country": "USA", "isPrimary": true, "language": "en", "stateRegion": "MA", "zipCode": "01938" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service Rep", "isPrimary": true, "language": "en-us", "value": "jbeck@ebsco.com" } ], "firstName": "Josh", "inactive": false, "language": "en-us", "lastName": "Beck", "metadata": { "createdDate": "2021-12-06T01:51:38.413+00:00", "updatedDate": "2021-12-06T01:51:38.413+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "en-us", "phoneNumber": "1-800-653-2726" } ], "prefix": "", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://www.ebsco.com" } ] }'); INSERT INTO organization_contacts VALUES ('60fb4bfa-cdf1-11e8-a8d5-f2801f1b9fd1', 'Jean', false, 'English', 'Simmons', '', 'Sister', '{ "id": "60fb4bfa-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "1032 W. Sheridan Rd", "addressLine2": "", "categories": [ "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "city": "Chicago", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "IL", "zipCode": "60660" } ], "categories": [ "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "emails": [ { "categories": [ "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "description": "personal email ", "isPrimary": true, "language": "English", "value": "sister@luc.edu" } ], "firstName": "Jean", "inactive": false, "language": "English", "lastName": "Simmons", "metadata": { "createdDate": "2021-12-06T01:51:38.344+00:00", "updatedDate": "2021-12-06T01:51:38.344+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "isPrimary": true, "language": "English", "phoneNumber": "1-773-274-3000" } ], "prefix": "Sister", "urls": [ { "categories": [ "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "description": "Loyola''s University Chicago main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://luc.edu/" } ] }'); INSERT INTO organization_contacts VALUES ('70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1', 'Marie', false, 'English', 'Curie', '', 'Prof.', '{ "id": "70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "416 Mary Lindsay Polk Dr.", "addressLine2": "", "categories": [ "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "city": "Franklin", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "TN", "zipCode": "37067" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "service@naxosusa.com" } ], "firstName": "Marie", "inactive": false, "language": "English", "lastName": "Curie", "metadata": { "createdDate": "2021-12-06T01:51:38.316+00:00", "updatedDate": "2021-12-06T01:51:38.316+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-615-771-9393" } ], "prefix": "Prof.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.naxos.com/" } ] }'); INSERT INTO organization_contacts VALUES ('80fb5168-cdf1-11e8-a8d5-f2801f1b9fd1', 'John', false, 'English', 'Denver', 'Postal code = 80303', 'Dr.', '{ "id": "80fb5168-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "1155 Sixteenth Street, NW", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "city": "Washington", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "DC", "zipCode": "20036" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "service@acs.org" } ], "firstName": "John", "inactive": false, "language": "English", "lastName": "Denver", "metadata": { "createdDate": "2021-12-06T01:51:38.393+00:00", "updatedDate": "2021-12-06T01:51:38.393+00:00" }, "notes": "Postal code = 80303", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-800-333-9511" } ], "prefix": "Dr.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main English language website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.acs.org/content/acs/en.html" } ] }'); INSERT INTO organization_contacts VALUES ('c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1', 'Gabriele', false, 'German and English', 'Kerner', '', 'Frau', '{ "id": "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "Kreuzberger Ring 6 b-d", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Wiesbaden", "country": "Germany", "isPrimary": true, "language": "German", "stateRegion": "", "zipCode": "65205" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "customer service", "isPrimary": true, "language": "German and English", "value": "service@harrassowitz.de" } ], "firstName": "Gabriele", "inactive": false, "language": "German and English", "lastName": "Kerner", "metadata": { "createdDate": "2021-12-06T01:51:38.335+00:00", "updatedDate": "2021-12-06T01:51:38.335+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "isPrimary": true, "language": "German", "phoneNumber": "49-611-530 ext. 0" } ], "prefix": "Frau", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.harrassowitz.de/" } ] }'); INSERT INTO organization_contacts VALUES ('d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1', 'Sarah', false, 'en-us', 'Silverman', '', '', '{ "id": "d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "999 Maple Street", "addressLine2": "2", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Contoocook", "country": "USA", "isPrimary": true, "language": "en", "stateRegion": "NH", "zipCode": "03229" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "for general questions", "isPrimary": true, "language": "en-us", "value": "gobiserviceissue@ebsco.com" } ], "firstName": "Sarah", "inactive": false, "language": "en-us", "lastName": "Silverman", "metadata": { "createdDate": "2021-12-06T01:51:38.325+00:00", "updatedDate": "2021-12-06T01:51:38.325+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "en-us", "phoneNumber": "1-800-258-3774" } ], "prefix": "", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://gobi.ebsco.com/" } ] }'); INSERT INTO organization_contacts VALUES ('e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1', 'Carrie', false, 'English', 'Brownstein', '', 'Ms.', '{ "id": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "1 Centerpiece Blvd.", "addressLine2": "P.O. Box 15550", "categories": [ "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "New Castle", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "DE", "zipCode": "19720-5550" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf", "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "emails": [ { "categories": [ "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "description": "customer service", "isPrimary": true, "language": "English", "value": "cust.service03@amazon.com" } ], "firstName": "Carrie", "inactive": false, "language": "English", "lastName": "Brownstein", "metadata": { "createdDate": "2021-12-06T01:51:38.421+00:00", "updatedDate": "2021-12-06T01:51:38.421+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52" ], "isPrimary": true, "language": "English", "phoneNumber": "1-888-238-22090" } ], "prefix": "Ms.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.amazon.com" } ] }'); INSERT INTO organization_contacts VALUES ('f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1', 'Siouxsie', false, 'English', 'Sioux ', '', 'Mrs.', '{ "id": "f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1", "addresses": [ { "addressLine1": "Saint Lukes", "addressLine2": "P.O. Box 41383", "categories": [ "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Auckland", "country": "New Zealand", "isPrimary": true, "language": "English", "stateRegion": "", "zipCode": "1346" } ], "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "28f1af24-e88f-45c9-8b65-8091afe4e799", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "magnolia@mapress.com" } ], "firstName": "Siouxsie", "inactive": false, "language": "English", "lastName": "Sioux ", "metadata": { "createdDate": "2021-12-06T01:51:38.375+00:00", "updatedDate": "2021-12-06T01:51:38.375+00:00" }, "notes": "", "phoneNumbers": [ { "categories": [ "28f1af24-e88f-45c9-8b65-8091afe4e799" ], "isPrimary": true, "language": "English", "phoneNumber": "64-95-783-996" } ], "prefix": "Mrs.", "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://www.mapress.com/j/" } ] }'); -- -- TOC entry 4270 (class 0 OID 88216194) -- Dependencies: 515 -- Data for Name: organization_interfaces; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO organization_interfaces VALUES ('00b1c903-38f2-45c7-a427-30a141cf643a', true, 'Email', 'false', 'OttoEditions', 'all staff have different logons with different permissions', 'https://www.harrassowitz.de/', 'HTML', NULL, 'https://www.harrassowitz.de/OttoEditions/servlet/OttoEdition?sc=sc_email&BTSubmit=searche&CBSpeedOrder=true&CBTitleId=0&TFTitleId=115003369&ID=009164240', '{ "id": "00b1c903-38f2-45c7-a427-30a141cf643a", "available": true, "deliveryMethod": "Email", "locallyStored": "false", "metadata": { "createdDate": "2021-12-06T01:51:38.482+00:00", "updatedDate": "2021-12-06T01:51:38.482+00:00" }, "name": "OttoEditions", "notes": "all staff have different logons with different permissions", "onlineLocation": "https://www.harrassowitz.de/", "statisticsFormat": "HTML", "type": [ "Reports", "Orders", "Invoices" ], "uri": "https://www.harrassowitz.de/OttoEditions/servlet/OttoEdition?sc=sc_email&BTSubmit=searche&CBSpeedOrder=true&CBTitleId=0&TFTitleId=115003369&ID=009164240" }'); INSERT INTO organization_interfaces VALUES ('14e81009-0f98-45a0-b8e6-e25547beb22f', false, NULL, NULL, 'Academic Video Online', NULL, NULL, NULL, NULL, 'https://search.alexanderstreet.com/avon', '{ "id": "14e81009-0f98-45a0-b8e6-e25547beb22f", "available": false, "metadata": { "createdDate": "2021-12-06T01:51:38.458+00:00", "updatedDate": "2021-12-06T01:51:38.458+00:00" }, "name": "Academic Video Online", "type": [], "uri": "https://search.alexanderstreet.com/avon" }'); INSERT INTO organization_interfaces VALUES ('60b952a6-5570-44f3-9972-f00c9dcb098e', true, 'Online', 'https://www.lib.sample.edu/staff/collectiondevelopment/', 'American Chemical Society Web Editions', NULL, 'http://www.acs.org/content/acs/en.html', 'COUNTER', NULL, 'https://pubs.acs.org/', '{ "id": "60b952a6-5570-44f3-9972-f00c9dcb098e", "available": true, "deliveryMethod": "Online", "locallyStored": "https://www.lib.sample.edu/staff/collectiondevelopment/", "metadata": { "createdDate": "2021-12-06T01:51:38.529+00:00", "updatedDate": "2021-12-06T01:51:38.529+00:00" }, "name": "American Chemical Society Web Editions", "onlineLocation": "http://www.acs.org/content/acs/en.html", "statisticsFormat": "COUNTER", "type": [ "End user", "Invoices" ], "uri": "https://pubs.acs.org/" }'); INSERT INTO organization_interfaces VALUES ('6c862414-a87c-4c19-b4dc-c9c2b68f296c', false, NULL, NULL, 'Mapress', NULL, NULL, NULL, NULL, 'http://www.mapress.com/j/', '{ "id": "6c862414-a87c-4c19-b4dc-c9c2b68f296c", "available": false, "metadata": { "createdDate": "2021-12-06T01:51:38.523+00:00", "updatedDate": "2021-12-06T01:51:38.523+00:00" }, "name": "Mapress", "type": [], "uri": "http://www.mapress.com/j/" }'); INSERT INTO organization_interfaces VALUES ('766e42dc-386b-4710-897d-2ad226fa3679', false, NULL, NULL, 'USGS Store', NULL, NULL, NULL, NULL, 'https://store.usgs.gov/', '{ "id": "766e42dc-386b-4710-897d-2ad226fa3679", "available": false, "metadata": { "createdDate": "2021-12-06T01:51:38.489+00:00", "updatedDate": "2021-12-06T01:51:38.489+00:00" }, "name": "USGS Store", "type": [], "uri": "https://store.usgs.gov/" }'); INSERT INTO organization_interfaces VALUES ('793b9d42-ae12-41d7-a36a-f33e5b9e82c5', false, 'Other', 'false', 'GOBI', 'all staff have different logons with different permissions', NULL, NULL, 'get stats on demand from GOBI, or contact customers service', 'www.gobi3.com', '{ "id": "793b9d42-ae12-41d7-a36a-f33e5b9e82c5", "available": false, "deliveryMethod": "Other", "locallyStored": "false", "metadata": { "createdDate": "2021-12-06T01:51:38.468+00:00", "updatedDate": "2021-12-06T01:51:38.468+00:00" }, "name": "GOBI", "notes": "all staff have different logons with different permissions", "statisticsNotes": "get stats on demand from GOBI, or contact customers service", "type": [ "Other" ], "uri": "www.gobi3.com" }'); INSERT INTO organization_interfaces VALUES ('92289a36-5d83-4794-9f45-97eda8938064', true, 'Online', 'https://www.lib.sample.edu/staff/collectiondevelopment/', 'Taylor & Francis Online', NULL, 'https://accounts.taylorfrancis.com/identity/#/login', 'COUNTER', NULL, 'https://www.tandfonline.com', '{ "id": "92289a36-5d83-4794-9f45-97eda8938064", "available": true, "deliveryMethod": "Online", "locallyStored": "https://www.lib.sample.edu/staff/collectiondevelopment/", "metadata": { "createdDate": "2021-12-06T01:51:38.516+00:00", "updatedDate": "2021-12-06T01:51:38.516+00:00" }, "name": "Taylor & Francis Online", "onlineLocation": "https://accounts.taylorfrancis.com/identity/#/login", "statisticsFormat": "COUNTER", "type": [], "uri": "https://www.tandfonline.com" }'); INSERT INTO organization_interfaces VALUES ('cd592659-77aa-4eb3-ac34-c9a4657bb20f', false, NULL, NULL, 'Amazon', NULL, NULL, NULL, NULL, 'www.amazon.com', '{ "id": "cd592659-77aa-4eb3-ac34-c9a4657bb20f", "available": false, "metadata": { "createdDate": "2021-12-06T01:51:38.537+00:00", "updatedDate": "2021-12-06T01:51:38.537+00:00" }, "name": "Amazon", "type": [ "Orders" ], "uri": "www.amazon.com" }'); INSERT INTO organization_interfaces VALUES ('cd5926fa-77aa-4eb3-ac34-c9a1747ba21a', NULL, NULL, NULL, 'Libris', 'End user interface', NULL, NULL, NULL, 'http://www.kb.se/bibliotek/centrala-avtal/', '{ "id": "cd5926fa-77aa-4eb3-ac34-c9a1747ba21a", "metadata": { "createdDate": "2021-12-06T01:51:38.544+00:00", "updatedDate": "2021-12-06T01:51:38.544+00:00" }, "name": "Libris", "notes": "End user interface", "type": [ "End user" ], "uri": "http://www.kb.se/bibliotek/centrala-avtal/" }'); INSERT INTO organization_interfaces VALUES ('cd5926fa-77aa-4eb3-ac34-c9a1747ba21b', NULL, NULL, NULL, 'Minuteman', 'End user interface', NULL, NULL, NULL, 'https://www.minlib.net/', '{ "id": "cd5926fa-77aa-4eb3-ac34-c9a1747ba21b", "metadata": { "createdDate": "2021-12-06T01:51:38.509+00:00", "updatedDate": "2021-12-06T01:51:38.509+00:00" }, "name": "Minuteman", "notes": "End user interface", "type": [ "End user" ], "uri": "https://www.minlib.net/" }'); INSERT INTO organization_interfaces VALUES ('cd5926fa-77aa-4eb3-ac34-c9a1747ba21c', NULL, NULL, NULL, 'RSC Admin', 'Admin interface', NULL, NULL, NULL, 'https://pubs.rsc.org/', '{ "id": "cd5926fa-77aa-4eb3-ac34-c9a1747ba21c", "metadata": { "createdDate": "2021-12-06T01:51:38.552+00:00", "updatedDate": "2021-12-06T01:51:38.552+00:00" }, "name": "RSC Admin", "notes": "Admin interface", "type": [ "Admin" ], "uri": "https://pubs.rsc.org/" }'); INSERT INTO organization_interfaces VALUES ('ddfd8661-896d-4ffc-be57-d0f466cb790b', true, 'Email', 'false', 'EBSCONET', 'all staff have different logins and permissions associated with them', NULL, 'Excel', NULL, 'https://www.ebsconet.com/', '{ "id": "ddfd8661-896d-4ffc-be57-d0f466cb790b", "available": true, "deliveryMethod": "Email", "locallyStored": "false", "metadata": { "createdDate": "2021-12-06T01:51:38.500+00:00", "updatedDate": "2021-12-06T01:51:38.500+00:00" }, "name": "EBSCONET", "notes": "all staff have different logins and permissions associated with them", "statisticsFormat": "Excel", "type": [ "End user", "Reports", "Orders", "Invoices" ], "uri": "https://www.ebsconet.com/" }'); INSERT INTO organization_interfaces VALUES ('fae74b9c-5338-4cd6-8a17-47c750d40b7b', true, 'Online', 'https://www.lib.sample.edu/staff/collectiondevelopment/', 'Naxos Digital Services, U.S.', 'See also http://sample.naxosvideolibrary.com/ for Naxos Video Library', 'http://www.naxosmusiclibrary.com/', 'Non-COUNTER', 'Login on interface used to access content.', 'https://www.naxosmusiclibrary.com', '{ "id": "fae74b9c-5338-4cd6-8a17-47c750d40b7b", "available": true, "deliveryMethod": "Online", "locallyStored": "https://www.lib.sample.edu/staff/collectiondevelopment/", "metadata": { "createdDate": "2021-12-06T01:51:38.475+00:00", "updatedDate": "2021-12-06T01:51:38.475+00:00" }, "name": "Naxos Digital Services, U.S.", "notes": "See also http://sample.naxosvideolibrary.com/ for Naxos Video Library", "onlineLocation": "http://www.naxosmusiclibrary.com/", "statisticsFormat": "Non-COUNTER", "statisticsNotes": "Login on interface used to access content.", "type": [ "End user" ], "uri": "https://www.naxosmusiclibrary.com" }'); -- -- TOC entry 4271 (class 0 OID 88216219) -- Dependencies: 516 -- Data for Name: organization_organizations; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO organization_organizations VALUES ('11fb627a-cdf1-11e8-a8d5-f2801f1b9fd1', true, 0, 'ALEXS', 'AV streaming services', 0.00, 'G64758-74828', 1, 30, 30, false, false, true, 'en-us', false, true, true, 'Alexander Street Press', 'Physical Check', 365, '1234567', 'Active', 365, '', 0.00, '{ "id": "11fb627a-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": true, "accounts": [ { "accountNo": "1234", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "customerservice@alexanderstreet.com", "description": "Main library account", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Library account", "notes": "", "paymentMethod": "Physical Check" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "3212 Duke Street", "addressLine2": "", "categories": [], "city": "Alexandria", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "VA", "zipCode": "22314" } ], "agreements": [ { "discount": 0.0, "name": "library access", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "Alexander Street" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "ALEXS", "contacts": [ "11fb627a-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "AV streaming services", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "main customer service email", "isPrimary": true, "language": "English", "value": "customerservice@alexanderstreet.com" } ], "erpCode": "G64758-74828", "expectedActivationInterval": 1, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "14e81009-0f98-45a0-b8e6-e25547beb22f" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.088+00:00", "updatedDate": "2021-12-06T01:51:38.088+00:00" }, "name": "Alexander Street Press", "paymentMethod": "Physical Check", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-800-889-5937" } ], "renewalActivationInterval": 365, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 365, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://alexanderstreet.com/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1', true, 0, 'TAFG', 'Serials - Domestic', 0.00, 'G64758-74832', 30, 30, 30, true, false, true, 'en-us', false, true, true, 'Taylor & Francis Group, LLC ', 'EFT', 365, '', 'Active', 365, '', 0.00, '{ "id": "12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": true, "accounts": [ { "accountNo": "xxxx4962", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "Richard.Plantagenet@taylorandfrancis.com", "description": "Libraries", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Serialst", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "Suite 300, 6000 Broken Sound Parkway, NW", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Boca Raton", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "FL", "zipCode": "33487" } ], "agreements": [ { "discount": 40.0, "name": "Association of Digital Humanities Journal Package", "notes": "Amendment to Multiyear Master Agreement (2015-2019)", "referenceUrl": "https://www.acs.org/content/acs/en.html" } ], "aliases": [ { "description": "", "value": "Taylor & Francis " } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "TAFG", "contacts": [ "12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Serials - Domestic", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "Customer Servicel", "isPrimary": true, "language": "English", "value": "enquiries@taylorandfrancis.com" } ], "erpCode": "G64758-74832", "expectedActivationInterval": 30, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": true, "governmental": false, "interfaces": [ "92289a36-5d83-4794-9f45-97eda8938064" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.117+00:00", "updatedDate": "2021-12-06T01:51:38.117+00:00" }, "name": "Taylor & Francis Group, LLC ", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-800-634-7064" } ], "renewalActivationInterval": 365, "sanCode": "", "status": "Active", "subscriptionInterval": 365, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://taylorandfrancis.com/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1', false, 45, 'USGS', 'Maps and materials from the USGS', 0.00, 'G64758-74833', 0, 0, 30, false, true, true, 'en-us', false, false, true, 'United States Geological Survey', 'Credit Card', 0, '', 'Active', 0, '', 0.00, '{ "id": "13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "1234", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "usgsstore@usgs.gov", "description": "Monographic ordering unit accountt", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Cartographic account", "notes": "", "paymentMethod": "Credit Card" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "12201 Sunrise Valley Drive", "addressLine2": "P.O. Box 15550", "categories": [], "city": "Reston", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "VA", "zipCode": "20192" } ], "agreements": [ { "discount": 0.0, "name": "", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "USGS" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 45, "code": "USGS", "contacts": [ "13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Maps and materials from the USGS", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "main customer service email", "isPrimary": true, "language": "English", "value": "usgsstore@usgs.gov" } ], "erpCode": "G64758-74833", "expectedActivationInterval": 0, "expectedInvoiceInterval": 0, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": true, "interfaces": [ "766e42dc-386b-4710-897d-2ad226fa3679" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.240+00:00", "updatedDate": "2021-12-06T01:51:38.240+00:00" }, "name": "United States Geological Survey", "paymentMethod": "Credit Card", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-888-ASK-USGS" } ], "renewalActivationInterval": 0, "sanCode": "", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.usgs.gov/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1', false, 30, 'ZROCO$', 'Distributor of documentary films', 0.00, 'G64758-74825', 0, 30, 30, true, false, true, 'English', false, true, true, 'Ro*Co films', 'EFT', 0, '', 'Inactive', 0, '', 0.00, '{ "id": "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "library orders 5000", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "dana@rocofilms.com", "description": "DVD/PPR/Streaming movies", "libraryCode": "pfirm", "libraryEdiCode": "765987610", "name": "library orders", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "80 LIBERTY SHIP WAY7", "addressLine2": "SUITE 5", "categories": [], "city": "SAUSALITO", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "CA", "zipCode": "94965" } ], "agreements": [ { "discount": 50.0, "name": "50% discount if buying DVD (PPR included) + streaming license", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "Ro*Co Films Educational" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 30, "code": "ZROCO$", "contacts": [ "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Distributor of documentary films", "discountPercent": 0.0, "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "initial contact address", "isPrimary": true, "language": "English", "value": "info@rocofilms.com" } ], "erpCode": "G64758-74825", "expectedActivationInterval": 0, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": true, "governmental": false, "interfaces": [], "isVendor": true, "language": "English", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:37.982+00:00", "updatedDate": "2021-12-06T01:51:37.982+00:00" }, "name": "Ro*Co films", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-415-332-6471" } ], "renewalActivationInterval": 0, "sanCode": "", "status": "Inactive", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "English", "notes": "", "value": "http://www.rocofilms.com/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('15fb695a-cdf1-11e8-a8d5-f2801f1b9fd1', false, 60, 'ZSUSANBA$*', 'Print monographs in Spanish, books from Brazil', 20.00, 'G64758-74827', 0, 0, 30, false, false, true, 'Portuguese/Spanish', false, false, true, 'Susan Bach Books (Brazil)', 'EFT', 0, '', 'Active', 0, '', 0.00, '{ "id": "15fb695a-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "852-987", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "service@naxosusa.com", "description": "one time monographs", "libraryCode": "pfirm", "libraryEdiCode": "765987610", "name": "Monograph", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "RUA VISCONDE DE CARAVELAS, Nº 17", "addressLine2": "BOTAFOGO", "categories": [], "city": "RIO DE JANEIRO", "country": "Brazil", "isPrimary": true, "language": "Portuguese", "stateRegion": "", "zipCode": "22271-021" } ], "agreements": [ { "discount": 0.0, "name": "", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "Susan Bach Books from Brazil" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 60, "code": "ZSUSANBA$*", "contacts": [ "15fb695a-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Print monographs in Spanish, books from Brazil", "discountPercent": 20.0, "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "sbach@sbachbooks.com.br" } ], "erpCode": "G64758-74827", "expectedActivationInterval": 0, "expectedInvoiceInterval": 0, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [], "isVendor": true, "language": "Portuguese/Spanish", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.251+00:00", "updatedDate": "2021-12-06T01:51:38.251+00:00" }, "name": "Susan Bach Books (Brazil)", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "Portuguese", "phoneNumber": "55-55-21-2539-3590" } ], "renewalActivationInterval": 0, "sanCode": "", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "English/Portuguese", "notes": "", "value": "http://www.sbachbooks.com.br/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1', false, 60, 'SREBSCO', 'Use for single title subscriptions.', 10.00, 'G64758-74837', 0, 30, 30, false, false, true, 'en-us', false, false, false, 'EBSCO SUBSCRIPTION SERVICES', 'EFT', 0, '1234567', 'Active', 0, '', 0.00, '{ "id": "50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "BRXXXXX-01", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "Some basic contact information note.", "description": "Print serial subscriptions", "libraryCode": "-01, -02, -03", "libraryEdiCode": "VOY0081", "name": "Serials", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "10 ESTES ST", "addressLine2": "PO BOX 682", "categories": [], "city": "Ipswich", "country": "USA", "isPrimary": true, "language": "en", "stateRegion": "MA", "zipCode": "01938" } ], "agreements": [ { "discount": 0.0, "name": "XXXXXX credit", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "EBSCO" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 60, "code": "SREBSCO", "contacts": [ "50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Use for single title subscriptions.", "discountPercent": 10.0, "edi": { "ediFtp": { "ftpConnMode": "Passive", "ftpFormat": "SFTP", "ftpMode": "Binary", "ftpPort": 22, "invoiceDirectory": "", "notes": "", "orderDirectory": "", "password": "ediPassword", "serverAddress": "ftps://ftp.ebsco.com", "username": "edi_username" }, "ediJob": { "isFriday": false, "isMonday": false, "isSaturday": false, "isSunday": false, "isThursday": false, "isTuesday": false, "isWednesday": false, "notifyAllEdi": false, "notifyErrorOnly": false, "notifyInvoiceOnly": true, "scheduleEdi": false, "sendToEmails": "bobbarker@priceisright.com" }, "ediNamingConvention": "*.edu", "libEdiCode": "VOY0081", "libEdiType": "31B/US-SAN", "notes": "", "prorateFees": false, "prorateTax": true, "sendAcctNum": true, "supportInvoice": true, "supportOrder": false, "vendorEdiCode": "xx-xxx014186", "vendorEdiType": "31B/US-SAN" }, "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "Customer Service Rep", "isPrimary": true, "language": "en-us", "value": "jbeck@ebsco.com" } ], "erpCode": "G64758-74837", "expectedActivationInterval": 0, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "ddfd8661-896d-4ffc-be57-d0f466cb790b" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": false, "metadata": { "createdDate": "2021-12-06T01:51:38.023+00:00", "updatedDate": "2021-12-06T01:51:38.023+00:00" }, "name": "EBSCO SUBSCRIPTION SERVICES", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "en-us", "phoneNumber": "1-800-653-2726" } ], "renewalActivationInterval": 0, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://www.ebsco.com" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('60fb4bfa-cdf1-11e8-a8d5-f2801f1b9fd1', false, 0, 'SJEAN', 'Individual donor to library archives', 0.00, 'G64758-74830', 0, 0, 30, false, false, true, 'en-us', false, false, true, 'Jean Simmons', 'Physical Check', 0, '', 'Active', 0, '', 0.00, '{ "id": "60fb4bfa-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "1234", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "sister@luc.edu", "description": "Donor account", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "SJean account", "notes": "", "paymentMethod": "Physical Check" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "1032 W. Sheridan Rd", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "city": "Chicago", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "IL", "zipCode": "60660" } ], "agreements": [], "aliases": [ { "description": "", "value": "Sister Jean" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "SJEAN", "contacts": [ "60fb4bfa-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Individual donor to library archives", "discountPercent": 0.0, "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "personal email ", "isPrimary": true, "language": "English", "value": "sister@luc.edu" } ], "erpCode": "G64758-74830", "expectedActivationInterval": 0, "expectedInvoiceInterval": 0, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.217+00:00", "updatedDate": "2021-12-06T01:51:38.217+00:00" }, "name": "Jean Simmons", "paymentMethod": "Physical Check", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "English", "phoneNumber": "1-773-274-3000" } ], "renewalActivationInterval": 0, "sanCode": "", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "", "isPrimary": true, "language": "", "notes": "", "value": "" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1', true, 0, 'NAXO', 'AV streaming services, other onilne content', 0.00, 'G64758-74827', 30, 30, 30, false, false, true, 'en-us', false, true, true, 'Naxos of America, Inc.', 'EFT', 365, '', 'Active', 365, '', 0.00, '{ "id": "70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": true, "accounts": [ { "accountNo": "xxxx4367", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "service@naxosusa.com", "description": "Libraries", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Serials", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "416 Mary Lindsay Polk Dr.", "addressLine2": "", "categories": [], "city": "Franklin", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "TN", "zipCode": "37067" } ], "agreements": [ { "discount": 0.0, "name": "Naxos Music Library, Naxos Video Library", "notes": "", "referenceUrl": "https://www.acs.org/content/acs/en.html" } ], "aliases": [ { "description": "", "value": "Naxos" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "NAXO", "contacts": [ "70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "AV streaming services, other onilne content", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "service@naxosusa.com" } ], "erpCode": "G64758-74827", "expectedActivationInterval": 30, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "fae74b9c-5338-4cd6-8a17-47c750d40b7b" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.264+00:00", "updatedDate": "2021-12-06T01:51:38.264+00:00" }, "name": "Naxos of America, Inc.", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-615-771-9393" } ], "renewalActivationInterval": 365, "sanCode": "", "status": "Active", "subscriptionInterval": 365, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.naxos.com/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('80fb5168-cdf1-11e8-a8d5-c2801f1b9f21', NULL, NULL, 'consortia1', 'The Bibsam consortium is operated by Kungl. biblioteket, the National Library of Sweden. It has 79 active member institutions including universities, university colleges, and government funded research institutions. It manages about 40 licenses for approx. 100 e-resources, including "big deal" agreements with scholarly journal publishers as well as agreements for encyclopaedias and abstract and indexing databases.', NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, NULL, NULL, NULL, 'Bibsam', NULL, NULL, NULL, 'Active', NULL, NULL, NULL, '{ "id": "80fb5168-cdf1-11e8-a8d5-c2801f1b9f21", "accounts": [], "acqUnitIds": [], "addresses": [], "agreements": [], "aliases": [ { "value": "Kungl biblioteket" }, { "value": "National Library of Sweden" } ], "changelogs": [], "code": "consortia1", "contacts": [], "description": "The Bibsam consortium is operated by Kungl. biblioteket, the National Library of Sweden. It has 79 active member institutions including universities, university colleges, and government funded research institutions. It manages about 40 licenses for approx. 100 e-resources, including \"big deal\" agreements with scholarly journal publishers as well as agreements for encyclopaedias and abstract and indexing databases.", "emails": [], "exportToAccounting": false, "interfaces": [ "cd5926fa-77aa-4eb3-ac34-c9a1747ba21a" ], "isVendor": false, "metadata": { "createdDate": "2021-12-06T01:51:38.129+00:00", "updatedDate": "2021-12-06T01:51:38.129+00:00" }, "name": "Bibsam", "phoneNumbers": [], "status": "Active", "urls": [], "vendorCurrencies": [] }'); INSERT INTO organization_organizations VALUES ('80fb5168-cdf1-11e8-a8d5-c2801f1b9f22', NULL, NULL, 'consortia2', 'The Minuteman Library Network is comprised of 41 public and academic libraries in the MetroWest region of Massachusetts.', NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, NULL, NULL, NULL, 'Minuteman Library', NULL, NULL, NULL, 'Active', NULL, NULL, NULL, '{ "id": "80fb5168-cdf1-11e8-a8d5-c2801f1b9f22", "accounts": [], "acqUnitIds": [], "addresses": [], "agreements": [], "aliases": [ { "value": "MLN" } ], "changelogs": [], "code": "consortia2", "contacts": [], "description": "The Minuteman Library Network is comprised of 41 public and academic libraries in the MetroWest region of Massachusetts.", "emails": [], "exportToAccounting": false, "interfaces": [ "cd5926fa-77aa-4eb3-ac34-c9a1747ba21b" ], "isVendor": false, "metadata": { "createdDate": "2021-12-06T01:51:37.926+00:00", "updatedDate": "2021-12-06T01:51:37.926+00:00" }, "name": "Minuteman Library", "phoneNumbers": [], "status": "Active", "urls": [], "vendorCurrencies": [] }'); INSERT INTO organization_organizations VALUES ('80fb5168-cdf1-11e8-a8d5-c2801f1b9f23', NULL, NULL, 'content_provider1', NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, false, NULL, NULL, NULL, NULL, 'Royal Society of Chemistry', NULL, NULL, NULL, 'Active', NULL, NULL, NULL, '{ "id": "80fb5168-cdf1-11e8-a8d5-c2801f1b9f23", "accounts": [], "acqUnitIds": [], "addresses": [], "agreements": [], "aliases": [ { "value": "RSC" } ], "changelogs": [], "code": "content_provider1", "contacts": [], "emails": [], "exportToAccounting": false, "interfaces": [ "cd5926fa-77aa-4eb3-ac34-c9a1747ba21c" ], "isVendor": false, "metadata": { "createdDate": "2021-12-06T01:51:38.054+00:00", "updatedDate": "2021-12-06T01:51:38.054+00:00" }, "name": "Royal Society of Chemistry", "phoneNumbers": [], "status": "Active", "urls": [], "vendorCurrencies": [] }'); INSERT INTO organization_organizations VALUES ('80fb5168-cdf1-11e8-a8d5-f2801f1b9fd1', true, 0, 'ACSO', 'Serials - Domestic', 0.00, 'G64758-74831', 30, 30, 30, true, false, true, 'en-us', false, true, true, 'American Chemical Society', 'EFT', 365, '1234567', 'Active', 365, '', 0.00, '{ "id": "80fb5168-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": true, "accounts": [ { "accountNo": "xxxx2149", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "liblink@acs.org", "description": "Libraries", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Serialst", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "1155 Sixteenth Street, NW", "addressLine2": "", "categories": [], "city": "Washington", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "DC", "zipCode": "20036" } ], "agreements": [ { "discount": 0.0, "name": "ACS Web Editions", "notes": "Multiyear agreement (2018-2020)", "referenceUrl": "https://www.acs.org/content/acs/en.html" } ], "aliases": [ { "description": "", "value": "ACS" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "ACSO", "contacts": [ "80fb5168-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Serials - Domestic", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "service@acs.org" } ], "erpCode": "G64758-74831", "expectedActivationInterval": 30, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": true, "governmental": false, "interfaces": [ "60b952a6-5570-44f3-9972-f00c9dcb098e" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.042+00:00", "updatedDate": "2021-12-06T01:51:38.042+00:00" }, "name": "American Chemical Society", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-800-333-9511" } ], "renewalActivationInterval": 365, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 365, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main English language website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.acs.org/content/acs/en.html" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('a9ef8a8d-6c2b-49b8-bc93-51bebebb28db', NULL, NULL, '123', NULL, NULL, NULL, NULL, NULL, NULL, false, NULL, true, NULL, NULL, NULL, NULL, '我是供应商', NULL, NULL, NULL, 'Active', NULL, NULL, NULL, '{ "id": "a9ef8a8d-6c2b-49b8-bc93-51bebebb28db", "accounts": [], "acqUnitIds": [], "addresses": [], "agreements": [], "aliases": [], "changelogs": [], "code": "123", "contacts": [], "edi": { "ediFtp": { "ftpConnMode": "Active", "ftpFormat": "SFTP", "ftpMode": "ASCII" }, "libEdiType": "31B/US-SAN", "vendorEdiType": "31B/US-SAN" }, "emails": [], "exportToAccounting": false, "interfaces": [], "isVendor": true, "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:13:29.654+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:13:29.654+00:00" }, "name": "我是供应商", "phoneNumbers": [], "status": "Active", "urls": [], "vendorCurrencies": [] }'); INSERT INTO organization_organizations VALUES ('c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1', false, 75, 'HARRA', 'Use for monographs, approval plans, firms orders, and standing orders', 0.00, 'G64758-74835', 0, 30, 30, false, false, true, 'en-us', false, false, true, 'Otto Harrassowitz GmbH & Co. KG', 'Physical Check', 0, '1234567', 'Active', 0, '', 0.00, '{ "id": "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "xxxx34", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "service@harrassowitz.de", "description": "Main library account", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Main library account", "notes": "different account numbers for serials and standing orders", "paymentMethod": "Physical Check" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "Kreuzberger Ring 6 b-d", "addressLine2": "", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Wiesbaden", "country": "Germany", "isPrimary": true, "language": "German", "stateRegion": "", "zipCode": "65205" } ], "agreements": [ { "discount": 0.0, "name": "No formal agreement", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "shorter name", "value": "Harrassowitz" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 75, "code": "HARRA", "contacts": [ "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Use for monographs, approval plans, firms orders, and standing orders", "discountPercent": 0.0, "edi": { "ediFtp": { "ftpConnMode": "Passive", "ftpFormat": "SFTP", "ftpMode": "Binary", "ftpPort": 22, "invoiceDirectory": "/invoices", "notes": "", "orderDirectory": "/orders", "password": "password", "serverAddress": "ftps://ftp.harrassowitz.de", "username": "sample" }, "ediJob": { "isFriday": false, "isMonday": false, "isSaturday": false, "isSunday": false, "isThursday": false, "isTuesday": false, "isWednesday": false, "notifyAllEdi": true, "notifyErrorOnly": false, "notifyInvoiceOnly": false, "scheduleEdi": true, "sendToEmails": "" }, "ediNamingConvention": "****.edu", "libEdiCode": "COB", "notes": "", "prorateFees": false, "prorateTax": false, "sendAcctNum": true, "supportInvoice": true, "supportOrder": true, "vendorEdiCode": "v10063" }, "emails": [ { "categories": [], "description": "customer service", "isPrimary": true, "language": "German and English", "value": "service@harrassowitz.de" } ], "erpCode": "G64758-74835", "expectedActivationInterval": 0, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "00b1c903-38f2-45c7-a427-30a141cf643a" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.205+00:00", "updatedDate": "2021-12-06T01:51:38.205+00:00" }, "name": "Otto Harrassowitz GmbH & Co. KG", "paymentMethod": "Physical Check", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "isPrimary": true, "language": "German", "phoneNumber": "49-611-530 ext. 0" } ], "renewalActivationInterval": 0, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.harrassowitz.de/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1', false, 45, 'GOBI', 'Use for print and eBooks, approval plans, firm orders, standing orders, DDA', 10.00, 'G64758-74836', 3, 30, 30, false, false, true, 'en-us', false, false, true, 'GOBI Library Solutions', 'EFT', 0, '1234567', 'Active', 0, '888888888', 0.00, '{ "id": "d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "99999-10", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "jlegier@ebsco.com", "description": "Main library orders for print books, shipped from US office", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "US print orders", "notes": "separate accounts for eBooks and UK orders", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "999 Maple Street", "addressLine2": "2", "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195", "ab760714-4185-4859-b0dd-3e72f01c5c52", "cbfaec07-5df1-4197-bfa5-1bc91f9073cf" ], "city": "Contoocook", "country": "USA", "isPrimary": true, "language": "en", "stateRegion": "NH", "zipCode": "03229" } ], "agreements": [ { "discount": 10.0, "name": "No formal agreement", "notes": "Review SLAs & fulfillment stats 2 months before end of FY", "referenceUrl": "" } ], "aliases": [ { "description": "former name", "value": "YBP Library Services" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 45, "code": "GOBI", "contacts": [ "d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Use for print and eBooks, approval plans, firm orders, standing orders, DDA", "discountPercent": 10.0, "edi": { "ediFtp": { "ftpConnMode": "Passive", "ftpFormat": "SFTP", "ftpMode": "Binary", "ftpPort": 22, "invoiceDirectory": "/invoices", "notes": "separate directories for EOCRs and cat records", "orderDirectory": "/dropoff", "password": "password", "serverAddress": "ftps://ftp.ybp.com", "username": "sample" }, "ediJob": { "isFriday": false, "isMonday": false, "isSaturday": false, "isSunday": false, "isThursday": false, "isTuesday": false, "isWednesday": false, "notifyAllEdi": true, "notifyErrorOnly": false, "notifyInvoiceOnly": false, "scheduleEdi": true, "sendToEmails": "bobbarker@priceisright.com" }, "ediNamingConvention": "*.edi", "libEdiCode": "7659876", "libEdiType": "31B/US-SAN", "notes": "no EDI invoices for our tech services invoices", "prorateFees": false, "prorateTax": true, "sendAcctNum": true, "supportInvoice": true, "supportOrder": true, "vendorEdiCode": "1694510", "vendorEdiType": "31B/US-SAN" }, "emails": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "for general questions", "isPrimary": true, "language": "en-us", "value": "gobiserviceissue@ebsco.com" } ], "erpCode": "G64758-74836", "expectedActivationInterval": 3, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "793b9d42-ae12-41d7-a36a-f33e5b9e82c5" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.229+00:00", "updatedDate": "2021-12-06T01:51:38.229+00:00" }, "name": "GOBI Library Solutions", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "isPrimary": true, "language": "en-us", "phoneNumber": "1-800-258-3774" } ], "renewalActivationInterval": 0, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 0, "taxId": "888888888", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://gobi.ebsco.com/" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1', false, 45, 'AMAZ', 'Use for rush orders, replacement requests, and second hand market', 0.00, 'G64758-74834', 0, 0, 30, true, false, true, 'en-us', false, false, true, 'Amazon.com', 'Credit Card', 0, '1234567', 'Active', 0, '', 0.00, '{ "id": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": false, "accounts": [ { "accountNo": "1234", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "cust.service03@amazon.com", "description": "Monographic ordering unit account", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Monographic ordering unit account", "notes": "", "paymentMethod": "Credit Card" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "1 Centerpiece Blvd.", "addressLine2": "P.O. Box 15550", "categories": [], "city": "New Castle", "country": "USA", "isPrimary": true, "language": "English", "stateRegion": "DE", "zipCode": "19720-5550" } ], "agreements": [ { "discount": 0.0, "name": "test", "notes": "", "referenceUrl": "" } ], "aliases": [ { "description": "", "value": "Amazon" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 45, "code": "AMAZ", "contacts": [ "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Use for rush orders, replacement requests, and second hand market", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "customer service", "isPrimary": true, "language": "English", "value": "cust.service03@amazon.com" } ], "erpCode": "G64758-74834", "expectedActivationInterval": 0, "expectedInvoiceInterval": 0, "expectedReceiptInterval": 30, "exportToAccounting": true, "governmental": false, "interfaces": [ "cd592659-77aa-4eb3-ac34-c9a4657bb20f" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": false, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.073+00:00", "updatedDate": "2021-12-06T01:51:38.073+00:00" }, "name": "Amazon.com", "paymentMethod": "Credit Card", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "1-888-238-22090" } ], "renewalActivationInterval": 0, "sanCode": "1234567", "status": "Active", "subscriptionInterval": 0, "taxId": "", "taxPercentage": 0.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "https://www.amazon.com" } ], "vendorCurrencies": [ "USD" ] }'); INSERT INTO organization_organizations VALUES ('f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1', true, 0, 'MGNP', 'Serials-Foreign', 0.00, 'G64758-74829', 30, 30, 30, false, false, true, 'en-us', false, true, true, 'Magnolia Press', 'EFT', 365, '', 'Active', 365, '1819468', 5.00, '{ "id": "f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1", "accessProvider": true, "accounts": [ { "accountNo": "xxxx7859", "accountStatus": "Active", "acqUnitIds": [], "appSystemNo": "", "contactInfo": "magnolia@mapress.com", "description": "Libraries", "libraryCode": "COB", "libraryEdiCode": "765987610", "name": "Serials", "notes": "", "paymentMethod": "EFT" } ], "acqUnitIds": [], "addresses": [ { "addressLine1": "Saint Lukes", "addressLine2": "P.O. Box 41383", "categories": [], "city": "Auckland", "country": "New Zealand", "isPrimary": true, "language": "English", "stateRegion": "", "zipCode": "1346" } ], "agreements": [ { "discount": 10.0, "name": "Zootaxa ", "notes": "Acquisition of 2008-2010 Journal Archives", "referenceUrl": "https://www.acs.org/content/acs/en.html" } ], "aliases": [ { "description": "", "value": "Mangolia Press NZ" } ], "changelogs": [ { "description": "This is a sample note.", "timestamp": "2008-05-15T10:53:00.000+00:00" } ], "claimingInterval": 0, "code": "MGNP", "contacts": [ "f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1" ], "description": "Serials-Foreign", "discountPercent": 0.0, "emails": [ { "categories": [], "description": "Customer Service", "isPrimary": true, "language": "English", "value": "magnolia@mapress.com" } ], "erpCode": "G64758-74829", "expectedActivationInterval": 30, "expectedInvoiceInterval": 30, "expectedReceiptInterval": 30, "exportToAccounting": false, "governmental": false, "interfaces": [ "6c862414-a87c-4c19-b4dc-c9c2b68f296c" ], "isVendor": true, "language": "en-us", "liableForVat": false, "licensor": true, "materialSupplier": true, "metadata": { "createdDate": "2021-12-06T01:51:38.140+00:00", "updatedDate": "2021-12-06T01:51:38.140+00:00" }, "name": "Magnolia Press", "paymentMethod": "EFT", "phoneNumbers": [ { "categories": [], "isPrimary": true, "language": "English", "phoneNumber": "64-95-783-996" } ], "renewalActivationInterval": 365, "sanCode": "", "status": "Active", "subscriptionInterval": 365, "taxId": "1819468", "taxPercentage": 5.0, "urls": [ { "categories": [ "f52ceea4-8e35-404b-9ebd-5c7db6613195" ], "description": "main website", "isPrimary": true, "language": "en-us", "notes": "", "value": "http://www.mapress.com/j/" } ], "vendorCurrencies": [ "NZD" ] }'); -- -- TOC entry 4262 (class 0 OID 88216052) -- Dependencies: 507 -- Data for Name: po_alerts; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO po_alerts VALUES ('dc08f15e-a3ec-423a-bd1c-86a8ce6c5872', 'Receipt overdue', '{ "id": "dc08f15e-a3ec-423a-bd1c-86a8ce6c5872", "alert": "Receipt overdue" }'); -- -- TOC entry 4179 (class 0 OID 88214564) -- Dependencies: 424 -- Data for Name: po_lines; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO po_lines VALUES ('556abc25-ebbf-3fb2-b478-1bfaff0af4dc', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', '09c6ed1b-3984-4d9a-8f9b-e1200b68b61c', false, '', false, false, '', '', 'First edition', false, 'Other', 'Pending', '', '81-1', '1915', 'American Bar Association', 'c27e60f9-6361-44c1-976e-0c4821a33a7d', 'Pending', '', false, '', 'User', 'ABA Journal', '{ "id": "556abc25-ebbf-3fb2-b478-1bfaff0af4dc", "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "agreementId": "09c6ed1b-3984-4d9a-8f9b-e1200b68b61c", "alerts": [], "cancellationRestriction": false, "cancellationRestrictionNote": "", "checkinItems": false, "claims": [ { "claimed": false, "grace": 0 } ], "collection": false, "contributors": [], "cost": { "additionalCost": 0.0, "currency": "USD", "discount": 0.0, "discountType": "percentage", "listUnitPrice": 0.0, "listUnitPriceElectronic": 0.0, "poLineEstimatedPrice": 0.0, "quantityElectronic": 0, "quantityPhysical": 2 }, "description": "", "details": { "productIds": [ { "productId": "0747-0088", "productIdType": "913300b2-03ed-469a-8179-c1092c991227" } ], "receivingNote": "", "subscriptionInterval": 0 }, "donor": "", "edition": "First edition", "fundDistribution": [ { "code": "UNIV-SUBN", "distributionType": "percentage", "encumbrance": "eb506834-6c70-4239-8d1a-6414a5b08014", "fundId": "4428a37c-8bae-4f0d-865d-970d83d5ad55", "value": 100.0 } ], "isPackage": false, "locations": [ { "locationId": "758258bc-ecc1-41b8-abca-f7b610822ffd", "quantity": 2, "quantityElectronic": 0, "quantityPhysical": 2 } ], "metadata": { "createdDate": "2021-12-06T01:50:49.796+00:00", "updatedDate": "2021-12-06T01:50:49.796+00:00" }, "orderFormat": "Other", "paymentStatus": "Pending", "physical": { "materialSupplier": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "dd0bf600-dbd9-44ab-9ff2-e2a61a6539f1", "volumes": [ "vol. 1" ] }, "poLineDescription": "", "poLineNumber": "81-1", "publicationDate": "1915", "publisher": "American Bar Association", "purchaseOrderId": "c27e60f9-6361-44c1-976e-0c4821a33a7d", "receiptStatus": "Pending", "reportingCodes": [], "requester": "", "rush": false, "selector": "", "source": "User", "tags": { "tagList": [ "CatalogingRecords" ] }, "titleOrPackage": "ABA Journal", "vendorDetail": { "instructions": "", "noteFromVendor": "", "referenceNumbers": [], "vendorAccount": "" } }'); INSERT INTO po_lines VALUES ('647c1dca-b9bf-47af-8456-bfb6dfef9eee', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', '0a79add6-f1a3-44f8-b75d-092c0b729286', false, '', false, false, '', '', 'First edition', false, 'Physical Resource', 'Pending', '', '101125-1', '2004', 'MIT Press', '9447d062-89ec-486e-a14b-572f3efb9f8c', 'Pending', '', false, '', 'User', 'A semantic web primer', '{ "id": "647c1dca-b9bf-47af-8456-bfb6dfef9eee", "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "agreementId": "0a79add6-f1a3-44f8-b75d-092c0b729286", "alerts": [], "cancellationRestriction": false, "cancellationRestrictionNote": "", "checkinItems": false, "claims": [ { "claimed": false, "grace": 0 } ], "collection": false, "contributors": [ { "contributor": "Antoniou, Grigoris", "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a" }, { "contributor": "Van Harmelen, Frank", "contributorNameTypeId": "2b94c631-fca9-4892-a730-03ee529ffe2a" } ], "cost": { "additionalCost": 0.0, "currency": "USD", "discount": 21.0, "discountType": "percentage", "listUnitPrice": 200.0, "listUnitPriceElectronic": 0.0, "poLineEstimatedPrice": 316.0, "quantityElectronic": 0, "quantityPhysical": 2 }, "description": "", "details": { "productIds": [ { "productId": "0262012103", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422" }, { "productId": "9780262012102", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422", "qualifier": "(hardcover)" } ], "receivingNote": "2 copies", "subscriptionInterval": 0 }, "donor": "", "edition": "First edition", "fundDistribution": [ { "code": "USHIST", "distributionType": "percentage", "encumbrance": "eb506834-6c70-4239-8d1a-6414a5b08013", "fundId": "65032151-39a5-4cef-8810-5350eb316300", "value": 100.0 } ], "isPackage": false, "locations": [ { "locationId": "b241764c-1466-4e1d-a028-1a3684a5da87", "quantity": 2, "quantityElectronic": 0, "quantityPhysical": 2 } ], "metadata": { "createdDate": "2021-12-06T01:50:49.753+00:00", "updatedDate": "2021-12-06T01:50:49.753+00:00" }, "orderFormat": "Physical Resource", "paymentStatus": "Pending", "physical": { "createInventory": "Instance, Holding, Item", "materialSupplier": "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "receiptDue": "2018-07-31T00:00:00.000+00:00", "volumes": [ "vol. 0" ] }, "poLineDescription": "", "poLineNumber": "101125-1", "publicationDate": "2004", "publisher": "MIT Press", "purchaseOrderId": "9447d062-89ec-486e-a14b-572f3efb9f8c", "receiptStatus": "Pending", "reportingCodes": [], "requester": "", "rush": false, "selector": "", "source": "User", "tags": { "tagList": [ "giftsubscription", "important" ] }, "titleOrPackage": "A semantic web primer", "vendorDetail": { "instructions": "", "noteFromVendor": "", "referenceNumbers": [], "vendorAccount": "" } }'); INSERT INTO po_lines VALUES ('b9cc5473-bb40-1d61-afc0-d3a5ba0ed0a8', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', '6bbc890c-0fa9-4ab3-802a-471ee18f72d5', false, '', false, false, '', '', 'Second edition', false, 'Physical Resource', 'Pending', '', '101113-1', '2018', 'SAGE', '55b97a4a-6601-4488-84e1-8b0d47a3f523', 'Pending', '', false, '', 'User', 'The city post-modernity edited by Alan Latham', '{ "id": "b9cc5473-bb40-1d61-afc0-d3a5ba0ed0a8", "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "agreementId": "6bbc890c-0fa9-4ab3-802a-471ee18f72d5", "alerts": [], "cancellationRestriction": false, "cancellationRestrictionNote": "", "checkinItems": false, "claims": [ { "claimed": false, "grace": 0 } ], "collection": false, "contributors": [], "cost": { "additionalCost": 0.0, "currency": "USD", "discount": 14.1, "discountType": "percentage", "listUnitPrice": 240.0, "listUnitPriceElectronic": 0.0, "poLineEstimatedPrice": 412.32, "quantityElectronic": 0, "quantityPhysical": 2 }, "description": "", "details": { "productIds": [ { "productId": "9781868885015", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422" } ], "receivingNote": "v. 1-6 in 10 parts", "subscriptionInterval": 0 }, "donor": "", "edition": "Second edition", "fundDistribution": [ { "code": "STATE-MONOSER", "distributionType": "percentage", "encumbrance": "eb506834-6c70-4239-8d1a-6414a5b08010", "fundId": "bbd4a5e1-c9f3-44b9-bfdf-d184e04f0ba0", "value": 100.0 } ], "isPackage": false, "locations": [ { "locationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "quantity": 1, "quantityElectronic": 0, "quantityPhysical": 1 } ], "metadata": { "createdDate": "2021-12-06T01:50:49.831+00:00", "updatedDate": "2021-12-06T01:50:49.831+00:00" }, "orderFormat": "Physical Resource", "paymentStatus": "Pending", "physical": { "createInventory": "Instance, Holding", "materialSupplier": "50fb6ae0-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "d9acad2f-2aac-4b48-9097-e6ab85906b25", "receiptDue": "2018-08-31T00:00:00.000+00:00", "volumes": [ "vol. 6" ] }, "poLineDescription": "", "poLineNumber": "101113-1", "publicationDate": "2018", "publisher": "SAGE", "purchaseOrderId": "55b97a4a-6601-4488-84e1-8b0d47a3f523", "receiptStatus": "Pending", "reportingCodes": [], "requester": "", "rush": false, "selector": "", "source": "User", "tags": { "tagList": [] }, "titleOrPackage": "The city post-modernity edited by Alan Latham", "vendorDetail": { "instructions": "", "noteFromVendor": "", "referenceNumbers": [], "vendorAccount": "" } }'); INSERT INTO po_lines VALUES ('baec48dd-1594-2712-be8f-de336bc83fcc', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', '800b2f19-7134-4408-8145-3b04697b7de7', false, '', false, false, '', '', 'First edition', true, 'P/E Mix', 'Pending', '', '52590-1', NULL, NULL, '0610be6d-0ddd-494b-b867-19f63d8b5d6d', 'Pending', '', false, 'sgw', 'User', 'Interesting Times', '{ "id": "baec48dd-1594-2712-be8f-de336bc83fcc", "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "agreementId": "800b2f19-7134-4408-8145-3b04697b7de7", "alerts": [], "cancellationRestriction": false, "cancellationRestrictionNote": "", "checkinItems": false, "claims": [ { "claimed": true, "grace": 0 } ], "collection": false, "contributors": [], "cost": { "additionalCost": 0.0, "currency": "USD", "discount": 20.0, "discountType": "amount", "listUnitPrice": 500.0, "listUnitPriceElectronic": 0.0, "poLineEstimatedPrice": 2980.0, "quantityElectronic": 1, "quantityPhysical": 6 }, "description": "", "details": { "productIds": [ { "productId": "0552142352", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422" }, { "productId": "9780552142352", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422" } ], "receivingNote": "", "subscriptionFrom": "2018-07-20T00:00:00.000+00:00", "subscriptionInterval": 1095, "subscriptionTo": "2021-07-19T00:00:00.000+00:00" }, "donor": "", "edition": "First edition", "eresource": { "accessProvider": "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1", "activated": false, "activationDue": 1, "createInventory": "Instance, Holding", "expectedActivation": "2019-07-20T00:00:00.000+00:00", "materialType": "a7eb0130-7287-4485-b32c-b4b5814da0fa", "trial": true, "userLimit": 0 }, "fundDistribution": [ { "code": "USHIST", "distributionType": "percentage", "encumbrance": "e1a607b4-2ed3-4bd9-9c1e-3726737d5425", "fundId": "65032151-39a5-4cef-8810-5350eb316300", "value": 50.0 }, { "code": "EUROHIST", "distributionType": "percentage", "encumbrance": "6268d1e5-00c4-4ba7-86ff-c3eeb44886ea", "fundId": "e9285a1c-1dfc-4380-868c-e74073003f43", "value": 50.0 } ], "isPackage": true, "locations": [ { "locationId": "f34d27c6-a8eb-461b-acd6-5dea81771e70", "quantity": 2, "quantityElectronic": 1, "quantityPhysical": 1 }, { "locationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "quantity": 1, "quantityElectronic": 0, "quantityPhysical": 1 }, { "locationId": "b241764c-1466-4e1d-a028-1a3684a5da87", "quantity": 4, "quantityElectronic": 0, "quantityPhysical": 4 } ], "metadata": { "createdDate": "2021-12-06T01:50:49.783+00:00", "updatedDate": "2021-12-06T01:50:49.783+00:00" }, "orderFormat": "P/E Mix", "paymentStatus": "Pending", "physical": { "createInventory": "Instance, Holding, Item", "materialSupplier": "70fb4e66-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "5ee11d91-f7e8-481d-b079-65d708582ccc", "receiptDue": "2018-08-19T00:00:00.000+00:00", "volumes": [ "vol. 1" ] }, "poLineDescription": "", "poLineNumber": "52590-1", "purchaseOrderId": "0610be6d-0ddd-494b-b867-19f63d8b5d6d", "receiptStatus": "Pending", "reportingCodes": [], "requester": "", "rush": false, "selector": "sgw", "source": "User", "tags": { "tagList": [ "membership" ] }, "titleOrPackage": "Interesting Times", "vendorDetail": { "instructions": "", "noteFromVendor": "", "referenceNumbers": [], "vendorAccount": "" } }'); INSERT INTO po_lines VALUES ('ee0b9edb-5508-5f3e-a33b-0adb42fdcdc5', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', 'd4225afd-c449-4034-9847-1a43aa35d78e', false, '', true, false, '', '', 'First edition', false, 'Physical Resource', 'Pending', '', '101101-1', '2018', 'SAGE', '589a6016-3463-49f6-8aa2-dc315d0665fd', 'Pending', '', false, '', 'User', 'The city post-modernity edited by Alan Latham', '{ "id": "ee0b9edb-5508-5f3e-a33b-0adb42fdcdc5", "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "agreementId": "d4225afd-c449-4034-9847-1a43aa35d78e", "alerts": [], "cancellationRestriction": false, "cancellationRestrictionNote": "", "checkinItems": true, "claims": [ { "claimed": false, "grace": 0 } ], "collection": false, "contributors": [], "cost": { "additionalCost": 13.0, "currency": "USD", "discount": 37.0, "discountType": "percentage", "listUnitPrice": 900.0, "listUnitPriceElectronic": 0.0, "poLineEstimatedPrice": 580.0, "quantityElectronic": 0, "quantityPhysical": 1 }, "description": "", "details": { "productIds": [ { "productId": "9781450351430", "productIdType": "8261054f-be78-422d-bd51-4ed9f33c3422" } ], "receivingNote": "start with v. 162", "subscriptionFrom": "2018-07-01T00:00:00.000+00:00", "subscriptionInterval": 1095, "subscriptionTo": "2021-06-30T00:00:00.000+00:00" }, "donor": "", "edition": "First edition", "fundDistribution": [ { "code": "STATE-SUBN", "distributionType": "percentage", "encumbrance": "eb506834-6c70-4239-8d1a-6414a5b08011", "fundId": "e54b1f4d-7d05-4b1a-9368-3c36b75d8ac6", "value": 100.0 } ], "isPackage": false, "locations": [ { "locationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "quantity": 1, "quantityElectronic": 0, "quantityPhysical": 1 } ], "metadata": { "createdDate": "2021-12-06T01:50:49.809+00:00", "updatedDate": "2021-12-06T01:50:49.809+00:00" }, "orderFormat": "Physical Resource", "paymentStatus": "Pending", "physical": { "createInventory": "Instance, Holding, Item", "materialSupplier": "12fb63b0-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "1a54b431-2e4f-452d-9cae-9cee66c9a892", "receiptDue": "2018-07-31T00:00:00.000+00:00", "volumes": [ "vol. 0" ] }, "poLineDescription": "", "poLineNumber": "101101-1", "publicationDate": "2018", "publisher": "SAGE", "purchaseOrderId": "589a6016-3463-49f6-8aa2-dc315d0665fd", "receiptStatus": "Pending", "reportingCodes": [], "requester": "", "rush": false, "selector": "", "source": "User", "tags": { "tagList": [] }, "titleOrPackage": "The city post-modernity edited by Alan Latham", "vendorDetail": { "instructions": "", "noteFromVendor": "", "referenceNumbers": [], "vendorAccount": "" } }'); -- -- TOC entry 4264 (class 0 OID 88216082) -- Dependencies: 509 -- Data for Name: po_order_templates; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO po_order_templates VALUES ('2cec3275-a5c7-4ba1-afab-905ada8c5b65', '306489dd-0053-49ee-a068-c316444a8f55', true, '103c7625-0142-42f9-896e-cb51dd94a322', true, NULL, NULL, NULL, 'Electronic Resource', 'One-Time', NULL, NULL, NULL, NULL, 'Receipt Not Required', NULL, NULL, 'Individual eBooks', 'Be sure to fill in the proper vendor', 'eBooks', NULL, '{ "id": "2cec3275-a5c7-4ba1-afab-905ada8c5b65", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "acquisitionMethod": "306489dd-0053-49ee-a068-c316444a8f55", "approved": true, "billTo": "103c7625-0142-42f9-896e-cb51dd94a322", "cancellationRestriction": true, "cost": { "currency": "USD", "listUnitPriceElectronic": 1 }, "eresource": { "createInventory": "Instance, Holding", "materialType": "615b8413-82d5-4203-aa6e-e37984cb5ac3" }, "locations": [ { "locationId": "184aae84-a5bf-4c6a-85ba-4a7c73026cd5", "quantityElectronic": 1 } ], "notes": [ "Check for activation & discovery" ], "orderFormat": "Electronic Resource", "orderType": "One-Time", "polTags": { "tagList": [ "e-book" ] }, "receiptStatus": "Receipt Not Required", "templateCode": "Individual eBooks", "templateDescription": "Be sure to fill in the proper vendor", "templateName": "eBooks" }'); INSERT INTO po_order_templates VALUES ('43bb8a31-4e4b-463c-95c5-e163760f0092', '306489dd-0053-49ee-a068-c316444a8f55', true, '103c7625-0142-42f9-896e-cb51dd94a322', true, true, NULL, true, 'Electronic Resource', 'Ongoing', NULL, NULL, NULL, true, 'Receipt Not Required', NULL, NULL, 'Packages: eJournals', NULL, 'eJournal packages', NULL, '{ "id": "43bb8a31-4e4b-463c-95c5-e163760f0092", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "acquisitionMethod": "306489dd-0053-49ee-a068-c316444a8f55", "approved": true, "billTo": "103c7625-0142-42f9-896e-cb51dd94a322", "cancellationRestriction": true, "collection": true, "cost": { "currency": "USD", "quantityElectronic": 1 }, "eresource": { "createInventory": "None", "materialType": "615b8413-82d5-4203-aa6e-e37984cb5ac3" }, "locations": [ { "locationId": "184aae84-a5bf-4c6a-85ba-4a7c73026cd5", "quantityElectronic": 1 } ], "manualPo": true, "orderFormat": "Electronic Resource", "orderType": "Ongoing", "polTags": { "tagList": [ "e-journal" ] }, "reEncumber": true, "receiptStatus": "Receipt Not Required", "templateCode": "Packages: eJournals", "templateName": "eJournal packages" }'); INSERT INTO po_order_templates VALUES ('4dee318b-f5b3-40dc-be93-cc89b8c45b6f', '306489dd-0053-49ee-a068-c316444a8f55', true, '5f8a321e-6b38-4d90-92d4-bf08f91a2242', true, NULL, NULL, NULL, 'Physical Resource', 'One-Time', NULL, NULL, NULL, NULL, NULL, NULL, 'f7c36792-05f7-4c8c-969d-103ac6763187', 'Amazon-B', 'Use to create orders in FOLIO after they are placed on Amazon', 'Amazon book orders', 'e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1', '{ "id": "4dee318b-f5b3-40dc-be93-cc89b8c45b6f", "acquisitionMethod": "306489dd-0053-49ee-a068-c316444a8f55", "approved": true, "billTo": "5f8a321e-6b38-4d90-92d4-bf08f91a2242", "cancellationRestriction": true, "cost": { "currency": "USD", "quantityPhysical": 1 }, "locations": [ { "locationId": "fcd64ce1-6995-48f0-840e-89ffa2288371", "quantityPhysical": 1 } ], "notes": [ "Check credit card statement to make sure payment shows up" ], "orderFormat": "Physical Resource", "orderType": "One-Time", "physical": { "createInventory": "Instance, Holding, Item", "materialSupplier": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1", "materialType": "1a54b431-2e4f-452d-9cae-9cee66c9a892" }, "poTags": { "tagList": [ "amazon" ] }, "shipTo": "f7c36792-05f7-4c8c-969d-103ac6763187", "templateCode": "Amazon-B", "templateDescription": "Use to create orders in FOLIO after they are placed on Amazon", "templateName": "Amazon book orders", "vendor": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1" }'); INSERT INTO po_order_templates VALUES ('5c56e4f6-1296-4b5f-a6dc-8309d9983a16', '0a4163a5-d225-4007-ad90-2fb41b73efab', true, NULL, NULL, NULL, NULL, true, 'Physical Resource', 'One-Time', 'Payment Not Required', '2020', 'Important University', NULL, NULL, NULL, 'a3a02de3-c31a-4c2b-a2ce-8db9590ea90c', 'Dissert', 'Use to create orders for our dissertations going to the archives; change the pub year each year', 'Our dissertations', NULL, '{ "id": "5c56e4f6-1296-4b5f-a6dc-8309d9983a16", "acquisitionMethod": "0a4163a5-d225-4007-ad90-2fb41b73efab", "approved": true, "cost": { "listUnitPrice": 0, "quantityPhysical": 1 }, "instanceId": null, "locations": [ { "locationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "quantityPhysical": 1 } ], "manualPo": true, "orderFormat": "Physical Resource", "orderType": "One-Time", "paymentStatus": "Payment Not Required", "physical": { "createInventory": "Instance, Holding, Item", "materialType": "d9acad2f-2aac-4b48-9097-e6ab85906b25" }, "poTags": { "tagList": [ "dissertation" ] }, "polTags": { "tagList": [ "dissert-2020" ] }, "publicationDate": "2020", "publisher": "Important University", "shipTo": "a3a02de3-c31a-4c2b-a2ce-8db9590ea90c", "templateCode": "Dissert", "templateDescription": "Use to create orders for our dissertations going to the archives; change the pub year each year", "templateName": "Our dissertations" }'); INSERT INTO po_order_templates VALUES ('cc637c23-d1fb-47b9-bcda-1d6f0812dc01', 'df26d81b-9d63-4ff8-bf41-49bf75cfa70e', true, '103c7625-0142-42f9-896e-cb51dd94a322', NULL, NULL, NULL, NULL, 'Physical Resource', 'One-Time', NULL, NULL, NULL, NULL, NULL, 'Music Librarian', 'a3a02de3-c31a-4c2b-a2ce-8db9590ea90c', 'German music', NULL, 'German sound recordings', 'c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1', '{ "id": "cc637c23-d1fb-47b9-bcda-1d6f0812dc01", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "acquisitionMethod": "df26d81b-9d63-4ff8-bf41-49bf75cfa70e", "approved": true, "billTo": "103c7625-0142-42f9-896e-cb51dd94a322", "cost": { "currency": "USD", "quantityPhysical": 1 }, "fundDistribution": [ { "distributionType": "percentage", "fundId": "e9285a1c-1dfc-4380-868c-e74073003f43", "value": 100 } ], "locations": [ { "locationId": "53cf956f-c1df-410b-8bea-27f712cca7c0", "quantityPhysical": 1 } ], "orderFormat": "Physical Resource", "orderType": "One-Time", "physical": { "createInventory": "Instance, Holding, Item", "materialSupplier": "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1" }, "poTags": { "tagList": [ "music" ] }, "polTags": { "tagList": [ "german", "music" ] }, "selector": "Music Librarian", "shipTo": "a3a02de3-c31a-4c2b-a2ce-8db9590ea90c", "templateCode": "German music", "templateName": "German sound recordings", "vendor": "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1" }'); -- -- TOC entry 4183 (class 0 OID 88214666) -- Dependencies: 428 -- Data for Name: po_pieces; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4182 (class 0 OID 88214642) -- Dependencies: 427 -- Data for Name: po_purchase_orders; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO po_purchase_orders VALUES ('0610be6d-0ddd-494b-b867-19f63d8b5d6d', NULL, false, NULL, false, 'One-Time', '52590', false, 'f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "0610be6d-0ddd-494b-b867-19f63d8b5d6d", "acqUnitIds": [], "approved": false, "manualPo": false, "metadata": { "createdDate": "2021-12-06T01:50:49.672+00:00", "updatedDate": "2021-12-06T01:50:49.672+00:00" }, "notes": [ "2 titles received: Publication and London topographical record" ], "orderType": "One-Time", "poNumber": "52590", "reEncumber": false, "vendor": "f0fb6130-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); INSERT INTO po_purchase_orders VALUES ('55b97a4a-6601-4488-84e1-8b0d47a3f523', NULL, false, NULL, false, 'Ongoing', '101113', false, 'd0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "55b97a4a-6601-4488-84e1-8b0d47a3f523", "acqUnitIds": [], "approved": false, "manualPo": false, "metadata": { "createdDate": "2021-12-06T01:50:49.612+00:00", "updatedDate": "2021-12-06T01:50:49.612+00:00" }, "notes": [], "ongoing": { "interval": 365, "isSubscription": true, "manualRenewal": false, "renewalDate": "2019-04-09T00:00:00.000+00:00", "reviewPeriod": 30 }, "orderType": "Ongoing", "poNumber": "101113", "reEncumber": false, "vendor": "d0fb5aa0-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); INSERT INTO po_purchase_orders VALUES ('589a6016-3463-49f6-8aa2-dc315d0665fd', '2018-07-30 00:00:00+00', true, 'e63273e7-48f5-4c43-ab4e-1751ecacaa21', true, 'Ongoing', '101101', false, '14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "589a6016-3463-49f6-8aa2-dc315d0665fd", "acqUnitIds": [], "approvalDate": "2018-07-30T00:00:00.000+00:00", "approved": true, "approvedById": "e63273e7-48f5-4c43-ab4e-1751ecacaa21", "manualPo": true, "metadata": { "createdDate": "2021-12-06T01:50:49.590+00:00", "updatedDate": "2021-12-06T01:50:49.590+00:00" }, "notes": [], "ongoing": { "interval": 365, "isSubscription": true, "manualRenewal": true, "renewalDate": "2019-04-09T00:00:00.000+00:00", "reviewPeriod": 30 }, "orderType": "Ongoing", "poNumber": "101101", "reEncumber": false, "vendor": "14fb6608-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); INSERT INTO po_purchase_orders VALUES ('9447d062-89ec-486e-a14b-572f3efb9f8c', NULL, false, NULL, false, 'One-Time', '101125', false, '13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "9447d062-89ec-486e-a14b-572f3efb9f8c", "acqUnitIds": [ "0ebb1f7d-983f-3026-8a4c-5318e0ebc041" ], "approved": false, "manualPo": false, "metadata": { "createdDate": "2021-12-06T01:50:49.661+00:00", "updatedDate": "2021-12-06T01:50:49.661+00:00" }, "notes": [], "orderType": "One-Time", "poNumber": "101125", "reEncumber": false, "vendor": "13fb64dc-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); INSERT INTO po_purchase_orders VALUES ('c27e60f9-6361-44c1-976e-0c4821a33a7d', NULL, false, NULL, true, 'Ongoing', '81', true, 'e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "c27e60f9-6361-44c1-976e-0c4821a33a7d", "acqUnitIds": [], "approved": false, "manualPo": true, "metadata": { "createdDate": "2021-12-06T01:50:49.644+00:00", "updatedDate": "2021-12-06T01:50:49.644+00:00" }, "notes": [ "Cataloging record service" ], "ongoing": { "interval": 365, "isSubscription": true, "manualRenewal": true, "renewalDate": "2019-04-09T00:00:00.000+00:00", "reviewPeriod": 30 }, "orderType": "Ongoing", "poNumber": "81", "reEncumber": true, "tags": { "tagList": [ "important" ] }, "vendor": "e0fb5df2-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); INSERT INTO po_purchase_orders VALUES ('cf4bfd64-e609-4ecb-b3e6-7a5a1ced1645', NULL, false, NULL, false, 'One-Time', '313110', false, 'c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1', 'Pending', '{ "id": "cf4bfd64-e609-4ecb-b3e6-7a5a1ced1645", "acqUnitIds": [], "approved": false, "manualPo": false, "metadata": { "createdDate": "2021-12-06T01:50:49.631+00:00", "updatedDate": "2021-12-06T01:50:49.631+00:00" }, "notes": [ "DVD plus 3 years streaming" ], "orderType": "One-Time", "poNumber": "313110", "reEncumber": false, "vendor": "c0fb5956-cdf1-11e8-a8d5-f2801f1b9fd1", "workflowStatus": "Pending" }'); -- -- TOC entry 4175 (class 0 OID 88214486) -- Dependencies: 420 -- Data for Name: po_receiving_history; Type: TABLE DATA; Schema: public; Owner: - -- -- -- TOC entry 4265 (class 0 OID 88216116) -- Dependencies: 510 -- Data for Name: po_reporting_codes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO po_reporting_codes VALUES ('5926dcd7-85f5-4504-8283-712595ebc38b', 'CODEV', '{ "id": "5926dcd7-85f5-4504-8283-712595ebc38b", "code": "CODEV" }'); -- -- TOC entry 4274 (class 0 OID 88216289) -- Dependencies: 519 -- Data for Name: user_addresstypes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO user_addresstypes VALUES ('1c4b225f-f669-4e9b-afcd-ebc0e273a34e', 'Work', 'Work Address', '{ "id": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "addressType": "Work", "desc": "Work Address", "metadata": { "createdDate": "2021-12-06T01:51:04.355+00:00", "updatedDate": "2021-12-06T01:51:04.355+00:00" } }'); INSERT INTO user_addresstypes VALUES ('46ff3f08-8f41-485c-98d8-701ba8404f4f', 'Order', 'Order Address', '{ "id": "46ff3f08-8f41-485c-98d8-701ba8404f4f", "addressType": "Order", "desc": "Order Address", "metadata": { "createdDate": "2021-12-06T01:51:04.311+00:00", "updatedDate": "2021-12-06T01:51:04.311+00:00" } }'); INSERT INTO user_addresstypes VALUES ('93d3d88d-499b-45d0-9bc7-ac73c3a19880', 'Home', 'Home Address', '{ "id": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "addressType": "Home", "desc": "Home Address", "metadata": { "createdDate": "2021-12-06T01:51:04.336+00:00", "updatedDate": "2021-12-06T01:51:04.336+00:00" } }'); INSERT INTO user_addresstypes VALUES ('a3c3d60b-df9e-41d9-b7f5-983008bc1a45', 'Payment', 'Payment Address', '{ "id": "a3c3d60b-df9e-41d9-b7f5-983008bc1a45", "addressType": "Payment", "desc": "Payment Address", "metadata": { "createdDate": "2021-12-06T01:51:04.321+00:00", "updatedDate": "2021-12-06T01:51:04.321+00:00" } }'); INSERT INTO user_addresstypes VALUES ('b6f4d1c6-0dfa-463c-9534-f49c4f0ae090', 'Claim', 'Claim Address', '{ "id": "b6f4d1c6-0dfa-463c-9534-f49c4f0ae090", "addressType": "Claim", "desc": "Claim Address", "metadata": { "createdDate": "2021-12-06T01:51:04.345+00:00", "updatedDate": "2021-12-06T01:51:04.345+00:00" } }'); INSERT INTO user_addresstypes VALUES ('c42be2ab-c3fd-486c-a1fe-9e5ea0f16198', 'Returns', 'Returns Address', '{ "id": "c42be2ab-c3fd-486c-a1fe-9e5ea0f16198", "addressType": "Returns", "desc": "Returns Address", "metadata": { "createdDate": "2021-12-06T01:51:04.329+00:00", "updatedDate": "2021-12-06T01:51:04.329+00:00" } }'); -- -- TOC entry 4276 (class 0 OID 88216321) -- Dependencies: 521 -- Data for Name: user_groups; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO user_groups VALUES ('3684a786-6671-4268-8ed0-9db82ebca60b', 'Staff Member', 730, 'staff', '{ "id": "3684a786-6671-4268-8ed0-9db82ebca60b", "desc": "Staff Member", "expirationOffsetInDays": 730, "group": "staff", "metadata": { "createdDate": "2021-12-06T01:51:04.234+00:00", "updatedDate": "2021-12-06T01:51:04.234+00:00" } }'); INSERT INTO user_groups VALUES ('503a81cd-6c26-400f-b620-14c08943697c', 'Faculty Member', 365, 'faculty', '{ "id": "503a81cd-6c26-400f-b620-14c08943697c", "desc": "Faculty Member", "expirationOffsetInDays": 365, "group": "faculty", "metadata": { "createdDate": "2021-12-06T01:51:04.258+00:00", "updatedDate": "2021-12-06T01:51:04.258+00:00" } }'); INSERT INTO user_groups VALUES ('ad0bc554-d5bc-463c-85d1-5562127ae91b', 'Graduate Student', NULL, 'graduate', '{ "id": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "desc": "Graduate Student", "group": "graduate", "metadata": { "createdDate": "2021-12-06T01:51:04.278+00:00", "updatedDate": "2021-12-06T01:51:04.278+00:00" } }'); INSERT INTO user_groups VALUES ('bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'Undergraduate Student', NULL, 'undergrad', '{ "id": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "desc": "Undergraduate Student", "group": "undergrad", "metadata": { "createdDate": "2021-12-06T01:51:04.290+00:00", "updatedDate": "2021-12-06T01:51:04.290+00:00" } }'); -- -- TOC entry 4177 (class 0 OID 88214516) -- Dependencies: 422 -- Data for Name: user_users; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO user_users VALUES ('00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4', false, '133143370961512', '2021-12-06 01:51:05.176+00', '2015-04-13 00:00:00+00', '2019-06-20 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.176+00', 'sallie', '{ "id": "00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4", "active": false, "barcode": "133143370961512", "createdDate": "2021-12-06T01:51:05.176+00:00", "departments": [], "enrollmentDate": "2015-04-13T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.172+00:00", "updatedDate": "2021-12-06T01:51:05.172+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "17691 Rodriguez Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Birmingham", "countryId": "US", "postalCode": "85748", "primaryAddress": true, "region": "CO" } ], "dateOfBirth": "2009-07-21T00:00:00.000+00:00", "email": "ahmad@kertzmann-bailey-and-brekke.io", "firstName": "Maiya", "lastName": "Denesik", "middleName": "Noel", "mobilePhone": "(557)093-7575", "phone": "759.693.8557", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.176+00:00", "username": "sallie" }'); INSERT INTO user_users VALUES ('011dc219-6b7f-4d93-ae7f-f512ed651493', false, '897083256223023', '2021-12-06 01:51:05.84+00', '2018-05-06 00:00:00+00', '2019-09-02 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.84+00', 'elmer', '{ "id": "011dc219-6b7f-4d93-ae7f-f512ed651493", "active": false, "barcode": "897083256223023", "createdDate": "2021-12-06T01:51:05.840+00:00", "departments": [], "enrollmentDate": "2018-05-06T00:00:00.000+00:00", "expirationDate": "2019-09-02T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.836+00:00", "updatedDate": "2021-12-06T01:51:05.836+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "69175 Haley Skyway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Marana", "countryId": "US", "postalCode": "02013-0332", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1947-06-23T00:00:00.000+00:00", "email": "monserrat@donnelly-skiles.ge", "firstName": "Lois", "lastName": "Huels", "phone": "(619)645-7533 x5934", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.840+00:00", "username": "elmer" }'); INSERT INTO user_users VALUES ('01b9d72b-9aab-4efd-97a4-d03c1667bf0d', false, '908122635201927', '2021-12-06 01:51:05.104+00', '2017-04-27 00:00:00+00', '2019-05-09 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.104+00', 'rick1', '{ "id": "01b9d72b-9aab-4efd-97a4-d03c1667bf0d", "active": false, "barcode": "908122635201927", "createdDate": "2021-12-06T01:51:05.104+00:00", "departments": [], "enrollmentDate": "2017-04-27T00:00:00.000+00:00", "expirationDate": "2019-05-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.100+00:00", "updatedDate": "2021-12-06T01:51:05.100+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "04686 Heaney River Apt. 311", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Laguna Woods", "countryId": "US", "postalCode": "80182", "primaryAddress": true, "region": "VA" } ], "dateOfBirth": "1952-11-19T00:00:00.000+00:00", "email": "dahlia@koch-hayes.it", "firstName": "Katherine", "lastName": "Denesik", "mobilePhone": "118-374-7507", "phone": "725-093-3336", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.104+00:00", "username": "rick1" }'); INSERT INTO user_users VALUES ('0414af69-f89c-40f2-bea9-a9b5d0a179d4', false, '625911315350411', '2021-12-06 01:51:06.5+00', '2018-09-14 00:00:00+00', '2020-10-28 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.5+00', 'diana', '{ "id": "0414af69-f89c-40f2-bea9-a9b5d0a179d4", "active": false, "barcode": "625911315350411", "createdDate": "2021-12-06T01:51:06.500+00:00", "departments": [], "enrollmentDate": "2018-09-14T00:00:00.000+00:00", "expirationDate": "2020-10-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.497+00:00", "updatedDate": "2021-12-06T01:51:06.497+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "85035 Madonna Plaza", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Springdale", "countryId": "US", "postalCode": "34690-3080", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1987-02-06T00:00:00.000+00:00", "email": "enola@stroman-bergstrom.mt", "firstName": "Kristy", "lastName": "Batz", "middleName": "Andreanne", "phone": "1-990-063-2196 x96861", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.500+00:00", "username": "diana" }'); INSERT INTO user_users VALUES ('046353cf-3963-482c-9792-32ade0a33afa', false, '708746312982146', '2021-12-06 01:51:07.26+00', '2017-09-15 00:00:00+00', '2020-10-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.26+00', 'jorge', '{ "id": "046353cf-3963-482c-9792-32ade0a33afa", "active": false, "barcode": "708746312982146", "createdDate": "2021-12-06T01:51:07.260+00:00", "departments": [], "enrollmentDate": "2017-09-15T00:00:00.000+00:00", "expirationDate": "2020-10-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.257+00:00", "updatedDate": "2021-12-06T01:51:07.257+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "01944 Kavon Coves", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hayward", "countryId": "US", "postalCode": "46183-0875", "primaryAddress": true, "region": "MA" } ], "dateOfBirth": "2003-11-05T00:00:00.000+00:00", "email": "norris@wilderman-brown-and-bayer.aq", "firstName": "Lionel", "lastName": "Schmidt", "middleName": "Bernhard", "phone": "1-866-895-2189 x448", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.260+00:00", "username": "jorge" }'); INSERT INTO user_users VALUES ('04e1cda1-a049-463b-97af-98c59a8fd806', false, '317737116591409', '2021-12-06 01:51:05.795+00', '2016-05-01 00:00:00+00', '2019-04-22 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.795+00', 'nicola', '{ "id": "04e1cda1-a049-463b-97af-98c59a8fd806", "active": false, "barcode": "317737116591409", "createdDate": "2021-12-06T01:51:05.795+00:00", "departments": [], "enrollmentDate": "2016-05-01T00:00:00.000+00:00", "expirationDate": "2019-04-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.791+00:00", "updatedDate": "2021-12-06T01:51:05.791+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "10026 Williamson Ridge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Sacramento", "countryId": "US", "postalCode": "71689", "primaryAddress": true, "region": "MA" } ], "dateOfBirth": "1948-09-27T00:00:00.000+00:00", "email": "syble@deckow-and-sons.mz", "firstName": "Cristian", "lastName": "Yost", "middleName": "Gregory", "mobilePhone": "679-310-5840 x445", "phone": "(731)414-4227", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.795+00:00", "username": "nicola" }'); INSERT INTO user_users VALUES ('066795ce-4938-48f2-9411-f3f922b51e1c', false, '562915263776012', '2021-12-06 01:51:07.477+00', '2017-02-05 00:00:00+00', '2019-05-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.477+00', 'arlo', '{ "id": "066795ce-4938-48f2-9411-f3f922b51e1c", "active": false, "barcode": "562915263776012", "createdDate": "2021-12-06T01:51:07.477+00:00", "departments": [], "enrollmentDate": "2017-02-05T00:00:00.000+00:00", "expirationDate": "2019-05-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.474+00:00", "updatedDate": "2021-12-06T01:51:07.474+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "36432 Albina Points", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Buena Park", "countryId": "US", "postalCode": "11852-6961", "primaryAddress": true, "region": "FM" } ], "dateOfBirth": "1986-02-09T00:00:00.000+00:00", "email": "jaylen@herman-jones-and-daniel.gi", "firstName": "Cortney", "lastName": "Lakin", "middleName": "Carlo", "phone": "375-322-8828 x762", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.477+00:00", "username": "arlo" }'); INSERT INTO user_users VALUES ('07066a1f-1fb7-4793-bbca-7cd8d1ea90ab', false, '950908851771803', '2021-12-06 01:51:07.066+00', '2018-03-12 00:00:00+00', '2019-09-01 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.066+00', 'vergie', '{ "id": "07066a1f-1fb7-4793-bbca-7cd8d1ea90ab", "active": false, "barcode": "950908851771803", "createdDate": "2021-12-06T01:51:07.066+00:00", "departments": [], "enrollmentDate": "2018-03-12T00:00:00.000+00:00", "expirationDate": "2019-09-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.063+00:00", "updatedDate": "2021-12-06T01:51:07.063+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "96132 Gutkowski Extensions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Monrovia", "countryId": "US", "postalCode": "20851", "primaryAddress": true, "region": "HI" } ], "dateOfBirth": "1998-08-02T00:00:00.000+00:00", "email": "roger@gottlieb-smith.am", "firstName": "Madisyn", "lastName": "McClure", "middleName": "Elise", "mobilePhone": "(807)609-7008 x01814", "phone": "(369)441-1512 x334", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.066+00:00", "username": "vergie" }'); INSERT INTO user_users VALUES ('08522da4-668a-4450-a769-3abfae5678ad', false, '548755241194417', '2021-12-06 01:51:06.104+00', '2016-07-12 00:00:00+00', '2020-03-30 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.104+00', 'johan', '{ "id": "08522da4-668a-4450-a769-3abfae5678ad", "active": false, "barcode": "548755241194417", "createdDate": "2021-12-06T01:51:06.104+00:00", "departments": [], "enrollmentDate": "2016-07-12T00:00:00.000+00:00", "expirationDate": "2020-03-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.101+00:00", "updatedDate": "2021-12-06T01:51:06.101+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "32796 Kuhn Drive Suite 950", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Bowling Green", "countryId": "US", "postalCode": "52150-4432", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1996-07-05T00:00:00.000+00:00", "email": "werner@wolff-hauck.lk", "firstName": "Aleen", "lastName": "Braun", "phone": "1-029-555-1699", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.104+00:00", "username": "johan" }'); INSERT INTO user_users VALUES ('0a246f61-d85f-42b6-8dcc-48d25a46690b', false, '855788620413307', '2021-12-06 01:51:04.637+00', '2015-04-08 00:00:00+00', '2019-08-20 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.637+00', 'maxine', '{ "id": "0a246f61-d85f-42b6-8dcc-48d25a46690b", "active": false, "barcode": "855788620413307", "createdDate": "2021-12-06T01:51:04.637+00:00", "departments": [], "enrollmentDate": "2015-04-08T00:00:00.000+00:00", "expirationDate": "2019-08-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.633+00:00", "updatedDate": "2021-12-06T01:51:04.633+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "86731 Conroy Walk #607", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Palma", "countryId": "US", "postalCode": "93045", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1976-01-10T00:00:00.000+00:00", "email": "sasha@langworth-group.nm.us", "firstName": "Roxane", "lastName": "Schamberger", "middleName": "Suzanne", "mobilePhone": "(826)811-6221 x8553", "phone": "759.749.2624 x5524", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.637+00:00", "username": "maxine" }'); INSERT INTO user_users VALUES ('0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c', false, '28080213476560', '2021-12-06 01:51:06.711+00', '2016-01-29 00:00:00+00', '2019-07-21 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.711+00', 'garnet', '{ "id": "0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c", "active": false, "barcode": "28080213476560", "createdDate": "2021-12-06T01:51:06.711+00:00", "departments": [], "enrollmentDate": "2016-01-29T00:00:00.000+00:00", "expirationDate": "2019-07-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.708+00:00", "updatedDate": "2021-12-06T01:51:06.708+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "35813 Suite A", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Juneau", "countryId": "US", "postalCode": "54614-8352", "primaryAddress": true, "region": "NE" } ], "dateOfBirth": "1997-04-20T00:00:00.000+00:00", "email": "dessie@zboncak-rohan.wv.us", "firstName": "Donny", "lastName": "Kiehn", "mobilePhone": "236.785.4303", "phone": "1-372-106-2828", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.711+00:00", "username": "garnet" }'); INSERT INTO user_users VALUES ('0aa0c321-9974-4a67-92dc-bca029d093e2', false, '681175740267637', '2021-12-06 01:51:07.17+00', '2017-06-09 00:00:00+00', '2019-11-17 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.17+00', 'natalia', '{ "id": "0aa0c321-9974-4a67-92dc-bca029d093e2", "active": false, "barcode": "681175740267637", "createdDate": "2021-12-06T01:51:07.170+00:00", "departments": [], "enrollmentDate": "2017-06-09T00:00:00.000+00:00", "expirationDate": "2019-11-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.166+00:00", "updatedDate": "2021-12-06T01:51:07.166+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "45639 Graham Club", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Tok", "countryId": "US", "postalCode": "26347-1664", "primaryAddress": true, "region": "VT" } ], "dateOfBirth": "2011-01-17T00:00:00.000+00:00", "email": "arlie@schultz-franecki-and-kohler.org", "firstName": "Franco", "lastName": "Koss", "middleName": "Guadalupe", "mobilePhone": "969.479.2172", "phone": "201-462-5010 x7332", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.170+00:00", "username": "natalia" }'); INSERT INTO user_users VALUES ('0ab0736b-57ba-404c-9b17-d94de2cf4d9a', false, '426841866444480', '2021-12-06 01:51:04.692+00', '2018-08-06 00:00:00+00', '2019-05-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.692+00', 'zella', '{ "id": "0ab0736b-57ba-404c-9b17-d94de2cf4d9a", "active": false, "barcode": "426841866444480", "createdDate": "2021-12-06T01:51:04.692+00:00", "departments": [], "enrollmentDate": "2018-08-06T00:00:00.000+00:00", "expirationDate": "2019-05-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.688+00:00", "updatedDate": "2021-12-06T01:51:04.688+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "28088 Roselyn Port Suite 081", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Montebello", "countryId": "US", "postalCode": "67868-9596", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "2009-11-12T00:00:00.000+00:00", "email": "genoveva@reynolds-buckridge.sn", "firstName": "Hildegard", "lastName": "Rolfson", "middleName": "Katrine", "mobilePhone": "217-470-4457", "phone": "017.558.7388 x62049", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.692+00:00", "username": "zella" }'); INSERT INTO user_users VALUES ('0b6d1482-de21-4643-ae5b-90b4c7164c4a', false, '231436162840271', '2021-12-06 01:51:07.66+00', '2015-06-15 00:00:00+00', '2020-04-30 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.66+00', 'myrtice', '{ "id": "0b6d1482-de21-4643-ae5b-90b4c7164c4a", "active": false, "barcode": "231436162840271", "createdDate": "2021-12-06T01:51:07.660+00:00", "departments": [], "enrollmentDate": "2015-06-15T00:00:00.000+00:00", "expirationDate": "2020-04-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.658+00:00", "updatedDate": "2021-12-06T01:51:07.658+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "08150 Prince Motorway Suite 676", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Barbara", "countryId": "US", "postalCode": "28063-5444", "primaryAddress": true, "region": "PA" } ], "dateOfBirth": "2012-03-10T00:00:00.000+00:00", "email": "daisy@schulist-fisher.il.us", "firstName": "Felton", "lastName": "Schuster", "phone": "922-735-6119 x64894", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.660+00:00", "username": "myrtice" }'); INSERT INTO user_users VALUES ('0cce8c30-0a0d-4ebb-a107-cf47ad35eafb', false, '610028044962529', '2021-12-06 01:51:06.581+00', '2017-07-29 00:00:00+00', '2020-09-04 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.581+00', 'meredith', '{ "id": "0cce8c30-0a0d-4ebb-a107-cf47ad35eafb", "active": false, "barcode": "610028044962529", "createdDate": "2021-12-06T01:51:06.581+00:00", "departments": [], "enrollmentDate": "2017-07-29T00:00:00.000+00:00", "expirationDate": "2020-09-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.578+00:00", "updatedDate": "2021-12-06T01:51:06.578+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "02440 Department N", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Paramount", "countryId": "US", "postalCode": "19593-9691", "primaryAddress": true, "region": "MA" } ], "dateOfBirth": "1947-07-25T00:00:00.000+00:00", "email": "valentin@murphy-llc.az.us", "firstName": "Finn", "lastName": "McKenzie", "middleName": "Laney", "mobilePhone": "1-564-133-0013", "phone": "666-338-9978 x09222", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.581+00:00", "username": "meredith" }'); INSERT INTO user_users VALUES ('0d6d38bf-aaf6-4976-a2ce-7ff787195982', false, '121881123661538', '2021-12-06 01:51:06.965+00', '2017-07-06 00:00:00+00', '2019-05-13 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.965+00', 'hans', '{ "id": "0d6d38bf-aaf6-4976-a2ce-7ff787195982", "active": false, "barcode": "121881123661538", "createdDate": "2021-12-06T01:51:06.965+00:00", "departments": [], "enrollmentDate": "2017-07-06T00:00:00.000+00:00", "expirationDate": "2019-05-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.962+00:00", "updatedDate": "2021-12-06T01:51:06.962+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "84028 Floor 77", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Moreno Valley", "countryId": "US", "postalCode": "39331-8766", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1989-05-26T00:00:00.000+00:00", "email": "keaton@beahan-mclaughlin.jp", "firstName": "Janet", "lastName": "Hettinger", "middleName": "Samantha", "mobilePhone": "(601)986-2680", "phone": "(039)225-2948", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.965+00:00", "username": "hans" }'); INSERT INTO user_users VALUES ('0db6912a-40c0-41db-8d15-be05ff851f96', false, '669055896442806', '2021-12-06 01:51:07.726+00', '2015-07-27 00:00:00+00', '2019-07-07 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.726+00', 'norberto', '{ "id": "0db6912a-40c0-41db-8d15-be05ff851f96", "active": false, "barcode": "669055896442806", "createdDate": "2021-12-06T01:51:07.726+00:00", "departments": [], "enrollmentDate": "2015-07-27T00:00:00.000+00:00", "expirationDate": "2019-07-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.723+00:00", "updatedDate": "2021-12-06T01:51:07.723+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "81682 Maggio Fields", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Ventura", "countryId": "US", "postalCode": "14348-9333", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1990-07-02T00:00:00.000+00:00", "email": "adrianna@keeling-and-sons.je", "firstName": "Deion", "lastName": "Schneider", "middleName": "Paris", "mobilePhone": "663-550-2837", "phone": "550-927-1692", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.726+00:00", "username": "norberto" }'); INSERT INTO user_users VALUES ('0e64adb1-36ba-4cdd-9909-047612b7629e', false, '298923774959572', '2021-12-06 01:51:05.959+00', '2018-09-30 00:00:00+00', '2020-02-25 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.959+00', 'cecil', '{ "id": "0e64adb1-36ba-4cdd-9909-047612b7629e", "active": false, "barcode": "298923774959572", "createdDate": "2021-12-06T01:51:05.959+00:00", "departments": [], "enrollmentDate": "2018-09-30T00:00:00.000+00:00", "expirationDate": "2020-02-25T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.956+00:00", "updatedDate": "2021-12-06T01:51:05.956+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "25818 Hansen Drives", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Burbank", "countryId": "US", "postalCode": "04214", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1960-10-20T00:00:00.000+00:00", "email": "colby@kessler-inc.py", "firstName": "Phyllis", "lastName": "Koepp", "mobilePhone": "1-034-282-8488", "phone": "606.758.4172 x7292", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.959+00:00", "username": "cecil" }'); INSERT INTO user_users VALUES ('0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4', false, '401285957986662', '2021-12-06 01:51:05.91+00', '2015-09-13 00:00:00+00', '2019-05-05 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.91+00', 'aileen', '{ "id": "0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4", "active": false, "barcode": "401285957986662", "createdDate": "2021-12-06T01:51:05.910+00:00", "departments": [], "enrollmentDate": "2015-09-13T00:00:00.000+00:00", "expirationDate": "2019-05-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.906+00:00", "updatedDate": "2021-12-06T01:51:05.906+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "21036 Building D", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Rohnert Park", "countryId": "US", "postalCode": "43393-3721", "primaryAddress": true, "region": "FM" } ], "dateOfBirth": "1972-10-10T00:00:00.000+00:00", "email": "adrian@moen-purdy.mk", "firstName": "Charlotte", "lastName": "Kulas", "middleName": "Lina", "mobilePhone": "543-497-0914", "phone": "079-330-2177", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.910+00:00", "username": "aileen" }'); INSERT INTO user_users VALUES ('10b4d8b7-9a05-4dfc-a39d-1086ba36b122', true, '1638756085333931872', '2021-12-06 02:01:25.343+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:25.343+00', 'acq-staff', '{ "id": "10b4d8b7-9a05-4dfc-a39d-1086ba36b122", "active": true, "barcode": "1638756085333931872", "createdDate": "2021-12-06T02:01:25.343+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.335+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.335+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "acq-staff", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:25.343+00:00", "username": "acq-staff" }'); INSERT INTO user_users VALUES ('10b9e72e-adff-5ca0-b446-1b441afcb3ba', true, NULL, '2021-12-06 01:59:57.71+00', NULL, NULL, NULL, NULL, '2021-12-06 01:59:57.71+00', 'diku', '{ "id": "10b9e72e-adff-5ca0-b446-1b441afcb3ba", "active": true, "createdDate": "2021-12-06T01:59:57.710+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T01:59:57.708+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T01:59:57.708+00:00" }, "personal": { "addresses": [], "firstName": "EDGE", "lastName": "SYSTEM" }, "proxyFor": [], "updatedDate": "2021-12-06T01:59:57.710+00:00", "username": "diku" }'); INSERT INTO user_users VALUES ('10cb9367-c095-4872-9add-8aecdf339dd4', false, '824722790985458', '2021-12-06 01:51:08.31+00', '2015-10-07 00:00:00+00', '2020-08-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.31+00', 'maribel', '{ "id": "10cb9367-c095-4872-9add-8aecdf339dd4", "active": false, "barcode": "824722790985458", "createdDate": "2021-12-06T01:51:08.310+00:00", "departments": [], "enrollmentDate": "2015-10-07T00:00:00.000+00:00", "expirationDate": "2020-08-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.307+00:00", "updatedDate": "2021-12-06T01:51:08.307+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "62959 Gutmann Skyway Apt. 667", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "West Memphis", "countryId": "US", "postalCode": "50594", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1963-03-29T00:00:00.000+00:00", "email": "evans@kohler-west.aero", "firstName": "Ariane", "lastName": "Becker", "mobilePhone": "(743)529-9680", "phone": "1-064-285-2113", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.310+00:00", "username": "maribel" }'); INSERT INTO user_users VALUES ('11dd4634-e4a9-45f0-9683-fa4d7a8f9728', false, '668365498167', '2021-12-06 01:51:08.407+00', '2015-12-06 00:00:00+00', '2020-06-29 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.407+00', 'isac', '{ "id": "11dd4634-e4a9-45f0-9683-fa4d7a8f9728", "active": false, "barcode": "668365498167", "createdDate": "2021-12-06T01:51:08.407+00:00", "departments": [], "enrollmentDate": "2015-12-06T00:00:00.000+00:00", "expirationDate": "2020-06-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.405+00:00", "updatedDate": "2021-12-06T01:51:08.405+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "30190 McKenzie Mission Apt. 317", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Tucson", "countryId": "US", "postalCode": "51117", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "2002-01-31T00:00:00.000+00:00", "email": "amelia@schultz-nitzsche.cc", "firstName": "Vickie", "lastName": "Denesik", "middleName": "Ronny", "mobilePhone": "(189)086-8007", "phone": "1-935-908-1543 x576", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.407+00:00", "username": "isac" }'); INSERT INTO user_users VALUES ('1200edd1-4b53-43e7-a9b7-fc590ab1c8d9', false, '123121221025275', '2021-12-06 01:51:07.302+00', '2018-01-05 00:00:00+00', '2020-07-01 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.302+00', 'edna', '{ "id": "1200edd1-4b53-43e7-a9b7-fc590ab1c8d9", "active": false, "barcode": "123121221025275", "createdDate": "2021-12-06T01:51:07.302+00:00", "departments": [], "enrollmentDate": "2018-01-05T00:00:00.000+00:00", "expirationDate": "2020-07-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.299+00:00", "updatedDate": "2021-12-06T01:51:07.299+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "00830 Greta Ramp Apt. 852", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bakersfield", "countryId": "US", "postalCode": "99846-5104", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1957-04-12T00:00:00.000+00:00", "email": "boris@schimmel-oberbrunner.eh", "firstName": "Reina", "lastName": "Bayer", "middleName": "Dayana", "mobilePhone": "441.909.9397 x8076", "phone": "675-694-9085", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.302+00:00", "username": "edna" }'); INSERT INTO user_users VALUES ('134b94ee-e128-4a71-8884-988c2c0dfcde', true, '1638756085603400826', '2021-12-06 02:01:25.609+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:25.609+00', 'cataloger', '{ "id": "134b94ee-e128-4a71-8884-988c2c0dfcde", "active": true, "barcode": "1638756085603400826", "createdDate": "2021-12-06T02:01:25.609+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.606+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.606+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "cataloger", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:25.609+00:00", "username": "cataloger" }'); INSERT INTO user_users VALUES ('137d4cbd-00ff-4332-97cb-88373fa9b556', false, '791638293271066', '2021-12-06 01:51:05.616+00', '2015-10-23 00:00:00+00', '2019-10-04 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.616+00', 'elta', '{ "id": "137d4cbd-00ff-4332-97cb-88373fa9b556", "active": false, "barcode": "791638293271066", "createdDate": "2021-12-06T01:51:05.616+00:00", "departments": [], "enrollmentDate": "2015-10-23T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.613+00:00", "updatedDate": "2021-12-06T01:51:05.613+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "04307 Wilburn Courts", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Long Beach", "countryId": "US", "postalCode": "65853-6624", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "1953-04-05T00:00:00.000+00:00", "email": "dejon@wilkinson-ritchie-and-heaney.ge", "firstName": "Aiyana", "lastName": "Marks", "middleName": "Annie", "phone": "(446)134-4449 x6505", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.616+00:00", "username": "elta" }'); INSERT INTO user_users VALUES ('145f7115-f78f-4a9d-a57c-fcbca7436220', true, NULL, '2021-12-06 01:52:28.654+00', NULL, NULL, NULL, NULL, '2021-12-06 01:52:28.654+00', 'mod-search', '{ "id": "145f7115-f78f-4a9d-a57c-fcbca7436220", "active": true, "createdDate": "2021-12-06T01:52:28.654+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:52:28.647+00:00", "updatedDate": "2021-12-06T01:52:28.647+00:00" }, "personal": { "addresses": [], "lastName": "System" }, "proxyFor": [], "updatedDate": "2021-12-06T01:52:28.654+00:00", "username": "mod-search" }'); INSERT INTO user_users VALUES ('15b9deaf-1a59-4396-a8e5-d6c7e5b79b28', false, '190102646879172', '2021-12-06 01:51:07.114+00', '2017-06-30 00:00:00+00', '2019-10-29 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.114+00', 'nova', '{ "id": "15b9deaf-1a59-4396-a8e5-d6c7e5b79b28", "active": false, "barcode": "190102646879172", "createdDate": "2021-12-06T01:51:07.114+00:00", "departments": [], "enrollmentDate": "2017-06-30T00:00:00.000+00:00", "expirationDate": "2019-10-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.110+00:00", "updatedDate": "2021-12-06T01:51:07.110+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "03092 Slip 663", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Toledo", "countryId": "US", "postalCode": "04181", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "2009-05-23T00:00:00.000+00:00", "email": "sammie@willms-inc.bz", "firstName": "Demond", "lastName": "Fay", "middleName": "Elias", "mobilePhone": "1-654-336-4763 x993", "phone": "380.490.6284 x3204", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.114+00:00", "username": "nova" }'); INSERT INTO user_users VALUES ('15fa3eda-f495-496c-b21e-4f281b38a3ef', false, '971460036650480', '2021-12-06 01:51:06.181+00', '2017-10-23 00:00:00+00', '2020-03-22 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.181+00', 'koss', '{ "id": "15fa3eda-f495-496c-b21e-4f281b38a3ef", "active": false, "barcode": "971460036650480", "createdDate": "2021-12-06T01:51:06.181+00:00", "departments": [], "enrollmentDate": "2017-10-23T00:00:00.000+00:00", "expirationDate": "2020-03-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.178+00:00", "updatedDate": "2021-12-06T01:51:06.178+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "27971 Floor 5", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Hoover", "countryId": "US", "postalCode": "54548-8284", "primaryAddress": true, "region": "VA" } ], "dateOfBirth": "1948-04-28T00:00:00.000+00:00", "email": "esteban@schultz-hettinger.in.us", "firstName": "Narciso", "lastName": "Koss", "mobilePhone": "(985)426-5134 x560", "phone": "1-141-644-4590", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.181+00:00", "username": "koss" }'); INSERT INTO user_users VALUES ('16757efe-86ac-40bb-bdd6-fafee02463c7', false, '509575459201574', '2021-12-06 01:51:04.518+00', '2018-04-13 00:00:00+00', '2020-01-11 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.518+00', 'zena', '{ "id": "16757efe-86ac-40bb-bdd6-fafee02463c7", "active": false, "barcode": "509575459201574", "createdDate": "2021-12-06T01:51:04.518+00:00", "departments": [], "enrollmentDate": "2018-04-13T00:00:00.000+00:00", "expirationDate": "2020-01-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.512+00:00", "updatedDate": "2021-12-06T01:51:04.512+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "65435 Retta Spur", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Valdez", "countryId": "US", "postalCode": "69583-4512", "primaryAddress": true, "region": "AL" } ], "dateOfBirth": "1996-03-07T00:00:00.000+00:00", "email": "myah@boyle-will.um", "firstName": "Dagmar", "lastName": "Borer", "mobilePhone": "111.047.0312", "phone": "682.593.8052", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.518+00:00", "username": "zena" }'); INSERT INTO user_users VALUES ('169aeb77-32f6-4f60-a2c0-db791b96e411', false, '539221276746598', '2021-12-06 01:51:07.217+00', '2018-07-12 00:00:00+00', '2019-10-12 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.217+00', 'gay', '{ "id": "169aeb77-32f6-4f60-a2c0-db791b96e411", "active": false, "barcode": "539221276746598", "createdDate": "2021-12-06T01:51:07.217+00:00", "departments": [], "enrollmentDate": "2018-07-12T00:00:00.000+00:00", "expirationDate": "2019-10-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.214+00:00", "updatedDate": "2021-12-06T01:51:07.214+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "17104 Pacocha View Suite 898", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hollister", "countryId": "US", "postalCode": "48294-3956", "primaryAddress": true, "region": "CO" } ], "dateOfBirth": "2002-10-06T00:00:00.000+00:00", "email": "kali@howell-bashirian-and-hackett.ls", "firstName": "Ignatius", "lastName": "Luettgen", "middleName": "Tyrel", "mobilePhone": "(095)836-6474 x038", "phone": "659.537.4986 x36724", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.217+00:00", "username": "gay" }'); INSERT INTO user_users VALUES ('17b26a4a-e481-4b86-8949-5ef6570eb622', false, '400008433192770', '2021-12-06 01:51:07.501+00', '2015-06-02 00:00:00+00', '2019-04-24 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.501+00', 'earnestine', '{ "id": "17b26a4a-e481-4b86-8949-5ef6570eb622", "active": false, "barcode": "400008433192770", "createdDate": "2021-12-06T01:51:07.501+00:00", "departments": [], "enrollmentDate": "2015-06-02T00:00:00.000+00:00", "expirationDate": "2019-04-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.499+00:00", "updatedDate": "2021-12-06T01:51:07.499+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "72634 Valentin Forges", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Compton", "countryId": "US", "postalCode": "56306", "primaryAddress": true, "region": "MH" } ], "dateOfBirth": "1974-10-29T00:00:00.000+00:00", "email": "mariam@nitzsche-pacocha.fk", "firstName": "Earline", "lastName": "Predovic", "middleName": "Wilburn", "phone": "877-400-5507", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.501+00:00", "username": "earnestine" }'); INSERT INTO user_users VALUES ('197f8e91-5110-4487-ad36-b3d21a66059d', false, '110408495506241', '2021-12-06 01:51:07.704+00', '2015-12-16 00:00:00+00', '2020-10-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.704+00', 'kirk', '{ "id": "197f8e91-5110-4487-ad36-b3d21a66059d", "active": false, "barcode": "110408495506241", "createdDate": "2021-12-06T01:51:07.704+00:00", "departments": [], "enrollmentDate": "2015-12-16T00:00:00.000+00:00", "expirationDate": "2020-10-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.702+00:00", "updatedDate": "2021-12-06T01:51:07.702+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "80277 Wilkinson Rapids #211", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Mentor", "countryId": "US", "postalCode": "56741-6759", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1990-06-16T00:00:00.000+00:00", "email": "melody@zieme-green.lr", "firstName": "Jordane", "lastName": "Koss", "middleName": "Dolores", "mobilePhone": "(589)923-3094 x7774", "phone": "(215)223-7640 x150", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.704+00:00", "username": "kirk" }'); INSERT INTO user_users VALUES ('1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8', false, '379497554513687', '2021-12-06 01:51:06.921+00', '2016-01-02 00:00:00+00', '2019-12-18 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.921+00', 'lon', '{ "id": "1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8", "active": false, "barcode": "379497554513687", "createdDate": "2021-12-06T01:51:06.921+00:00", "departments": [], "enrollmentDate": "2016-01-02T00:00:00.000+00:00", "expirationDate": "2019-12-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.918+00:00", "updatedDate": "2021-12-06T01:51:06.918+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "38099 Alexane Rapids #949", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Hamilton", "countryId": "US", "postalCode": "40284", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1982-12-30T00:00:00.000+00:00", "email": "caden@corkery-christiansen-and-frami.ph", "firstName": "Anne", "lastName": "Grimes", "phone": "212-246-4921 x835", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.921+00:00", "username": "lon" }'); INSERT INTO user_users VALUES ('1b648069-8563-41c8-afc0-d8359f11503c', false, '678545225007717', '2021-12-06 01:51:06.864+00', '2015-07-26 00:00:00+00', '2020-01-20 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.864+00', 'rodolfo', '{ "id": "1b648069-8563-41c8-afc0-d8359f11503c", "active": false, "barcode": "678545225007717", "createdDate": "2021-12-06T01:51:06.864+00:00", "departments": [], "enrollmentDate": "2015-07-26T00:00:00.000+00:00", "expirationDate": "2020-01-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.860+00:00", "updatedDate": "2021-12-06T01:51:06.860+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "67959 Marvin Canyon", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lynwood", "countryId": "US", "postalCode": "21921", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1988-02-15T00:00:00.000+00:00", "email": "adelbert@little-and-sons.km", "firstName": "Winfield", "lastName": "Olson", "mobilePhone": "538.009.3963", "phone": "1-673-699-9908 x3287", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.864+00:00", "username": "rodolfo" }'); INSERT INTO user_users VALUES ('1bcfd501-232e-47da-a511-fdd29ae3d692', false, '613459431184452', '2021-12-06 01:51:07.894+00', '2018-01-09 00:00:00+00', '2020-10-07 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.894+00', 'broderick', '{ "id": "1bcfd501-232e-47da-a511-fdd29ae3d692", "active": false, "barcode": "613459431184452", "createdDate": "2021-12-06T01:51:07.894+00:00", "departments": [], "enrollmentDate": "2018-01-09T00:00:00.000+00:00", "expirationDate": "2020-10-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.891+00:00", "updatedDate": "2021-12-06T01:51:07.891+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "81094 Upper", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Florence", "countryId": "US", "postalCode": "62905-4613", "primaryAddress": true, "region": "SD" } ], "dateOfBirth": "1998-06-17T00:00:00.000+00:00", "email": "berneice@rau-and-sons.do", "firstName": "Gay", "lastName": "Ruecker", "middleName": "Adelbert", "mobilePhone": "396-791-1800", "phone": "1-120-568-3150 x6347", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.894+00:00", "username": "broderick" }'); INSERT INTO user_users VALUES ('1be7f410-6ec3-4e88-ac25-0f8d8c63274d', false, '406086566903262', '2021-12-06 01:51:07.715+00', '2017-05-25 00:00:00+00', '2020-01-12 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.715+00', 'marilyne', '{ "id": "1be7f410-6ec3-4e88-ac25-0f8d8c63274d", "active": false, "barcode": "406086566903262", "createdDate": "2021-12-06T01:51:07.715+00:00", "departments": [], "enrollmentDate": "2017-05-25T00:00:00.000+00:00", "expirationDate": "2020-01-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.712+00:00", "updatedDate": "2021-12-06T01:51:07.712+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "40975 Nolan Streets", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Bell", "countryId": "US", "postalCode": "03426-7916", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "1962-03-27T00:00:00.000+00:00", "email": "stan@greenfelder-and-sons.us", "firstName": "Ruby", "lastName": "Kuhlman", "phone": "1-571-266-1145 x226", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.715+00:00", "username": "marilyne" }'); INSERT INTO user_users VALUES ('1c65f9c5-5970-48bb-aa72-82ef96fc145e', false, '698898127008508', '2021-12-06 01:51:07.011+00', '2018-01-13 00:00:00+00', '2019-05-20 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.011+00', 'josianne', '{ "id": "1c65f9c5-5970-48bb-aa72-82ef96fc145e", "active": false, "barcode": "698898127008508", "createdDate": "2021-12-06T01:51:07.011+00:00", "departments": [], "enrollmentDate": "2018-01-13T00:00:00.000+00:00", "expirationDate": "2019-05-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.008+00:00", "updatedDate": "2021-12-06T01:51:07.008+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "74541 Wuckert Corner #072", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Kettering", "countryId": "US", "postalCode": "43631-4130", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "2007-04-23T00:00:00.000+00:00", "email": "fleta@okuneva-group.tr", "firstName": "Chet", "lastName": "Koss", "phone": "1-968-830-7181", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.011+00:00", "username": "josianne" }'); INSERT INTO user_users VALUES ('1db3d6c7-6ac5-4b3c-b860-deb2df449736', false, '38533358444816', '2021-12-06 01:51:05.723+00', '2016-01-22 00:00:00+00', '2020-12-06 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.723+00', 'haven', '{ "id": "1db3d6c7-6ac5-4b3c-b860-deb2df449736", "active": false, "barcode": "38533358444816", "createdDate": "2021-12-06T01:51:05.723+00:00", "departments": [], "enrollmentDate": "2016-01-22T00:00:00.000+00:00", "expirationDate": "2020-12-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.719+00:00", "updatedDate": "2021-12-06T01:51:05.719+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "64633 Rohan Junctions Apt. 056", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Vernon", "countryId": "US", "postalCode": "66957-2784", "primaryAddress": true, "region": "AA" } ], "dateOfBirth": "1965-03-30T00:00:00.000+00:00", "email": "hayley@carter-nikolaus-and-shanahan.sc", "firstName": "Destany", "lastName": "Skiles", "mobilePhone": "(553)742-9289 x3797", "phone": "726.878.7734 x07859", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.723+00:00", "username": "haven" }'); INSERT INTO user_users VALUES ('1dbc9318-9718-4e9d-b32a-6684cf258910', false, '310215644261340', '2021-12-06 01:51:06.989+00', '2016-10-19 00:00:00+00', '2019-04-18 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.989+00', 'jillian', '{ "id": "1dbc9318-9718-4e9d-b32a-6684cf258910", "active": false, "barcode": "310215644261340", "createdDate": "2021-12-06T01:51:06.989+00:00", "departments": [], "enrollmentDate": "2016-10-19T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.986+00:00", "updatedDate": "2021-12-06T01:51:06.986+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "46517 Frami Prairie Apt. 523", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bakersfield", "countryId": "US", "postalCode": "90895-6823", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1947-08-27T00:00:00.000+00:00", "email": "dorthy@reichert-harris.sd.us", "firstName": "Yasmine", "lastName": "Prohaska", "middleName": "Karlee", "phone": "458.172.4715", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.989+00:00", "username": "jillian" }'); INSERT INTO user_users VALUES ('1dbf36ab-bba6-4725-8456-bda646796dd1', false, '81579696113021', '2021-12-06 01:51:07.341+00', '2018-12-04 00:00:00+00', '2020-03-07 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.341+00', 'vivienne', '{ "id": "1dbf36ab-bba6-4725-8456-bda646796dd1", "active": false, "barcode": "81579696113021", "createdDate": "2021-12-06T01:51:07.341+00:00", "departments": [], "enrollmentDate": "2018-12-04T00:00:00.000+00:00", "expirationDate": "2020-03-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.338+00:00", "updatedDate": "2021-12-06T01:51:07.338+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "06865 Wisozk Overpass", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Elkhart", "countryId": "US", "postalCode": "31438-6744", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "2008-02-20T00:00:00.000+00:00", "email": "minerva@lebsack-group.mw", "firstName": "Jaleel", "lastName": "Hirthe", "mobilePhone": "1-267-394-1592 x833", "phone": "1-339-245-0353 x4993", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.341+00:00", "username": "vivienne" }'); INSERT INTO user_users VALUES ('1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18', false, '363198143212056', '2021-12-06 01:51:07.573+00', '2015-07-02 00:00:00+00', '2020-08-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.573+00', 'noelia', '{ "id": "1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18", "active": false, "barcode": "363198143212056", "createdDate": "2021-12-06T01:51:07.573+00:00", "departments": [], "enrollmentDate": "2015-07-02T00:00:00.000+00:00", "expirationDate": "2020-08-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.570+00:00", "updatedDate": "2021-12-06T01:51:07.570+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "32477 Brigitte Burg", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hoover", "countryId": "US", "postalCode": "33038-7299", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "1982-01-05T00:00:00.000+00:00", "email": "audie@johns-llc.my", "firstName": "Liam", "lastName": "Wiza", "mobilePhone": "553-544-3842", "phone": "864.379.8305 x7407", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.573+00:00", "username": "noelia" }'); INSERT INTO user_users VALUES ('1f2608df-ff79-4576-b578-14627bbe87fa', false, '591740048987109', '2021-12-06 01:51:08.117+00', '2018-12-17 00:00:00+00', '2019-10-30 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.117+00', 'cleta', '{ "id": "1f2608df-ff79-4576-b578-14627bbe87fa", "active": false, "barcode": "591740048987109", "createdDate": "2021-12-06T01:51:08.117+00:00", "departments": [], "enrollmentDate": "2018-12-17T00:00:00.000+00:00", "expirationDate": "2019-10-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.114+00:00", "updatedDate": "2021-12-06T01:51:08.114+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "30344 Alba Shoal", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Forrest City", "countryId": "US", "postalCode": "49987-9145", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "2009-08-01T00:00:00.000+00:00", "email": "jackie@kuhlman-and-sons.cs", "firstName": "Katrina", "lastName": "Cartwright", "middleName": "Jean", "mobilePhone": "007.454.5835", "phone": "461-124-2529 x456", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.117+00:00", "username": "cleta" }'); INSERT INTO user_users VALUES ('201be44f-2f29-47af-85da-2cbfc72ac29e', false, '775849269788032', '2021-12-06 01:51:07.737+00', '2016-01-30 00:00:00+00', '2021-01-28 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.737+00', 'winnifred', '{ "id": "201be44f-2f29-47af-85da-2cbfc72ac29e", "active": false, "barcode": "775849269788032", "createdDate": "2021-12-06T01:51:07.737+00:00", "departments": [], "enrollmentDate": "2016-01-30T00:00:00.000+00:00", "expirationDate": "2021-01-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.734+00:00", "updatedDate": "2021-12-06T01:51:07.734+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "31306 Katelynn Crescent", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Roseville", "countryId": "US", "postalCode": "93784-5355", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "2000-04-02T00:00:00.000+00:00", "email": "magdalen@powlowski-davis.cv", "firstName": "Katlynn", "lastName": "Christiansen", "middleName": "May", "phone": "277-585-0295 x07776", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.737+00:00", "username": "winnifred" }'); INSERT INTO user_users VALUES ('2075c729-a9b8-43db-860c-60a3cc31a949', false, '496915951064778', '2021-12-06 01:51:07.431+00', '2015-07-05 00:00:00+00', '2020-06-05 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.431+00', 'freida', '{ "id": "2075c729-a9b8-43db-860c-60a3cc31a949", "active": false, "barcode": "496915951064778", "createdDate": "2021-12-06T01:51:07.431+00:00", "departments": [], "enrollmentDate": "2015-07-05T00:00:00.000+00:00", "expirationDate": "2020-06-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.427+00:00", "updatedDate": "2021-12-06T01:51:07.427+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "96238 Bernier Glens Apt. 531", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Calabasas", "countryId": "US", "postalCode": "28899-6585", "primaryAddress": true, "region": "DE" } ], "dateOfBirth": "2000-02-20T00:00:00.000+00:00", "email": "otilia@morar-and-sons.ht", "firstName": "Jodie", "lastName": "Davis", "phone": "304-321-2064", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.431+00:00", "username": "freida" }'); INSERT INTO user_users VALUES ('2084e201-b0da-4ac3-b3ae-873c48596093', false, '827149125240481', '2021-12-06 01:51:07.419+00', '2015-04-28 00:00:00+00', '2020-06-20 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.419+00', 'winifred', '{ "id": "2084e201-b0da-4ac3-b3ae-873c48596093", "active": false, "barcode": "827149125240481", "createdDate": "2021-12-06T01:51:07.419+00:00", "departments": [], "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2020-06-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.415+00:00", "updatedDate": "2021-12-06T01:51:07.415+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "50258 Dagmar Station", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Fernando", "countryId": "US", "postalCode": "63197-6404", "primaryAddress": true, "region": "PW" } ], "dateOfBirth": "1999-09-06T00:00:00.000+00:00", "email": "sadye@schoen-bins.sh", "firstName": "Giovani", "lastName": "McCullough", "middleName": "Cletus", "mobilePhone": "116.581.4518 x13462", "phone": "340-020-1918 x953", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.419+00:00", "username": "winifred" }'); INSERT INTO user_users VALUES ('2120fe62-ba0a-4dce-8701-f360368d5c30', false, '794176129884338', '2021-12-06 01:51:08.354+00', '2018-05-13 00:00:00+00', '2020-02-05 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.354+00', 'grace', '{ "id": "2120fe62-ba0a-4dce-8701-f360368d5c30", "active": false, "barcode": "794176129884338", "createdDate": "2021-12-06T01:51:08.354+00:00", "departments": [], "enrollmentDate": "2018-05-13T00:00:00.000+00:00", "expirationDate": "2020-02-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.351+00:00", "updatedDate": "2021-12-06T01:51:08.351+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "24628 Floor 834", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Mentor", "countryId": "US", "postalCode": "33381", "primaryAddress": true, "region": "MT" } ], "dateOfBirth": "2012-06-29T00:00:00.000+00:00", "email": "anissa@sanford-and-sons.bv", "firstName": "Branson", "lastName": "Beer", "mobilePhone": "1-156-445-4163", "phone": "390-670-1991", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.354+00:00", "username": "grace" }'); INSERT INTO user_users VALUES ('21c08ac3-c287-4a21-b966-e263504aa773', false, '742593606461600', '2021-12-06 01:51:05.332+00', '2017-12-19 00:00:00+00', '2019-05-03 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.332+00', 'weldon', '{ "id": "21c08ac3-c287-4a21-b966-e263504aa773", "active": false, "barcode": "742593606461600", "createdDate": "2021-12-06T01:51:05.332+00:00", "departments": [], "enrollmentDate": "2017-12-19T00:00:00.000+00:00", "expirationDate": "2019-05-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.328+00:00", "updatedDate": "2021-12-06T01:51:05.328+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "88318 Adolf Manors", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Cincinnati", "countryId": "US", "postalCode": "89005-2089", "primaryAddress": true, "region": "VI" } ], "dateOfBirth": "1965-09-26T00:00:00.000+00:00", "email": "jane@schroeder-parisian.mo.us", "firstName": "Carter", "lastName": "Hickle", "mobilePhone": "1-557-802-5587", "phone": "1-046-299-1320 x85524", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.332+00:00", "username": "weldon" }'); INSERT INTO user_users VALUES ('21ce4a36-4d3a-4a9d-98be-d40852799d9b', false, '999144799982250', '2021-12-06 01:51:07.55+00', '2016-04-22 00:00:00+00', '2021-01-29 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.55+00', 'gayle', '{ "id": "21ce4a36-4d3a-4a9d-98be-d40852799d9b", "active": false, "barcode": "999144799982250", "createdDate": "2021-12-06T01:51:07.550+00:00", "departments": [], "enrollmentDate": "2016-04-22T00:00:00.000+00:00", "expirationDate": "2021-01-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.546+00:00", "updatedDate": "2021-12-06T01:51:07.546+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "69609 Jaskolski Road #095", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Laguna Niguel", "countryId": "US", "postalCode": "56190", "primaryAddress": true, "region": "VT" } ], "dateOfBirth": "1970-04-10T00:00:00.000+00:00", "email": "minnie@pouros-inc.no", "firstName": "Trevor", "lastName": "Johnston", "middleName": "Marc", "phone": "556-405-5640 x75121", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.550+00:00", "username": "gayle" }'); INSERT INTO user_users VALUES ('2205005b-ca51-4a04-87fd-938eefa8f6de', true, '123', '2021-12-06 01:51:08.299+00', '2020-10-07 04:00:00+00', NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', NULL, '2021-12-06 01:51:08.299+00', 'rick', '{ "id": "2205005b-ca51-4a04-87fd-938eefa8f6de", "active": true, "barcode": "123", "createdDate": "2021-12-06T01:51:08.299+00:00", "departments": [], "enrollmentDate": "2020-10-07T04:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.297+00:00", "updatedDate": "2021-12-06T01:51:08.297+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "email": "rick@example.com", "firstName": "psych", "lastName": "rick", "preferredContactTypeId": "002" }, "proxyFor": [], "updatedDate": "2021-12-06T01:51:08.299+00:00", "username": "rick" }'); INSERT INTO user_users VALUES ('2220260d-12c7-49ab-9ac4-f923323f0cb3', false, '727649491002914', '2021-12-06 01:51:07.985+00', '2015-08-19 00:00:00+00', '2019-09-24 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.985+00', 'percival', '{ "id": "2220260d-12c7-49ab-9ac4-f923323f0cb3", "active": false, "barcode": "727649491002914", "createdDate": "2021-12-06T01:51:07.985+00:00", "departments": [], "enrollmentDate": "2015-08-19T00:00:00.000+00:00", "expirationDate": "2019-09-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.982+00:00", "updatedDate": "2021-12-06T01:51:07.982+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "13765 Elvie Centers Suite 994", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Yorba Linda", "countryId": "US", "postalCode": "42979-4043", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1946-06-06T00:00:00.000+00:00", "email": "laila@trantow-parisian.sb", "firstName": "Ashlynn", "lastName": "Littel", "middleName": "Alize", "mobilePhone": "1-839-176-8900 x8928", "phone": "803-183-6360 x010", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.985+00:00", "username": "percival" }'); INSERT INTO user_users VALUES ('223907c9-517b-4b10-a6bc-8f7fcb0a05c3', false, '528756905592459', '2021-12-06 01:51:06.828+00', '2015-05-06 00:00:00+00', '2020-11-06 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.828+00', 'barbara', '{ "id": "223907c9-517b-4b10-a6bc-8f7fcb0a05c3", "active": false, "barcode": "528756905592459", "createdDate": "2021-12-06T01:51:06.828+00:00", "departments": [], "enrollmentDate": "2015-05-06T00:00:00.000+00:00", "expirationDate": "2020-11-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.825+00:00", "updatedDate": "2021-12-06T01:51:06.825+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "95830 Mayer Haven", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Alameda", "countryId": "US", "postalCode": "86992-2850", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "1971-01-07T00:00:00.000+00:00", "email": "candido@white-bartell-and-glover.ir", "firstName": "Lilly", "lastName": "Simonis", "middleName": "Marisa", "mobilePhone": "514-538-6868", "phone": "307-470-4467", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.828+00:00", "username": "barbara" }'); INSERT INTO user_users VALUES ('22b0e29a-cc5d-456b-b272-b521ad5d2a39', false, '220289407319601', '2021-12-06 01:51:08.321+00', '2017-03-18 00:00:00+00', '2020-01-16 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.321+00', 'cierra', '{ "id": "22b0e29a-cc5d-456b-b272-b521ad5d2a39", "active": false, "barcode": "220289407319601", "createdDate": "2021-12-06T01:51:08.321+00:00", "departments": [], "enrollmentDate": "2017-03-18T00:00:00.000+00:00", "expirationDate": "2020-01-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.318+00:00", "updatedDate": "2021-12-06T01:51:08.318+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "44192 Hoeger Springs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Lexington", "countryId": "US", "postalCode": "24713", "primaryAddress": true, "region": "FL" } ], "dateOfBirth": "1962-02-08T00:00:00.000+00:00", "email": "alia@maggio-lubowitz.mn.us", "firstName": "Wendell", "lastName": "Howell", "middleName": "Romaine", "mobilePhone": "1-833-306-7200 x47071", "phone": "806.796.2673 x251", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.321+00:00", "username": "cierra" }'); INSERT INTO user_users VALUES ('2338689d-f27e-49fd-8bce-9f9bf7be6ea0', false, '792669427464190', '2021-12-06 01:51:05.781+00', '2017-05-21 00:00:00+00', '2019-10-31 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.781+00', 'moshe', '{ "id": "2338689d-f27e-49fd-8bce-9f9bf7be6ea0", "active": false, "barcode": "792669427464190", "createdDate": "2021-12-06T01:51:05.781+00:00", "departments": [], "enrollmentDate": "2017-05-21T00:00:00.000+00:00", "expirationDate": "2019-10-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.777+00:00", "updatedDate": "2021-12-06T01:51:05.777+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "11964 Lowe Haven #369", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Buena Park", "countryId": "US", "postalCode": "24691-1071", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "1984-03-09T00:00:00.000+00:00", "email": "ike@hintz-moen-and-buckridge.lc", "firstName": "Ciara", "lastName": "Emard", "middleName": "Hulda", "mobilePhone": "1-609-887-2430", "phone": "(064)078-4507 x6779", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.781+00:00", "username": "moshe" }'); INSERT INTO user_users VALUES ('23807f0f-6053-417c-b335-f3b0f84ceb8e', false, '889532071090496', '2021-12-06 01:51:07.313+00', '2016-08-26 00:00:00+00', '2019-05-02 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.313+00', 'destany', '{ "id": "23807f0f-6053-417c-b335-f3b0f84ceb8e", "active": false, "barcode": "889532071090496", "createdDate": "2021-12-06T01:51:07.313+00:00", "departments": [], "enrollmentDate": "2016-08-26T00:00:00.000+00:00", "expirationDate": "2019-05-02T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.310+00:00", "updatedDate": "2021-12-06T01:51:07.310+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "25186 Loma Drive", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Sierra Vista", "countryId": "US", "postalCode": "25029", "primaryAddress": true, "region": "MT" } ], "dateOfBirth": "1965-05-23T00:00:00.000+00:00", "email": "andy@little-abernathy-and-weissnat.dj", "firstName": "Shyann", "lastName": "Hessel", "middleName": "Courtney", "mobilePhone": "1-212-924-1617", "phone": "(815)321-8493 x5347", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.313+00:00", "username": "destany" }'); INSERT INTO user_users VALUES ('251cfa92-24a7-45db-9f0d-acd2da450b50', false, '979553133418729', '2021-12-06 01:51:07.372+00', '2016-03-02 00:00:00+00', '2020-01-27 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.372+00', 'dominic', '{ "id": "251cfa92-24a7-45db-9f0d-acd2da450b50", "active": false, "barcode": "979553133418729", "createdDate": "2021-12-06T01:51:07.372+00:00", "departments": [], "enrollmentDate": "2016-03-02T00:00:00.000+00:00", "expirationDate": "2020-01-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.369+00:00", "updatedDate": "2021-12-06T01:51:07.369+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "17992 Maggio Islands", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Tustin", "countryId": "US", "postalCode": "56980-5449", "primaryAddress": true, "region": "AZ" } ], "dateOfBirth": "1984-10-11T00:00:00.000+00:00", "email": "moises@blick-schuster-and-mohr.gu", "firstName": "Elyse", "lastName": "Boehm", "middleName": "Misty", "mobilePhone": "(326)072-6068 x5435", "phone": "1-212-255-3771 x987", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.372+00:00", "username": "dominic" }'); INSERT INTO user_users VALUES ('259d55dc-015d-420a-b13d-8706018305b1', false, '696296117207797', '2021-12-06 01:51:04.741+00', '2018-07-01 00:00:00+00', '2020-07-03 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.741+00', 'chadrick', '{ "id": "259d55dc-015d-420a-b13d-8706018305b1", "active": false, "barcode": "696296117207797", "createdDate": "2021-12-06T01:51:04.741+00:00", "departments": [], "enrollmentDate": "2018-07-01T00:00:00.000+00:00", "expirationDate": "2020-07-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.737+00:00", "updatedDate": "2021-12-06T01:51:04.737+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "65144 Muller Squares Suite 747", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "West Memphis", "countryId": "US", "postalCode": "44613", "primaryAddress": true, "region": "MA" } ], "dateOfBirth": "1948-04-03T00:00:00.000+00:00", "email": "noemie@johnson-weimann.pg", "firstName": "Sherman", "lastName": "Mraz", "mobilePhone": "1-612-179-7983 x236", "phone": "845.879.6319 x77980", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.741+00:00", "username": "chadrick" }'); INSERT INTO user_users VALUES ('260f1870-7dee-452d-a379-301f063febda', false, '685625879486391', '2021-12-06 01:51:05.994+00', '2018-03-02 00:00:00+00', '2020-10-30 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.994+00', 'alberto', '{ "id": "260f1870-7dee-452d-a379-301f063febda", "active": false, "barcode": "685625879486391", "createdDate": "2021-12-06T01:51:05.994+00:00", "departments": [], "enrollmentDate": "2018-03-02T00:00:00.000+00:00", "expirationDate": "2020-10-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.991+00:00", "updatedDate": "2021-12-06T01:51:05.991+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "48438 Dach Forge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Yuma", "countryId": "US", "postalCode": "08024", "primaryAddress": true, "region": "AR" } ], "dateOfBirth": "1959-12-06T00:00:00.000+00:00", "email": "citlalli@mclaughlin-kemmer.yu", "firstName": "Ronny", "lastName": "Bosco", "middleName": "Rolando", "mobilePhone": "(448)273-0210 x1902", "phone": "247.317.0270 x271", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.994+00:00", "username": "alberto" }'); INSERT INTO user_users VALUES ('261e1062-a473-47f4-a00f-a197c4a87530', false, '898724875163885', '2021-12-06 01:51:06.745+00', '2018-11-24 00:00:00+00', '2019-07-31 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.745+00', 'alene', '{ "id": "261e1062-a473-47f4-a00f-a197c4a87530", "active": false, "barcode": "898724875163885", "createdDate": "2021-12-06T01:51:06.745+00:00", "departments": [], "enrollmentDate": "2018-11-24T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.742+00:00", "updatedDate": "2021-12-06T01:51:06.742+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "33196 Bogan Courts", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Cerritos", "countryId": "US", "postalCode": "58753", "primaryAddress": true, "region": "VT" } ], "dateOfBirth": "2011-08-28T00:00:00.000+00:00", "email": "tomasa@wintheiser-llc.id", "firstName": "Karson", "lastName": "Brekke", "middleName": "Marlen", "mobilePhone": "(854)860-1000 x2414", "phone": "(963)962-0601 x70839", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.745+00:00", "username": "alene" }'); INSERT INTO user_users VALUES ('28724f2b-89b3-4a05-839c-2e77138e01a3', false, '562954566768080', '2021-12-06 01:51:05.935+00', '2016-06-04 00:00:00+00', '2020-02-01 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.935+00', 'ruth', '{ "id": "28724f2b-89b3-4a05-839c-2e77138e01a3", "active": false, "barcode": "562954566768080", "createdDate": "2021-12-06T01:51:05.935+00:00", "departments": [], "enrollmentDate": "2016-06-04T00:00:00.000+00:00", "expirationDate": "2020-02-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.932+00:00", "updatedDate": "2021-12-06T01:51:05.932+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "69389 Floor 4238", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Hidden Hills", "countryId": "US", "postalCode": "69559", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "2001-06-17T00:00:00.000+00:00", "email": "rodger@ferry-daniel-and-terry.gy", "firstName": "Mekhi", "lastName": "Gislason", "middleName": "Jeff", "mobilePhone": "1-081-061-8041 x89919", "phone": "(782)744-2716", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.935+00:00", "username": "ruth" }'); INSERT INTO user_users VALUES ('2884afb0-5bec-45c4-b9f4-0bc525bc0322', false, '514514863206791', '2021-12-06 01:51:08.007+00', '2016-09-08 00:00:00+00', '2019-07-01 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.007+00', 'eden', '{ "id": "2884afb0-5bec-45c4-b9f4-0bc525bc0322", "active": false, "barcode": "514514863206791", "createdDate": "2021-12-06T01:51:08.007+00:00", "departments": [], "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2019-07-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.004+00:00", "updatedDate": "2021-12-06T01:51:08.004+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "43382 Suite 4-D", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bellflower", "countryId": "US", "postalCode": "45499", "primaryAddress": true, "region": "MH" } ], "dateOfBirth": "1955-01-12T00:00:00.000+00:00", "email": "dayna@rempel-botsford-and-huels.gu", "firstName": "Kevin", "lastName": "Waters", "middleName": "Brock", "mobilePhone": "706.601.2468 x3937", "phone": "287.264.3679", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.007+00:00", "username": "eden" }'); INSERT INTO user_users VALUES ('292451b5-0026-4463-a762-d43fc6cc9122', false, '234963930375499', '2021-12-06 01:51:06.536+00', '2017-09-06 00:00:00+00', '2019-03-16 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.536+00', 'dahlia', '{ "id": "292451b5-0026-4463-a762-d43fc6cc9122", "active": false, "barcode": "234963930375499", "createdDate": "2021-12-06T01:51:06.536+00:00", "departments": [], "enrollmentDate": "2017-09-06T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.533+00:00", "updatedDate": "2021-12-06T01:51:06.533+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "68822 Sawayn Point Suite 289", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Tustin", "countryId": "US", "postalCode": "76024", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "1960-09-18T00:00:00.000+00:00", "email": "ashley@kilback-kris-and-cronin.org", "firstName": "Antonina", "lastName": "Emard", "middleName": "Marques", "phone": "(035)721-3119 x235", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.536+00:00", "username": "dahlia" }'); INSERT INTO user_users VALUES ('2a424823-588a-45ee-9441-a6384b6614b2', false, '236964750970123', '2021-12-06 01:51:06.31+00', '2017-06-27 00:00:00+00', '2021-02-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.31+00', 'vida', '{ "id": "2a424823-588a-45ee-9441-a6384b6614b2", "active": false, "barcode": "236964750970123", "createdDate": "2021-12-06T01:51:06.310+00:00", "departments": [], "enrollmentDate": "2017-06-27T00:00:00.000+00:00", "expirationDate": "2021-02-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.306+00:00", "updatedDate": "2021-12-06T01:51:06.306+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "49964 Brannon Ford Suite 362", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Kettering", "countryId": "US", "postalCode": "69199-1877", "primaryAddress": true, "region": "DE" } ], "dateOfBirth": "1979-01-23T00:00:00.000+00:00", "email": "pascale@lindgren-hammes-and-toy.nm.us", "firstName": "Pietro", "lastName": "Brown", "middleName": "Brigitte", "mobilePhone": "(487)166-9371 x49884", "phone": "1-626-870-9701 x37563", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.310+00:00", "username": "vida" }'); INSERT INTO user_users VALUES ('2a81b279-d459-4022-82f6-69a569d196b9', false, '631888472578232', '2021-12-06 01:51:04.726+00', '2017-12-01 00:00:00+00', '2020-12-20 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.726+00', 'sunny', '{ "id": "2a81b279-d459-4022-82f6-69a569d196b9", "active": false, "barcode": "631888472578232", "createdDate": "2021-12-06T01:51:04.726+00:00", "departments": [], "enrollmentDate": "2017-12-01T00:00:00.000+00:00", "expirationDate": "2020-12-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.721+00:00", "updatedDate": "2021-12-06T01:51:04.721+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "64292 Salvatore Trafficway #413", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Demopolis", "countryId": "US", "postalCode": "27791", "primaryAddress": true, "region": "AR" } ], "dateOfBirth": "2008-02-20T00:00:00.000+00:00", "email": "nash@hansen-koepp-and-prohaska.gt", "firstName": "Cordell", "lastName": "Bernhard", "middleName": "Mafalda", "mobilePhone": "1-658-739-5448 x619", "phone": "(675)279-7737 x58358", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.726+00:00", "username": "sunny" }'); INSERT INTO user_users VALUES ('2a823816-c059-4703-becf-0cc68a734189', false, '792502201400545', '2021-12-06 01:51:05.696+00', '2017-11-23 00:00:00+00', '2020-03-27 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.696+00', 'barney', '{ "id": "2a823816-c059-4703-becf-0cc68a734189", "active": false, "barcode": "792502201400545", "createdDate": "2021-12-06T01:51:05.696+00:00", "departments": [], "enrollmentDate": "2017-11-23T00:00:00.000+00:00", "expirationDate": "2020-03-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.692+00:00", "updatedDate": "2021-12-06T01:51:05.692+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "91432 Daugherty Extensions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Chino", "countryId": "US", "postalCode": "29470-5004", "primaryAddress": true, "region": "PW" } ], "dateOfBirth": "1958-03-12T00:00:00.000+00:00", "email": "greta@fahey-emmerich-and-douglas.om", "firstName": "Leila", "lastName": "Kuhlman", "middleName": "Ronaldo", "phone": "1-061-750-8306 x5786", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.696+00:00", "username": "barney" }'); INSERT INTO user_users VALUES ('2c2e383d-7369-4aff-afb7-eb3db4cb71a0', false, '994512400886741', '2021-12-06 01:51:06.771+00', '2016-09-13 00:00:00+00', '2019-10-03 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.771+00', 'oral', '{ "id": "2c2e383d-7369-4aff-afb7-eb3db4cb71a0", "active": false, "barcode": "994512400886741", "createdDate": "2021-12-06T01:51:06.771+00:00", "departments": [], "enrollmentDate": "2016-09-13T00:00:00.000+00:00", "expirationDate": "2019-10-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.767+00:00", "updatedDate": "2021-12-06T01:51:06.767+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "58547 McKenzie Course #387", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "El Monte", "countryId": "US", "postalCode": "50898-2829", "primaryAddress": true, "region": "OH" } ], "dateOfBirth": "1981-01-30T00:00:00.000+00:00", "email": "alf@barrows-group.cs", "firstName": "Brandon", "lastName": "Green", "middleName": "Alysha", "mobilePhone": "(516)576-5921 x386", "phone": "164.749.2268", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.771+00:00", "username": "oral" }'); INSERT INTO user_users VALUES ('2c9e8cdd-d2fe-485b-b663-34225637fe93', false, '684350779415389', '2021-12-06 01:51:04.588+00', '2017-04-07 00:00:00+00', '2019-04-18 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:04.588+00', 'maudie', '{ "id": "2c9e8cdd-d2fe-485b-b663-34225637fe93", "active": false, "barcode": "684350779415389", "createdDate": "2021-12-06T01:51:04.588+00:00", "departments": [], "enrollmentDate": "2017-04-07T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.583+00:00", "updatedDate": "2021-12-06T01:51:04.583+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "59878 Marques Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Homer", "countryId": "US", "postalCode": "23732-5100", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1977-04-08T00:00:00.000+00:00", "email": "pasquale@murphy-conn.lt", "firstName": "Orval", "lastName": "Swift", "mobilePhone": "187.412.7582", "phone": "974-776-1929", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.588+00:00", "username": "maudie" }'); INSERT INTO user_users VALUES ('2cb8a9f5-5a04-4b26-89de-c5a522638de2', false, '664902183251587', '2021-12-06 01:51:06.954+00', '2015-08-19 00:00:00+00', '2020-04-21 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.954+00', 'hubert', '{ "id": "2cb8a9f5-5a04-4b26-89de-c5a522638de2", "active": false, "barcode": "664902183251587", "createdDate": "2021-12-06T01:51:06.954+00:00", "departments": [], "enrollmentDate": "2015-08-19T00:00:00.000+00:00", "expirationDate": "2020-04-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.951+00:00", "updatedDate": "2021-12-06T01:51:06.951+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "16685 Jacobson Junctions Suite 266", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Temecula", "countryId": "US", "postalCode": "48023-1180", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1993-07-15T00:00:00.000+00:00", "email": "michaela@gerlach-inc.mv", "firstName": "Reta", "lastName": "Fay", "middleName": "Velma", "mobilePhone": "464.863.9490 x63388", "phone": "(424)089-0260 x078", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.954+00:00", "username": "hubert" }'); INSERT INTO user_users VALUES ('2e5f9cc4-46ab-4dfe-b40a-8493296353fb', false, '69474122738444', '2021-12-06 01:51:08.053+00', '2016-12-05 00:00:00+00', '2019-03-16 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.053+00', 'lessie', '{ "id": "2e5f9cc4-46ab-4dfe-b40a-8493296353fb", "active": false, "barcode": "69474122738444", "createdDate": "2021-12-06T01:51:08.053+00:00", "departments": [], "enrollmentDate": "2016-12-05T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.050+00:00", "updatedDate": "2021-12-06T01:51:08.050+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "71430 Erica Ford", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Jose", "countryId": "US", "postalCode": "54868", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1954-04-07T00:00:00.000+00:00", "email": "hailie@beatty-group.as", "firstName": "Name", "lastName": "Lehner", "mobilePhone": "1-189-695-6352 x952", "phone": "1-763-964-3113", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.053+00:00", "username": "lessie" }'); INSERT INTO user_users VALUES ('2eb8fef6-95c8-491d-a6a3-00176997dca4', false, '556024123510408', '2021-12-06 01:51:05.709+00', '2015-10-21 00:00:00+00', '2019-12-30 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.709+00', 'loren', '{ "id": "2eb8fef6-95c8-491d-a6a3-00176997dca4", "active": false, "barcode": "556024123510408", "createdDate": "2021-12-06T01:51:05.709+00:00", "departments": [], "enrollmentDate": "2015-10-21T00:00:00.000+00:00", "expirationDate": "2019-12-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.706+00:00", "updatedDate": "2021-12-06T01:51:05.706+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "39249 Amina Plaza", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Tuskegee", "countryId": "US", "postalCode": "51037-6339", "primaryAddress": true, "region": "SC" } ], "dateOfBirth": "1984-08-04T00:00:00.000+00:00", "email": "erich@sporer-group.lv", "firstName": "Carey", "lastName": "Kovacek", "mobilePhone": "(609)148-9779 x79899", "phone": "(071)940-1388", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.709+00:00", "username": "loren" }'); INSERT INTO user_users VALUES ('2ee07dc7-835f-4a33-a783-db2ae3f1238c', false, '479599371032787', '2021-12-06 01:51:06.323+00', '2018-03-20 00:00:00+00', '2020-08-07 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.323+00', 'karolann', '{ "id": "2ee07dc7-835f-4a33-a783-db2ae3f1238c", "active": false, "barcode": "479599371032787", "createdDate": "2021-12-06T01:51:06.323+00:00", "departments": [], "enrollmentDate": "2018-03-20T00:00:00.000+00:00", "expirationDate": "2020-08-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.320+00:00", "updatedDate": "2021-12-06T01:51:06.320+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "32054 Buford Club", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Fremont", "countryId": "US", "postalCode": "68232-5069", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "2004-07-15T00:00:00.000+00:00", "email": "ansley@marvin-bayer.md", "firstName": "Marian", "lastName": "Maggio", "middleName": "Newton", "mobilePhone": "(678)932-6845", "phone": "1-244-042-5537", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.323+00:00", "username": "karolann" }'); INSERT INTO user_users VALUES ('2fabd929-3ed9-40ae-aaf2-6c39c4bebf13', false, '478720922465697', '2021-12-06 01:51:07.882+00', '2019-01-28 00:00:00+00', '2019-12-28 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.882+00', 'nathanael', '{ "id": "2fabd929-3ed9-40ae-aaf2-6c39c4bebf13", "active": false, "barcode": "478720922465697", "createdDate": "2021-12-06T01:51:07.882+00:00", "departments": [], "enrollmentDate": "2019-01-28T00:00:00.000+00:00", "expirationDate": "2019-12-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.879+00:00", "updatedDate": "2021-12-06T01:51:07.879+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "66993 Lubowitz Fork", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "North Little Rock", "countryId": "US", "postalCode": "63028", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "1966-08-07T00:00:00.000+00:00", "email": "everette@hermann-armstrong.wi.us", "firstName": "Aliya", "lastName": "Denesik", "mobilePhone": "1-217-304-1117", "phone": "504.537.5023", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.882+00:00", "username": "nathanael" }'); INSERT INTO user_users VALUES ('30d7e2dd-db23-4832-b4be-30d3f5f83a60', false, '720909484081527', '2021-12-06 01:51:07.184+00', '2015-04-28 00:00:00+00', '2019-11-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.184+00', 'gilbert', '{ "id": "30d7e2dd-db23-4832-b4be-30d3f5f83a60", "active": false, "barcode": "720909484081527", "createdDate": "2021-12-06T01:51:07.184+00:00", "departments": [], "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2019-11-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.180+00:00", "updatedDate": "2021-12-06T01:51:07.180+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "48079 Laney Spurs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Rosa", "countryId": "US", "postalCode": "26407-6171", "primaryAddress": true, "region": "NE" } ], "dateOfBirth": "1956-06-06T00:00:00.000+00:00", "email": "jeremie@bartoletti-wintheiser-and-lindgren.uk", "firstName": "Albin", "lastName": "Bednar", "middleName": "Gail", "mobilePhone": "282-198-8110", "phone": "012.912.3077", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.184+00:00", "username": "gilbert" }'); INSERT INTO user_users VALUES ('32134c21-fae8-497e-b2d2-daa1ba421070', false, '521835582761500', '2021-12-06 01:51:07.806+00', '2015-12-27 00:00:00+00', '2020-03-06 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.806+00', 'logan', '{ "id": "32134c21-fae8-497e-b2d2-daa1ba421070", "active": false, "barcode": "521835582761500", "createdDate": "2021-12-06T01:51:07.806+00:00", "departments": [], "enrollmentDate": "2015-12-27T00:00:00.000+00:00", "expirationDate": "2020-03-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.803+00:00", "updatedDate": "2021-12-06T01:51:07.803+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "82745 Floor 20", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bessemer", "countryId": "US", "postalCode": "31677-6381", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "1984-08-08T00:00:00.000+00:00", "email": "carissa@dickinson-schaefer.co.us", "firstName": "Alena", "lastName": "Luettgen", "middleName": "Amanda", "mobilePhone": "1-770-234-0787", "phone": "776.759.0553 x1841", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.806+00:00", "username": "logan" }'); INSERT INTO user_users VALUES ('3387893c-7bde-4d2f-9ad2-d4974b3e959e', false, '236808330073397', '2021-12-06 01:51:07.795+00', '2017-01-05 00:00:00+00', '2020-02-02 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.795+00', 'jailyn', '{ "id": "3387893c-7bde-4d2f-9ad2-d4974b3e959e", "active": false, "barcode": "236808330073397", "createdDate": "2021-12-06T01:51:07.795+00:00", "departments": [], "enrollmentDate": "2017-01-05T00:00:00.000+00:00", "expirationDate": "2020-02-02T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.792+00:00", "updatedDate": "2021-12-06T01:51:07.792+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "47414 Myrtle Vista", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Owensboro", "countryId": "US", "postalCode": "36952-8155", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "1970-11-28T00:00:00.000+00:00", "email": "catherine@daugherty-and-sons.jo", "firstName": "Ezekiel", "lastName": "Zulauf", "middleName": "Clifford", "mobilePhone": "(664)091-9434", "phone": "(269)998-3431 x559", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.795+00:00", "username": "jailyn" }'); INSERT INTO user_users VALUES ('342971e4-43af-44c3-a8c3-478a97cc94bc', false, '517661950521777', '2021-12-06 01:51:07.782+00', '2015-08-17 00:00:00+00', '2020-04-16 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.782+00', 'mathew', '{ "id": "342971e4-43af-44c3-a8c3-478a97cc94bc", "active": false, "barcode": "517661950521777", "createdDate": "2021-12-06T01:51:07.782+00:00", "departments": [], "enrollmentDate": "2015-08-17T00:00:00.000+00:00", "expirationDate": "2020-04-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.779+00:00", "updatedDate": "2021-12-06T01:51:07.779+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "12520 Side", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Decatur", "countryId": "US", "postalCode": "45916", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "2005-05-14T00:00:00.000+00:00", "email": "jonatan@fisher-champlin.ad", "firstName": "Claud", "lastName": "Cronin", "middleName": "Ilene", "mobilePhone": "1-279-039-5608 x75852", "phone": "779-451-7076 x0833", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.782+00:00", "username": "mathew" }'); INSERT INTO user_users VALUES ('34a22ca8-9aff-4b1c-96c2-f908ddb068ae', false, '789081575594853', '2021-12-06 01:51:06.784+00', '2018-01-01 00:00:00+00', '2019-05-17 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.784+00', 'glenda', '{ "id": "34a22ca8-9aff-4b1c-96c2-f908ddb068ae", "active": false, "barcode": "789081575594853", "createdDate": "2021-12-06T01:51:06.784+00:00", "departments": [], "enrollmentDate": "2018-01-01T00:00:00.000+00:00", "expirationDate": "2019-05-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.781+00:00", "updatedDate": "2021-12-06T01:51:06.781+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "32195 Pfeffer Lodge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Artesia", "countryId": "US", "postalCode": "13289-0988", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "1999-10-14T00:00:00.000+00:00", "email": "coty@white-gutmann.pe", "firstName": "Glenda", "lastName": "Wisozk", "phone": "(067)045-1942 x839", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.784+00:00", "username": "glenda" }'); INSERT INTO user_users VALUES ('368b8b4a-c3c2-436c-9cba-95dcac52ebf9', false, '943721780387221', '2021-12-06 01:51:07.684+00', '2015-10-28 00:00:00+00', '2020-09-16 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.684+00', 'buck', '{ "id": "368b8b4a-c3c2-436c-9cba-95dcac52ebf9", "active": false, "barcode": "943721780387221", "createdDate": "2021-12-06T01:51:07.684+00:00", "departments": [], "enrollmentDate": "2015-10-28T00:00:00.000+00:00", "expirationDate": "2020-09-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.681+00:00", "updatedDate": "2021-12-06T01:51:07.681+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "51528 Green Lakes Suite 741", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Artesia", "countryId": "US", "postalCode": "13942", "primaryAddress": true, "region": "ME" } ], "dateOfBirth": "1985-12-24T00:00:00.000+00:00", "email": "leora@donnelly-adams-and-bode.sn", "firstName": "Ralph", "lastName": "Little", "middleName": "Demetrius", "mobilePhone": "(969)443-0354", "phone": "559.446.5166 x7425", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.684+00:00", "username": "buck" }'); INSERT INTO user_users VALUES ('36db855c-e416-405e-98f3-6955888d31ec', true, '1638756085825876726', '2021-12-06 02:01:25.831+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:25.831+00', 'checkin-all', '{ "id": "36db855c-e416-405e-98f3-6955888d31ec", "active": true, "barcode": "1638756085825876726", "createdDate": "2021-12-06T02:01:25.831+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.828+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.828+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "checkin-all", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:25.831+00:00", "username": "checkin-all" }'); INSERT INTO user_users VALUES ('3793853e-6297-424d-abea-24525079f658', false, '752157134026468', '2021-12-06 01:51:08.332+00', '2015-05-07 00:00:00+00', '2019-12-10 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.332+00', 'bernhard', '{ "id": "3793853e-6297-424d-abea-24525079f658", "active": false, "barcode": "752157134026468", "createdDate": "2021-12-06T01:51:08.332+00:00", "departments": [], "enrollmentDate": "2015-05-07T00:00:00.000+00:00", "expirationDate": "2019-12-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.329+00:00", "updatedDate": "2021-12-06T01:51:08.329+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "37345 Brakus Junctions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Kokomo", "countryId": "US", "postalCode": "60624-1416", "primaryAddress": true, "region": "AS" } ], "dateOfBirth": "1960-05-03T00:00:00.000+00:00", "email": "yvonne@cormier-mertz.tz", "firstName": "Earline", "lastName": "Kulas", "middleName": "Angel", "phone": "1-525-040-6557", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.332+00:00", "username": "bernhard" }'); INSERT INTO user_users VALUES ('384272bb-efab-4e94-b3b8-f67f20796f20', false, '217874037910807', '2021-12-06 01:51:06.006+00', '2015-06-25 00:00:00+00', '2019-11-23 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.006+00', 'josefa', '{ "id": "384272bb-efab-4e94-b3b8-f67f20796f20", "active": false, "barcode": "217874037910807", "createdDate": "2021-12-06T01:51:06.006+00:00", "departments": [], "enrollmentDate": "2015-06-25T00:00:00.000+00:00", "expirationDate": "2019-11-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.003+00:00", "updatedDate": "2021-12-06T01:51:06.003+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "67186 Wendy Squares", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Fort Smith", "countryId": "US", "postalCode": "02901", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1988-05-07T00:00:00.000+00:00", "email": "fredy@lehner-and-sons.sr", "firstName": "Araceli", "lastName": "Block", "middleName": "Avery", "phone": "890-719-9790 x316", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.006+00:00", "username": "josefa" }'); INSERT INTO user_users VALUES ('3aa498aa-144d-48c1-a481-f4ab47da11cb', true, '1638756088192565053', '2021-12-06 02:01:28.197+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:28.197+00', 'data-import', '{ "id": "3aa498aa-144d-48c1-a481-f4ab47da11cb", "active": true, "barcode": "1638756088192565053", "createdDate": "2021-12-06T02:01:28.197+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.195+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.195+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "data-import", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:28.197+00:00", "username": "data-import" }'); INSERT INTO user_users VALUES ('3ada4a0c-e554-4749-8809-fee35fe2c7ad', false, '438581524422918', '2021-12-06 01:51:07.227+00', '2018-10-25 00:00:00+00', '2020-04-20 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.227+00', 'juston', '{ "id": "3ada4a0c-e554-4749-8809-fee35fe2c7ad", "active": false, "barcode": "438581524422918", "createdDate": "2021-12-06T01:51:07.227+00:00", "departments": [], "enrollmentDate": "2018-10-25T00:00:00.000+00:00", "expirationDate": "2020-04-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.224+00:00", "updatedDate": "2021-12-06T01:51:07.224+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "47564 Floor 35", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "South El Monte", "countryId": "US", "postalCode": "62000-7845", "primaryAddress": true, "region": "OH" } ], "dateOfBirth": "1961-10-03T00:00:00.000+00:00", "email": "alexandre@baumbach-nicolas.lk", "firstName": "Adaline", "lastName": "Walker", "middleName": "Marilou", "mobilePhone": "1-290-020-8785", "phone": "634.000.0665", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.227+00:00", "username": "juston" }'); INSERT INTO user_users VALUES ('3b38c436-2b21-44a5-afae-b23e5361c3c9', true, '1638756088719996033', '2021-12-06 02:01:28.724+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:28.724+00', 'erm-manager', '{ "id": "3b38c436-2b21-44a5-afae-b23e5361c3c9", "active": true, "barcode": "1638756088719996033", "createdDate": "2021-12-06T02:01:28.724+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.721+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.721+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "erm-manager", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:28.724+00:00", "username": "erm-manager" }'); INSERT INTO user_users VALUES ('3b464026-79e7-450a-a441-0e1d4f8ebf99', false, '703844689213557', '2021-12-06 01:51:07.101+00', '2019-02-26 00:00:00+00', '2021-01-12 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.101+00', 'reid', '{ "id": "3b464026-79e7-450a-a441-0e1d4f8ebf99", "active": false, "barcode": "703844689213557", "createdDate": "2021-12-06T01:51:07.101+00:00", "departments": [], "enrollmentDate": "2019-02-26T00:00:00.000+00:00", "expirationDate": "2021-01-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.097+00:00", "updatedDate": "2021-12-06T01:51:07.097+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "68530 Batz Plains Apt. 693", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Valencia", "countryId": "US", "postalCode": "98413", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1984-10-13T00:00:00.000+00:00", "email": "maureen@schulist-hills.lr", "firstName": "Rachelle", "lastName": "Denesik", "mobilePhone": "276.402.9040", "phone": "347-425-5060", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.101+00:00", "username": "reid" }'); INSERT INTO user_users VALUES ('4205e8ff-804d-45bb-9d6d-f75f845ce608', false, '196625924015005', '2021-12-06 01:51:05.429+00', '2016-09-05 00:00:00+00', '2021-01-06 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.429+00', 'carolina', '{ "id": "4205e8ff-804d-45bb-9d6d-f75f845ce608", "active": false, "barcode": "196625924015005", "createdDate": "2021-12-06T01:51:05.429+00:00", "departments": [], "enrollmentDate": "2016-09-05T00:00:00.000+00:00", "expirationDate": "2021-01-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.425+00:00", "updatedDate": "2021-12-06T01:51:05.425+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "73436 Phoebe Burgs Suite 980", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Compton", "countryId": "US", "postalCode": "95966-2819", "primaryAddress": true, "region": "FL" } ], "dateOfBirth": "1976-07-01T00:00:00.000+00:00", "email": "estell@friesen-llc.au", "firstName": "Bridget", "lastName": "Mohr", "mobilePhone": "1-791-331-4472", "phone": "350-369-4844 x907", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.429+00:00", "username": "carolina" }'); INSERT INTO user_users VALUES ('420d485a-033f-4999-ab2c-12c00cd5ec07', false, '857703348667989', '2021-12-06 01:51:07.032+00', '2015-05-23 00:00:00+00', '2019-08-03 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.032+00', 'pearl', '{ "id": "420d485a-033f-4999-ab2c-12c00cd5ec07", "active": false, "barcode": "857703348667989", "createdDate": "2021-12-06T01:51:07.032+00:00", "departments": [], "enrollmentDate": "2015-05-23T00:00:00.000+00:00", "expirationDate": "2019-08-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.029+00:00", "updatedDate": "2021-12-06T01:51:07.029+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "62880 Lauren Route", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "West Lafayette", "countryId": "US", "postalCode": "65210-1372", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "2010-10-13T00:00:00.000+00:00", "email": "jayne@crona-and-sons.vn", "firstName": "Cathrine", "lastName": "Hudson", "middleName": "Idell", "phone": "861.179.1850 x832", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.032+00:00", "username": "pearl" }'); INSERT INTO user_users VALUES ('423d5beb-3196-449e-aacb-9595d6321950', false, '941346984284265', '2021-12-06 01:51:07.281+00', '2018-01-21 00:00:00+00', '2019-10-16 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.281+00', 'lenora', '{ "id": "423d5beb-3196-449e-aacb-9595d6321950", "active": false, "barcode": "941346984284265", "createdDate": "2021-12-06T01:51:07.281+00:00", "departments": [], "enrollmentDate": "2018-01-21T00:00:00.000+00:00", "expirationDate": "2019-10-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.278+00:00", "updatedDate": "2021-12-06T01:51:07.278+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "65964 Lebsack Parkway Apt. 989", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Villa Park", "countryId": "US", "postalCode": "34334-6218", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1980-07-27T00:00:00.000+00:00", "email": "al@ohara-sawayn-and-dicki.gr", "firstName": "Clemens", "lastName": "Kuhlman", "mobilePhone": "129.695.7732", "phone": "452.902.4336", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.281+00:00", "username": "lenora" }'); INSERT INTO user_users VALUES ('42e9d211-4bfb-45fe-a088-f19d0a514f98', false, '362710768281452', '2021-12-06 01:51:08.083+00', '2015-09-09 00:00:00+00', '2019-12-09 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.083+00', 'lorna', '{ "id": "42e9d211-4bfb-45fe-a088-f19d0a514f98", "active": false, "barcode": "362710768281452", "createdDate": "2021-12-06T01:51:08.083+00:00", "departments": [], "enrollmentDate": "2015-09-09T00:00:00.000+00:00", "expirationDate": "2019-12-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.080+00:00", "updatedDate": "2021-12-06T01:51:08.080+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "59904 Sipes Heights #987", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Orange", "countryId": "US", "postalCode": "66983-4991", "primaryAddress": true, "region": "AS" } ], "dateOfBirth": "1947-12-02T00:00:00.000+00:00", "email": "kathlyn@steuber-kutch-and-durgan.so", "firstName": "Vern", "lastName": "Hoeger", "middleName": "Libbie", "mobilePhone": "(522)859-5038", "phone": "057.915.0771", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.083+00:00", "username": "lorna" }'); INSERT INTO user_users VALUES ('430f49de-6848-4cba-886a-4902cb9b887d', false, '458743723690059', '2021-12-06 01:51:07.443+00', '2017-09-17 00:00:00+00', '2020-04-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.443+00', 'johanna', '{ "id": "430f49de-6848-4cba-886a-4902cb9b887d", "active": false, "barcode": "458743723690059", "createdDate": "2021-12-06T01:51:07.443+00:00", "departments": [], "enrollmentDate": "2017-09-17T00:00:00.000+00:00", "expirationDate": "2020-04-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.440+00:00", "updatedDate": "2021-12-06T01:51:07.440+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "43269 Taylor Fork #535", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Newport Beach", "countryId": "US", "postalCode": "42658", "primaryAddress": true, "region": "OK" } ], "dateOfBirth": "1981-05-19T00:00:00.000+00:00", "email": "kraig@willms-gerlach.mx", "firstName": "Brandon", "lastName": "Rogahn", "middleName": "Sharon", "phone": "1-277-648-2924 x441", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.443+00:00", "username": "johanna" }'); INSERT INTO user_users VALUES ('43f60acf-2557-48e9-b457-12783925444f', false, '19683671814242', '2021-12-06 01:51:05.746+00', '2017-01-29 00:00:00+00', '2020-05-13 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.746+00', 'victoria', '{ "id": "43f60acf-2557-48e9-b457-12783925444f", "active": false, "barcode": "19683671814242", "createdDate": "2021-12-06T01:51:05.746+00:00", "departments": [], "enrollmentDate": "2017-01-29T00:00:00.000+00:00", "expirationDate": "2020-05-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.743+00:00", "updatedDate": "2021-12-06T01:51:05.743+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "93703 Floor 0268", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Glendale", "countryId": "US", "postalCode": "75580", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1996-02-05T00:00:00.000+00:00", "email": "jaylin@moen-goyette-and-greenholt.ar", "firstName": "Maud", "lastName": "Sporer", "middleName": "Keaton", "mobilePhone": "917-076-5849 x730", "phone": "(285)962-0956 x0888", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.746+00:00", "username": "victoria" }'); INSERT INTO user_users VALUES ('44e640f4-3e0e-4bb4-92af-6263108893b2', false, '156558322290802', '2021-12-06 01:51:06.642+00', '2015-04-28 00:00:00+00', '2019-08-03 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.642+00', 'keanu', '{ "id": "44e640f4-3e0e-4bb4-92af-6263108893b2", "active": false, "barcode": "156558322290802", "createdDate": "2021-12-06T01:51:06.642+00:00", "departments": [], "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2019-08-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.639+00:00", "updatedDate": "2021-12-06T01:51:06.639+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "57337 Jeffry Hollow #516", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Richmond", "countryId": "US", "postalCode": "44195-6726", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1953-02-13T00:00:00.000+00:00", "email": "sophia@braun-cronin.lu", "firstName": "Berneice", "lastName": "Sawayn", "middleName": "Damion", "mobilePhone": "871-680-0312", "phone": "(863)008-2309 x5116", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.642+00:00", "username": "keanu" }'); INSERT INTO user_users VALUES ('457a3c37-cada-47ed-ae8d-c8eda723251f', false, '880575347359048', '2021-12-06 01:51:06.604+00', '2017-11-06 00:00:00+00', '2021-02-27 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.604+00', 'maverick', '{ "id": "457a3c37-cada-47ed-ae8d-c8eda723251f", "active": false, "barcode": "880575347359048", "createdDate": "2021-12-06T01:51:06.604+00:00", "departments": [], "enrollmentDate": "2017-11-06T00:00:00.000+00:00", "expirationDate": "2021-02-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.601+00:00", "updatedDate": "2021-12-06T01:51:06.601+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "77088 Batz Passage #269", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Redlands", "countryId": "US", "postalCode": "75179-8405", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "2008-04-27T00:00:00.000+00:00", "email": "dejah@kuphal-gerlach.bn", "firstName": "River", "lastName": "Schiller", "middleName": "Dora", "mobilePhone": "497-708-9054 x308", "phone": "538-975-1143", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.604+00:00", "username": "maverick" }'); INSERT INTO user_users VALUES ('45e77e83-60a3-4031-89d5-81222043dec6', false, '921184965279358', '2021-12-06 01:51:05.318+00', '2017-12-25 00:00:00+00', '2020-09-19 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.318+00', 'marquis', '{ "id": "45e77e83-60a3-4031-89d5-81222043dec6", "active": false, "barcode": "921184965279358", "createdDate": "2021-12-06T01:51:05.318+00:00", "departments": [], "enrollmentDate": "2017-12-25T00:00:00.000+00:00", "expirationDate": "2020-09-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.314+00:00", "updatedDate": "2021-12-06T01:51:05.314+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "96393 Herzog Tunnel", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Scottsdale", "countryId": "US", "postalCode": "47813", "primaryAddress": true, "region": "OK" } ], "dateOfBirth": "1983-09-20T00:00:00.000+00:00", "email": "jammie@beatty-kris.ba", "firstName": "Darren", "lastName": "Stanton", "middleName": "Macey", "phone": "298-168-0709", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.318+00:00", "username": "marquis" }'); INSERT INTO user_users VALUES ('46063a1d-34d3-4164-a252-77d2d27f3cfa', true, '1638756086776648106', '2021-12-06 02:01:26.785+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:26.785+00', 'circ-observer', '{ "id": "46063a1d-34d3-4164-a252-77d2d27f3cfa", "active": true, "barcode": "1638756086776648106", "createdDate": "2021-12-06T02:01:26.785+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.782+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.782+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "circ-observer", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:26.785+00:00", "username": "circ-observer" }'); INSERT INTO user_users VALUES ('46ed7160-426b-460e-91b3-ab22a7d6fc26', false, '105883620407176', '2021-12-06 01:51:06.876+00', '2015-05-25 00:00:00+00', '2020-04-04 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.876+00', 'reece', '{ "id": "46ed7160-426b-460e-91b3-ab22a7d6fc26", "active": false, "barcode": "105883620407176", "createdDate": "2021-12-06T01:51:06.876+00:00", "departments": [], "enrollmentDate": "2015-05-25T00:00:00.000+00:00", "expirationDate": "2020-04-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.873+00:00", "updatedDate": "2021-12-06T01:51:06.873+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "31994 Stehr Trace", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Anaheim", "countryId": "US", "postalCode": "05317", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1947-08-15T00:00:00.000+00:00", "email": "jammie@reinger-llc.ro", "firstName": "Elbert", "lastName": "Lowe", "middleName": "Barrett", "mobilePhone": "(229)092-7872 x3677", "phone": "889-770-7010 x23396", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.876+00:00", "username": "reece" }'); INSERT INTO user_users VALUES ('47f7eaea-1a18-4058-907c-62b7d095c61b', false, '344058867767195', '2021-12-06 01:51:07.327+00', '2016-12-31 00:00:00+00', '2019-11-27 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.327+00', 'janae', '{ "id": "47f7eaea-1a18-4058-907c-62b7d095c61b", "active": false, "barcode": "344058867767195", "createdDate": "2021-12-06T01:51:07.327+00:00", "departments": [], "enrollmentDate": "2016-12-31T00:00:00.000+00:00", "expirationDate": "2019-11-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.323+00:00", "updatedDate": "2021-12-06T01:51:07.323+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "79223 Mozelle Club Suite 154", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Florence", "countryId": "US", "postalCode": "35704", "primaryAddress": true, "region": "ID" } ], "dateOfBirth": "1951-03-17T00:00:00.000+00:00", "email": "pete@schulist-raynor-and-beer.ar.us", "firstName": "Justen", "lastName": "Hilll", "middleName": "Else", "mobilePhone": "(499)102-5994 x03456", "phone": "865.406.8773", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.327+00:00", "username": "janae" }'); INSERT INTO user_users VALUES ('482bf6cd-5692-437a-8b3d-e39ad6ab0d9b', true, '1638756084722390551', '2021-12-06 02:01:24.728+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:24.728+00', 'acq-manager', '{ "id": "482bf6cd-5692-437a-8b3d-e39ad6ab0d9b", "active": true, "barcode": "1638756084722390551", "createdDate": "2021-12-06T02:01:24.728+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:24.725+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:24.725+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "acq-manager", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:24.728+00:00", "username": "acq-manager" }'); INSERT INTO user_users VALUES ('48861bba-0d73-4277-8f44-f3b65b038017', false, '906257742605415', '2021-12-06 01:51:05.882+00', '2015-11-14 00:00:00+00', '2019-07-31 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.882+00', 'eugene', '{ "id": "48861bba-0d73-4277-8f44-f3b65b038017", "active": false, "barcode": "906257742605415", "createdDate": "2021-12-06T01:51:05.882+00:00", "departments": [], "enrollmentDate": "2015-11-14T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.878+00:00", "updatedDate": "2021-12-06T01:51:05.878+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "77331 Krajcik Field", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Bell", "countryId": "US", "postalCode": "58547-5667", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1981-01-13T00:00:00.000+00:00", "email": "andres@hyatt-turner-and-white.nz", "firstName": "Elvie", "lastName": "Satterfield", "phone": "408-348-2751", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.882+00:00", "username": "eugene" }'); INSERT INTO user_users VALUES ('488d4776-d0e2-4618-9ca9-78fa5dcc787c', false, '701139394489075', '2021-12-06 01:51:07.929+00', '2017-05-03 00:00:00+00', '2019-05-15 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.929+00', 'yoshiko', '{ "id": "488d4776-d0e2-4618-9ca9-78fa5dcc787c", "active": false, "barcode": "701139394489075", "createdDate": "2021-12-06T01:51:07.929+00:00", "departments": [], "enrollmentDate": "2017-05-03T00:00:00.000+00:00", "expirationDate": "2019-05-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.927+00:00", "updatedDate": "2021-12-06T01:51:07.927+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "19494 Ken Underpass Apt. 057", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Murray", "countryId": "US", "postalCode": "04798-5798", "primaryAddress": true, "region": "WA" } ], "dateOfBirth": "1963-08-19T00:00:00.000+00:00", "email": "jovan@reichel-and-sons.pg", "firstName": "Rosalia", "lastName": "Hodkiewicz", "middleName": "Mable", "phone": "1-549-518-7196 x16096", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.929+00:00", "username": "yoshiko" }'); INSERT INTO user_users VALUES ('48a3115d-d476-4582-b6a8-55c09eed7ec7', false, '680311830975018', '2021-12-06 01:51:06.933+00', '2016-08-31 00:00:00+00', '2021-01-01 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.933+00', 'graham', '{ "id": "48a3115d-d476-4582-b6a8-55c09eed7ec7", "active": false, "barcode": "680311830975018", "createdDate": "2021-12-06T01:51:06.933+00:00", "departments": [], "enrollmentDate": "2016-08-31T00:00:00.000+00:00", "expirationDate": "2021-01-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.930+00:00", "updatedDate": "2021-12-06T01:51:06.930+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "76841 Nicklaus Meadow Suite 588", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Phoenix", "countryId": "US", "postalCode": "84510-9997", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "2008-04-17T00:00:00.000+00:00", "email": "brown@hagenes-and-sons.dc.us", "firstName": "Luther", "lastName": "Auer", "mobilePhone": "(109)368-8088", "phone": "(823)734-9749 x557", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.933+00:00", "username": "graham" }'); INSERT INTO user_users VALUES ('4941fb33-5102-4f84-bd1c-4b1bd63e7622', true, NULL, '2021-12-06 01:53:53.863+00', NULL, NULL, NULL, NULL, '2021-12-06 01:53:53.863+00', 'system-user', '{ "id": "4941fb33-5102-4f84-bd1c-4b1bd63e7622", "active": true, "createdDate": "2021-12-06T01:53:53.863+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:53:18.538+00:00", "updatedDate": "2021-12-06T01:53:53.859+00:00" }, "personal": { "addresses": [], "lastName": "System" }, "proxyFor": [], "updatedDate": "2021-12-06T01:53:53.863+00:00", "username": "system-user" }'); INSERT INTO user_users VALUES ('4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea', false, '634378221416120', '2021-12-06 01:51:08.042+00', '2019-01-07 00:00:00+00', '2020-05-12 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.042+00', 'louie', '{ "id": "4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea", "active": false, "barcode": "634378221416120", "createdDate": "2021-12-06T01:51:08.042+00:00", "departments": [], "enrollmentDate": "2019-01-07T00:00:00.000+00:00", "expirationDate": "2020-05-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.039+00:00", "updatedDate": "2021-12-06T01:51:08.039+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "14483 Walsh Viaduct", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Phoenix", "countryId": "US", "postalCode": "85718-1813", "primaryAddress": true, "region": "SC" } ], "dateOfBirth": "2006-08-24T00:00:00.000+00:00", "email": "tia@braun-beatty.ke", "firstName": "Joyce", "lastName": "Brakus", "middleName": "Lane", "mobilePhone": "204-258-1825 x225", "phone": "(480)552-9477", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.042+00:00", "username": "louie" }'); INSERT INTO user_users VALUES ('4acbd1f5-dbfe-4928-8325-2955e50faa4b', false, '961651134809955', '2021-12-06 01:51:07.384+00', '2015-07-28 00:00:00+00', '2019-11-24 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.384+00', 'shaylee', '{ "id": "4acbd1f5-dbfe-4928-8325-2955e50faa4b", "active": false, "barcode": "961651134809955", "createdDate": "2021-12-06T01:51:07.384+00:00", "departments": [], "enrollmentDate": "2015-07-28T00:00:00.000+00:00", "expirationDate": "2019-11-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.381+00:00", "updatedDate": "2021-12-06T01:51:07.381+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "53643 Lorenz Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Santa Ana", "countryId": "US", "postalCode": "15698", "primaryAddress": true, "region": "LA" } ], "dateOfBirth": "1994-01-29T00:00:00.000+00:00", "email": "edward@hermiston-runte.ca.us", "firstName": "Hector", "lastName": "Sauer", "mobilePhone": "1-625-134-8454", "phone": "979.411.7549 x3208", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.384+00:00", "username": "shaylee" }'); INSERT INTO user_users VALUES ('4adf499e-c954-4bf9-9261-26720608e120', false, '214290413046203', '2021-12-06 01:51:06.592+00', '2018-01-08 00:00:00+00', '2021-01-21 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.592+00', 'edwina', '{ "id": "4adf499e-c954-4bf9-9261-26720608e120", "active": false, "barcode": "214290413046203", "createdDate": "2021-12-06T01:51:06.592+00:00", "departments": [], "enrollmentDate": "2018-01-08T00:00:00.000+00:00", "expirationDate": "2021-01-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.589+00:00", "updatedDate": "2021-12-06T01:51:06.589+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "61000 Lower", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Pine Bluff", "countryId": "US", "postalCode": "81092-1784", "primaryAddress": true, "region": "SC" } ], "dateOfBirth": "1972-01-16T00:00:00.000+00:00", "email": "mabelle@stanton-schaefer.sb", "firstName": "Melody", "lastName": "Wintheiser", "middleName": "Marcellus", "phone": "225.278.0004", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.592+00:00", "username": "edwina" }'); INSERT INTO user_users VALUES ('4bb8c488-6661-5021-9539-fd766bc79058', true, NULL, '2021-12-06 02:00:53.258+00', NULL, NULL, NULL, NULL, '2021-12-06 02:00:53.258+00', 'caiaSoftClient', '{ "id": "4bb8c488-6661-5021-9539-fd766bc79058", "active": true, "createdDate": "2021-12-06T02:00:53.258+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:00:53.256+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:00:53.256+00:00" }, "personal": { "addresses": [], "firstName": "caiaSoftClient", "lastName": "SYSTEM" }, "proxyFor": [], "updatedDate": "2021-12-06T02:00:53.258+00:00", "username": "caiaSoftClient" }'); INSERT INTO user_users VALUES ('4c564a60-8ac6-41f9-a8b6-088901a5f8ca', false, '546815596354001', '2021-12-06 01:51:06.35+00', '2017-08-19 00:00:00+00', '2020-05-30 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.35+00', 'aron', '{ "id": "4c564a60-8ac6-41f9-a8b6-088901a5f8ca", "active": false, "barcode": "546815596354001", "createdDate": "2021-12-06T01:51:06.350+00:00", "departments": [], "enrollmentDate": "2017-08-19T00:00:00.000+00:00", "expirationDate": "2020-05-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.346+00:00", "updatedDate": "2021-12-06T01:51:06.346+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "56788 Isadore Mountains", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Monterey", "countryId": "US", "postalCode": "30671-2288", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1957-03-08T00:00:00.000+00:00", "email": "juliana@reichel-bernhard.mm", "firstName": "Tyrel", "lastName": "McGlynn", "mobilePhone": "1-886-930-2767 x9243", "phone": "1-232-590-6006 x66909", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.350+00:00", "username": "aron" }'); INSERT INTO user_users VALUES ('4ca6da61-a9fa-4226-850d-43aa2d89f9a6', false, '808493955182189', '2021-12-06 01:51:06.08+00', '2017-08-15 00:00:00+00', '2020-11-03 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.08+00', 'clare', '{ "id": "4ca6da61-a9fa-4226-850d-43aa2d89f9a6", "active": false, "barcode": "808493955182189", "createdDate": "2021-12-06T01:51:06.080+00:00", "departments": [], "enrollmentDate": "2017-08-15T00:00:00.000+00:00", "expirationDate": "2020-11-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.077+00:00", "updatedDate": "2021-12-06T01:51:06.077+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "43238 Kuhn Meadows", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Springdale", "countryId": "US", "postalCode": "73494-8235", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1967-08-23T00:00:00.000+00:00", "email": "antonio@terry-hegmann.ma", "firstName": "Tyrel", "lastName": "Jewess", "middleName": "Jamey", "mobilePhone": "467-243-3953 x653", "phone": "229-117-3695", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.080+00:00", "username": "clare" }'); INSERT INTO user_users VALUES ('4cb9a24c-76e1-4755-9f54-f51115e00b53', false, '957779894505503', '2021-12-06 01:51:05.474+00', '2016-11-01 00:00:00+00', '2020-03-15 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.474+00', 'santiago', '{ "id": "4cb9a24c-76e1-4755-9f54-f51115e00b53", "active": false, "barcode": "957779894505503", "createdDate": "2021-12-06T01:51:05.474+00:00", "departments": [], "enrollmentDate": "2016-11-01T00:00:00.000+00:00", "expirationDate": "2020-03-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.469+00:00", "updatedDate": "2021-12-06T01:51:05.469+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "17685 Bogan Forge #378", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Santa Barbara", "countryId": "US", "postalCode": "56251-1269", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1947-08-16T00:00:00.000+00:00", "email": "keon@hane-llc.ir", "firstName": "Parker", "lastName": "Hayes", "mobilePhone": "1-096-690-6796 x70684", "phone": "735-486-0872 x1157", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.474+00:00", "username": "santiago" }'); INSERT INTO user_users VALUES ('4f012e5c-840b-4f7a-b7e0-c2e3b1d41309', false, '605566117903595', '2021-12-06 01:51:04.709+00', '2017-11-17 00:00:00+00', '2019-10-08 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.709+00', 'carlo', '{ "id": "4f012e5c-840b-4f7a-b7e0-c2e3b1d41309", "active": false, "barcode": "605566117903595", "createdDate": "2021-12-06T01:51:04.709+00:00", "departments": [], "enrollmentDate": "2017-11-17T00:00:00.000+00:00", "expirationDate": "2019-10-08T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.705+00:00", "updatedDate": "2021-12-06T01:51:04.705+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "65343 Ewald Mission", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rosemead", "countryId": "US", "postalCode": "24959-2664", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "2011-07-10T00:00:00.000+00:00", "email": "tod@crooks-llc.io", "firstName": "Toney", "lastName": "Denesik", "middleName": "Alexzander", "mobilePhone": "1-925-901-9660", "phone": "1-308-768-9868", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.709+00:00", "username": "carlo" }'); INSERT INTO user_users VALUES ('4f0e711c-d583-41e0-9555-b62f1725023f', false, '997383903573496', '2021-12-06 01:51:05.207+00', '2015-04-30 00:00:00+00', '2020-06-19 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.207+00', 'leslie', '{ "id": "4f0e711c-d583-41e0-9555-b62f1725023f", "active": false, "barcode": "997383903573496", "createdDate": "2021-12-06T01:51:05.207+00:00", "departments": [], "enrollmentDate": "2015-04-30T00:00:00.000+00:00", "expirationDate": "2020-06-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.203+00:00", "updatedDate": "2021-12-06T01:51:05.203+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "00430 Denis Parks", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Indianapolis", "countryId": "US", "postalCode": "14654-6001", "primaryAddress": true, "region": "FL" } ], "dateOfBirth": "1968-08-12T00:00:00.000+00:00", "email": "earnestine@sipes-stokes-and-durgan.so", "firstName": "Darius", "lastName": "Auer", "phone": "(916)599-0326", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.207+00:00", "username": "leslie" }'); INSERT INTO user_users VALUES ('4fd8d3dd-ebc0-4d10-ae81-199e831be32e', false, '501745941225589', '2021-12-06 01:51:06.28+00', '2016-03-16 00:00:00+00', '2021-03-05 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.28+00', 'willa', '{ "id": "4fd8d3dd-ebc0-4d10-ae81-199e831be32e", "active": false, "barcode": "501745941225589", "createdDate": "2021-12-06T01:51:06.280+00:00", "departments": [], "enrollmentDate": "2016-03-16T00:00:00.000+00:00", "expirationDate": "2021-03-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.276+00:00", "updatedDate": "2021-12-06T01:51:06.276+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "77066 Corkery Rapids Suite 251", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Huntsville", "countryId": "US", "postalCode": "61712", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "1958-10-27T00:00:00.000+00:00", "email": "wellington@reinger-inc.nc", "firstName": "Maryjane", "lastName": "Hamill", "middleName": "Rubie", "mobilePhone": "675.933.9336", "phone": "(301)179-9972 x3077", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.280+00:00", "username": "willa" }'); INSERT INTO user_users VALUES ('50e30476-ee93-4b16-a53c-27ce2c4b49d7', false, '883315883746696', '2021-12-06 01:51:05.443+00', '2019-01-24 00:00:00+00', '2019-09-30 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.443+00', 'niko', '{ "id": "50e30476-ee93-4b16-a53c-27ce2c4b49d7", "active": false, "barcode": "883315883746696", "createdDate": "2021-12-06T01:51:05.443+00:00", "departments": [], "enrollmentDate": "2019-01-24T00:00:00.000+00:00", "expirationDate": "2019-09-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.439+00:00", "updatedDate": "2021-12-06T01:51:05.439+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "19156 Fatima Cliff", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Mission Viejo", "countryId": "US", "postalCode": "91999-5314", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1989-09-23T00:00:00.000+00:00", "email": "lucie@moore-bradtke.gh", "firstName": "Hailey", "lastName": "Okuneva", "middleName": "Ronny", "mobilePhone": "656-639-3081", "phone": "1-120-262-3616", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.443+00:00", "username": "niko" }'); INSERT INTO user_users VALUES ('51e1e298-db10-465b-8c20-7f3d1e929834', false, '53906695937790', '2021-12-06 01:51:05.133+00', '2016-12-24 00:00:00+00', '2019-11-22 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.133+00', 'hanna', '{ "id": "51e1e298-db10-465b-8c20-7f3d1e929834", "active": false, "barcode": "53906695937790", "createdDate": "2021-12-06T01:51:05.133+00:00", "departments": [], "enrollmentDate": "2016-12-24T00:00:00.000+00:00", "expirationDate": "2019-11-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.129+00:00", "updatedDate": "2021-12-06T01:51:05.129+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "62455 Side", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Bernardino", "countryId": "US", "postalCode": "81491", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1961-07-19T00:00:00.000+00:00", "email": "joyce@ullrich-wiegand.ba", "firstName": "Emmie", "lastName": "Zulauf", "middleName": "Layne", "mobilePhone": "703.646.6286", "phone": "1-794-142-6128", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.133+00:00", "username": "hanna" }'); INSERT INTO user_users VALUES ('52e47672-d456-40b6-9f2d-6597d3e9f942', false, '851974014604984', '2021-12-06 01:51:05.415+00', '2019-01-06 00:00:00+00', '2019-10-04 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.415+00', 'angelita', '{ "id": "52e47672-d456-40b6-9f2d-6597d3e9f942", "active": false, "barcode": "851974014604984", "createdDate": "2021-12-06T01:51:05.415+00:00", "departments": [], "enrollmentDate": "2019-01-06T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.411+00:00", "updatedDate": "2021-12-06T01:51:05.411+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "68407 Vickie Causeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Vallejo", "countryId": "US", "postalCode": "37380-7984", "primaryAddress": true, "region": "PA" } ], "dateOfBirth": "1955-09-30T00:00:00.000+00:00", "email": "thalia@anderson-group.ia.us", "firstName": "Leslie", "lastName": "Kulas", "middleName": "Rowan", "mobilePhone": "1-930-357-4670 x9072", "phone": "284-427-9792 x6351", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.415+00:00", "username": "angelita" }'); INSERT INTO user_users VALUES ('543b7091-a5fd-4c6a-bece-85cff9e23366', true, '1638756086262724404', '2021-12-06 02:01:26.267+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:26.267+00', 'circ-admin', '{ "id": "543b7091-a5fd-4c6a-bece-85cff9e23366", "active": true, "barcode": "1638756086262724404", "createdDate": "2021-12-06T02:01:26.267+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.264+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.264+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "circ-admin", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:26.267+00:00", "username": "circ-admin" }'); INSERT INTO user_users VALUES ('54f65a75-f35b-4f56-86a6-fa4a3d957e57', false, '864467817890954', '2021-12-06 01:51:04.544+00', '2017-05-12 00:00:00+00', '2021-03-10 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.544+00', 'adah', '{ "id": "54f65a75-f35b-4f56-86a6-fa4a3d957e57", "active": false, "barcode": "864467817890954", "createdDate": "2021-12-06T01:51:04.544+00:00", "departments": [], "enrollmentDate": "2017-05-12T00:00:00.000+00:00", "expirationDate": "2021-03-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.537+00:00", "updatedDate": "2021-12-06T01:51:04.537+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "03749 Dorothea Prairie Suite 396", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Akron", "countryId": "US", "postalCode": "11104", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1947-10-15T00:00:00.000+00:00", "email": "jermey@hessel-hettinger.ok.us", "firstName": "Jackeline", "lastName": "Mueller", "mobilePhone": "1-585-529-3409", "phone": "751-145-4052 x783", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.544+00:00", "username": "adah" }'); INSERT INTO user_users VALUES ('550a06c3-8d0c-4ae3-a267-b32527272772', false, '791893588531159', '2021-12-06 01:51:05.359+00', '2017-12-28 00:00:00+00', '2019-07-31 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.359+00', 'anais', '{ "id": "550a06c3-8d0c-4ae3-a267-b32527272772", "active": false, "barcode": "791893588531159", "createdDate": "2021-12-06T01:51:05.359+00:00", "departments": [], "enrollmentDate": "2017-12-28T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.356+00:00", "updatedDate": "2021-12-06T01:51:05.356+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "93774 Lura Tunnel", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Elkhart", "countryId": "US", "postalCode": "19092", "primaryAddress": true, "region": "MO" } ], "dateOfBirth": "1999-07-16T00:00:00.000+00:00", "email": "hester@grant-sporer-and-hodkiewicz.pa.us", "firstName": "Edgardo", "lastName": "Krajcik", "middleName": "Arne", "mobilePhone": "(335)765-6908 x82927", "phone": "1-993-714-8622", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.359+00:00", "username": "anais" }'); INSERT INTO user_users VALUES ('55e09c25-0a7b-4df8-8bde-a8964b57ef40', false, '30162199862882', '2021-12-06 01:51:07.906+00', '2017-04-29 00:00:00+00', '2019-08-23 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.906+00', 'rory', '{ "id": "55e09c25-0a7b-4df8-8bde-a8964b57ef40", "active": false, "barcode": "30162199862882", "createdDate": "2021-12-06T01:51:07.906+00:00", "departments": [], "enrollmentDate": "2017-04-29T00:00:00.000+00:00", "expirationDate": "2019-08-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.902+00:00", "updatedDate": "2021-12-06T01:51:07.902+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "75833 Arvid Path", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Claremont", "countryId": "US", "postalCode": "51331-4265", "primaryAddress": true, "region": "FM" } ], "dateOfBirth": "1991-08-11T00:00:00.000+00:00", "email": "godfrey@koepp-lueilwitz.sa", "firstName": "Verda", "lastName": "Renner", "middleName": "Audreanne", "mobilePhone": "1-370-615-8878", "phone": "342.564.6025 x871", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.906+00:00", "username": "rory" }'); INSERT INTO user_users VALUES ('56708cfe-750e-49ad-b72a-003ce7ad78a4', false, '210781386299107', '2021-12-06 01:51:07.748+00', '2019-02-06 00:00:00+00', '2021-02-18 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.748+00', 'baylee', '{ "id": "56708cfe-750e-49ad-b72a-003ce7ad78a4", "active": false, "barcode": "210781386299107", "createdDate": "2021-12-06T01:51:07.748+00:00", "departments": [], "enrollmentDate": "2019-02-06T00:00:00.000+00:00", "expirationDate": "2021-02-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.745+00:00", "updatedDate": "2021-12-06T01:51:07.745+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "44302 Mertz Pike", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Lomita", "countryId": "US", "postalCode": "13291-5479", "primaryAddress": true, "region": "AL" } ], "dateOfBirth": "1971-11-18T00:00:00.000+00:00", "email": "kian@schamberger-nicolas.kr", "firstName": "Rudolph", "lastName": "Miller", "middleName": "Dahlia", "mobilePhone": "(527)252-5076 x005", "phone": "1-390-960-0355 x091", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.748+00:00", "username": "baylee" }'); INSERT INTO user_users VALUES ('56e37500-8f21-4587-9266-ee09d5ee4c08', true, NULL, '2021-12-06 01:53:00.631+00', NULL, NULL, NULL, NULL, '2021-12-06 01:53:00.631+00', 'mod-innreach', '{ "id": "56e37500-8f21-4587-9266-ee09d5ee4c08", "active": true, "createdDate": "2021-12-06T01:53:00.631+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:53:00.628+00:00", "updatedDate": "2021-12-06T01:53:00.628+00:00" }, "personal": { "addresses": [], "lastName": "System" }, "proxyFor": [], "updatedDate": "2021-12-06T01:53:00.631+00:00", "username": "mod-innreach" }'); INSERT INTO user_users VALUES ('578a03a3-b4b0-4b62-a62c-6caae710e3d7', true, '1638756089589649527', '2021-12-06 02:01:29.594+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:29.594+00', 'quick-marc-all', '{ "id": "578a03a3-b4b0-4b62-a62c-6caae710e3d7", "active": true, "barcode": "1638756089589649527", "createdDate": "2021-12-06T02:01:29.594+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.591+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.591+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "quick-marc-all", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:29.594+00:00", "username": "quick-marc-all" }'); INSERT INTO user_users VALUES ('57db810d-d59c-4443-ab43-3542cfdf7905', false, '503414023823857', '2021-12-06 01:51:06.887+00', '2018-06-11 00:00:00+00', '2019-10-19 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.887+00', 'eleazar', '{ "id": "57db810d-d59c-4443-ab43-3542cfdf7905", "active": false, "barcode": "503414023823857", "createdDate": "2021-12-06T01:51:06.887+00:00", "departments": [], "enrollmentDate": "2018-06-11T00:00:00.000+00:00", "expirationDate": "2019-10-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.884+00:00", "updatedDate": "2021-12-06T01:51:06.884+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "16243 Austin Harbors #832", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Eufaula", "countryId": "US", "postalCode": "96395", "primaryAddress": true, "region": "IL" } ], "dateOfBirth": "2003-10-22T00:00:00.000+00:00", "email": "warren@lind-llc.nu", "firstName": "Lowell", "lastName": "Roob", "middleName": "Elwyn", "mobilePhone": "(434)191-5582", "phone": "(480)987-5187 x678", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.887+00:00", "username": "eleazar" }'); INSERT INTO user_users VALUES ('583b7d52-8a9b-4aa4-9ba5-c35791600238', true, '1638756085047339065', '2021-12-06 02:01:25.052+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:25.052+00', 'acq-observer', '{ "id": "583b7d52-8a9b-4aa4-9ba5-c35791600238", "active": true, "barcode": "1638756085047339065", "createdDate": "2021-12-06T02:01:25.052+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:25.050+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:25.050+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "acq-observer", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:25.052+00:00", "username": "acq-observer" }'); INSERT INTO user_users VALUES ('589ee8e5-4fe4-4ab3-8a58-441cebea454a', false, '358963200950757', '2021-12-06 01:51:05.19+00', '2016-05-08 00:00:00+00', '2020-02-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.19+00', 'electa', '{ "id": "589ee8e5-4fe4-4ab3-8a58-441cebea454a", "active": false, "barcode": "358963200950757", "createdDate": "2021-12-06T01:51:05.190+00:00", "departments": [], "enrollmentDate": "2016-05-08T00:00:00.000+00:00", "expirationDate": "2020-02-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.186+00:00", "updatedDate": "2021-12-06T01:51:05.186+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "29346 Elroy Stravenue Suite 579", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Temecula", "countryId": "US", "postalCode": "90469", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "1949-06-23T00:00:00.000+00:00", "email": "rae@brekke-nolan.wa.us", "firstName": "Marisa", "lastName": "Medhurst", "mobilePhone": "1-172-048-6774", "phone": "713-608-0783", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.190+00:00", "username": "electa" }'); INSERT INTO user_users VALUES ('5a57f974-ea09-4c87-b7f5-e4144dde6128', false, '60913707627598', '2021-12-06 01:51:07.871+00', '2018-12-19 00:00:00+00', '2019-07-10 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.871+00', 'america', '{ "id": "5a57f974-ea09-4c87-b7f5-e4144dde6128", "active": false, "barcode": "60913707627598", "createdDate": "2021-12-06T01:51:07.871+00:00", "departments": [], "enrollmentDate": "2018-12-19T00:00:00.000+00:00", "expirationDate": "2019-07-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.868+00:00", "updatedDate": "2021-12-06T01:51:07.868+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "12461 Nader Cape", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Clemente", "countryId": "US", "postalCode": "08266", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "1974-03-20T00:00:00.000+00:00", "email": "amely@deckow-bradtke-and-dibbert.ng", "firstName": "Deja", "lastName": "Harvey", "middleName": "Arianna", "mobilePhone": "411.858.2748 x273", "phone": "(989)847-2344 x04637", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.871+00:00", "username": "america" }'); INSERT INTO user_users VALUES ('5bec815c-72b9-452f-ac19-bc2793c94537', false, '592809378069983', '2021-12-06 01:51:07.055+00', '2018-09-03 00:00:00+00', '2019-12-24 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.055+00', 'kathryn', '{ "id": "5bec815c-72b9-452f-ac19-bc2793c94537", "active": false, "barcode": "592809378069983", "createdDate": "2021-12-06T01:51:07.055+00:00", "departments": [], "enrollmentDate": "2018-09-03T00:00:00.000+00:00", "expirationDate": "2019-12-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.052+00:00", "updatedDate": "2021-12-06T01:51:07.052+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "37804 Ole River", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Orange", "countryId": "US", "postalCode": "54470-7692", "primaryAddress": true, "region": "NE" } ], "dateOfBirth": "1958-04-01T00:00:00.000+00:00", "email": "colin@koepp-group.pw", "firstName": "Domenick", "lastName": "Denesik", "middleName": "Maybelle", "phone": "144.849.2114 x782", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.055+00:00", "username": "kathryn" }'); INSERT INTO user_users VALUES ('5c4910af-508f-49f5-b2c2-f856ffd7f2aa', false, '687475934082478', '2021-12-06 01:51:05.982+00', '2018-08-22 00:00:00+00', '2020-10-17 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.982+00', 'minerva', '{ "id": "5c4910af-508f-49f5-b2c2-f856ffd7f2aa", "active": false, "barcode": "687475934082478", "createdDate": "2021-12-06T01:51:05.982+00:00", "departments": [], "enrollmentDate": "2018-08-22T00:00:00.000+00:00", "expirationDate": "2020-10-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.979+00:00", "updatedDate": "2021-12-06T01:51:05.979+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "69312 Keyshawn Drive Suite 999", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Diego", "countryId": "US", "postalCode": "00113", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "1975-01-27T00:00:00.000+00:00", "email": "angelica@kiehn-sporer-and-hammes.tg", "firstName": "Breana", "lastName": "Heller", "phone": "(663)844-6130 x99387", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.982+00:00", "username": "minerva" }'); INSERT INTO user_users VALUES ('5cc5bd09-d90e-4484-8058-74c237165877', false, '153469334675175', '2021-12-06 01:51:06.337+00', '2019-01-13 00:00:00+00', '2020-03-13 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.337+00', 'fritz', '{ "id": "5cc5bd09-d90e-4484-8058-74c237165877", "active": false, "barcode": "153469334675175", "createdDate": "2021-12-06T01:51:06.337+00:00", "departments": [], "enrollmentDate": "2019-01-13T00:00:00.000+00:00", "expirationDate": "2020-03-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.334+00:00", "updatedDate": "2021-12-06T01:51:06.334+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "89486 Flavie Crest Apt. 636", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Mobile", "countryId": "US", "postalCode": "80391-5580", "primaryAddress": true, "region": "OR" } ], "dateOfBirth": "1960-11-05T00:00:00.000+00:00", "email": "dereck@medhurst-gerlach-and-stracke.coop", "firstName": "Gladyce", "lastName": "Marquardt", "middleName": "Erica", "phone": "1-186-650-6147", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.337+00:00", "username": "fritz" }'); INSERT INTO user_users VALUES ('5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a', false, '266239838351268', '2021-12-06 01:51:05.119+00', '2015-07-31 00:00:00+00', '2020-11-22 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.119+00', 'zula', '{ "id": "5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a", "active": false, "barcode": "266239838351268", "createdDate": "2021-12-06T01:51:05.119+00:00", "departments": [], "enrollmentDate": "2015-07-31T00:00:00.000+00:00", "expirationDate": "2020-11-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.115+00:00", "updatedDate": "2021-12-06T01:51:05.115+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "70292 Collins Isle Suite 950", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Avalon", "countryId": "US", "postalCode": "68145", "primaryAddress": true, "region": "AK" } ], "dateOfBirth": "1981-01-09T00:00:00.000+00:00", "email": "marion@pollich-wyman.an", "firstName": "Emerson", "lastName": "Grant", "middleName": "Amira", "mobilePhone": "(504)649-6115 x156", "phone": "505-141-3379 x346", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.119+00:00", "username": "zula" }'); INSERT INTO user_users VALUES ('5dfffe75-267d-4133-b7bf-6d6daf26d5a4', false, '804117383735512', '2021-12-06 01:51:05.768+00', '2015-09-05 00:00:00+00', '2019-05-15 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.768+00', 'osvaldo', '{ "id": "5dfffe75-267d-4133-b7bf-6d6daf26d5a4", "active": false, "barcode": "804117383735512", "createdDate": "2021-12-06T01:51:05.768+00:00", "departments": [], "enrollmentDate": "2015-09-05T00:00:00.000+00:00", "expirationDate": "2019-05-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.765+00:00", "updatedDate": "2021-12-06T01:51:05.765+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "69187 Berta Center #150", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Norwalk", "countryId": "US", "postalCode": "23212-2519", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "1969-03-07T00:00:00.000+00:00", "email": "woodrow@wehner-llc.io", "firstName": "Marguerite", "lastName": "Schroeder", "mobilePhone": "1-962-343-8680", "phone": "1-942-839-9561 x44076", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.768+00:00", "username": "osvaldo" }'); INSERT INTO user_users VALUES ('5e3d70ff-a89a-44a0-a2e2-4cae67668805', false, '356270679006161', '2021-12-06 01:51:04.865+00', '2016-11-10 00:00:00+00', '2020-09-16 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.865+00', 'gardner', '{ "id": "5e3d70ff-a89a-44a0-a2e2-4cae67668805", "active": false, "barcode": "356270679006161", "createdDate": "2021-12-06T01:51:04.865+00:00", "departments": [], "enrollmentDate": "2016-11-10T00:00:00.000+00:00", "expirationDate": "2020-09-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.860+00:00", "updatedDate": "2021-12-06T01:51:04.860+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "75452 Ladarius Trace Apt. 604", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Clara", "countryId": "US", "postalCode": "17842", "primaryAddress": true, "region": "VT" } ], "dateOfBirth": "1993-09-23T00:00:00.000+00:00", "email": "mariela@wiza-schamberger.gq", "firstName": "Evalyn", "lastName": "Kautzer", "middleName": "Maxine", "phone": "1-102-800-2197 x336", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.865+00:00", "username": "gardner" }'); INSERT INTO user_users VALUES ('5e84b6a4-fde4-4099-ab54-c82c9041f685', false, '88302230830809', '2021-12-06 01:51:08.343+00', '2018-12-22 00:00:00+00', '2019-06-06 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.343+00', 'kenna', '{ "id": "5e84b6a4-fde4-4099-ab54-c82c9041f685", "active": false, "barcode": "88302230830809", "createdDate": "2021-12-06T01:51:08.343+00:00", "departments": [], "enrollmentDate": "2018-12-22T00:00:00.000+00:00", "expirationDate": "2019-06-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.340+00:00", "updatedDate": "2021-12-06T01:51:08.340+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "04016 Office", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Hidden Hills", "countryId": "US", "postalCode": "66872-1125", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1964-01-18T00:00:00.000+00:00", "email": "bernardo@mccullough-king-and-dicki.my", "firstName": "Madilyn", "lastName": "Wiza", "middleName": "Robb", "mobilePhone": "(317)720-4029", "phone": "(689)820-4964 x026", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.343+00:00", "username": "kenna" }'); INSERT INTO user_users VALUES ('5ed8a4be-f0d8-459d-9e9a-27f2e8c155af', false, '763581543039464', '2021-12-06 01:51:07.595+00', '2017-01-22 00:00:00+00', '2021-02-12 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.595+00', 'mertie', '{ "id": "5ed8a4be-f0d8-459d-9e9a-27f2e8c155af", "active": false, "barcode": "763581543039464", "createdDate": "2021-12-06T01:51:07.595+00:00", "departments": [], "enrollmentDate": "2017-01-22T00:00:00.000+00:00", "expirationDate": "2021-02-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.592+00:00", "updatedDate": "2021-12-06T01:51:07.592+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "64753 Ritchie Ridge Apt. 813", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hawthorne", "countryId": "US", "postalCode": "71977-2524", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "2014-04-05T00:00:00.000+00:00", "email": "kamryn@conroy-champlin-and-langosh.ga", "firstName": "Chester", "lastName": "Reynolds", "phone": "1-035-157-3080 x960", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.595+00:00", "username": "mertie" }'); INSERT INTO user_users VALUES ('5f9bb63a-66f1-47eb-bc19-f182af2fc3e7', false, '574640275318167', '2021-12-06 01:51:06.365+00', '2015-04-04 00:00:00+00', '2020-08-19 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.365+00', 'jaeden', '{ "id": "5f9bb63a-66f1-47eb-bc19-f182af2fc3e7", "active": false, "barcode": "574640275318167", "createdDate": "2021-12-06T01:51:06.365+00:00", "departments": [], "enrollmentDate": "2015-04-04T00:00:00.000+00:00", "expirationDate": "2020-08-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.361+00:00", "updatedDate": "2021-12-06T01:51:06.361+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "86782 Schmitt Square Apt. 508", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Daly City", "countryId": "US", "postalCode": "49924-4645", "primaryAddress": true, "region": "GA" } ], "dateOfBirth": "1956-01-02T00:00:00.000+00:00", "email": "tiffany@klocko-wolf-and-marks.mc", "firstName": "Vito", "lastName": "Koss", "phone": "(581)973-3149 x2722", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.365+00:00", "username": "jaeden" }'); INSERT INTO user_users VALUES ('60a579b3-1f3c-4996-b2aa-3cee21f24f4b', true, '1638756087582800384', '2021-12-06 02:01:27.59+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:27.59+00', 'copy-cataloger', '{ "id": "60a579b3-1f3c-4996-b2aa-3cee21f24f4b", "active": true, "barcode": "1638756087582800384", "createdDate": "2021-12-06T02:01:27.590+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.587+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.587+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "copy-cataloger", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:27.590+00:00", "username": "copy-cataloger" }'); INSERT INTO user_users VALUES ('62b25727-310f-4fa3-b308-666a6cf28c97', false, '944257632357327', '2021-12-06 01:51:05.255+00', '2016-01-24 00:00:00+00', '2019-08-31 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.255+00', 'herbert', '{ "id": "62b25727-310f-4fa3-b308-666a6cf28c97", "active": false, "barcode": "944257632357327", "createdDate": "2021-12-06T01:51:05.255+00:00", "departments": [], "enrollmentDate": "2016-01-24T00:00:00.000+00:00", "expirationDate": "2019-08-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.251+00:00", "updatedDate": "2021-12-06T01:51:05.251+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "68921 Brain Fort", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Laguna Woods", "countryId": "US", "postalCode": "44989-7843", "primaryAddress": true, "region": "OK" } ], "dateOfBirth": "2002-04-01T00:00:00.000+00:00", "email": "marlon@okuneva-ledner-and-botsford.ms.us", "firstName": "Evalyn", "lastName": "Bergnaum", "mobilePhone": "(310)631-5558 x6886", "phone": "(883)824-0791 x93849", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.255+00:00", "username": "herbert" }'); INSERT INTO user_users VALUES ('6302b991-3223-4bc7-ae66-795d161f64ab', false, '855537998260640', '2021-12-06 01:51:06.239+00', '2017-04-05 00:00:00+00', '2019-09-20 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.239+00', 'corrine', '{ "id": "6302b991-3223-4bc7-ae66-795d161f64ab", "active": false, "barcode": "855537998260640", "createdDate": "2021-12-06T01:51:06.239+00:00", "departments": [], "enrollmentDate": "2017-04-05T00:00:00.000+00:00", "expirationDate": "2019-09-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.236+00:00", "updatedDate": "2021-12-06T01:51:06.236+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "84403 Blake Port", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Lake Forest", "countryId": "US", "postalCode": "58608", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "1968-03-13T00:00:00.000+00:00", "email": "ralph@olson-group.aq", "firstName": "Arthur", "lastName": "Treutel", "mobilePhone": "700-321-8490 x68676", "phone": "978-586-0651", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.239+00:00", "username": "corrine" }'); INSERT INTO user_users VALUES ('63ff6975-5d7f-46c1-983a-dba27d163c4a', false, '558211605444718', '2021-12-06 01:51:05.923+00', '2016-08-17 00:00:00+00', '2019-11-15 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.923+00', 'caitlyn', '{ "id": "63ff6975-5d7f-46c1-983a-dba27d163c4a", "active": false, "barcode": "558211605444718", "createdDate": "2021-12-06T01:51:05.923+00:00", "departments": [], "enrollmentDate": "2016-08-17T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.920+00:00", "updatedDate": "2021-12-06T01:51:05.920+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "45137 Jast Causeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Apple Valley", "countryId": "US", "postalCode": "39226-2856", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1954-10-07T00:00:00.000+00:00", "email": "faustino@mueller-inc.gu", "firstName": "Erling", "lastName": "West", "middleName": "Keeley", "phone": "761.817.8409 x005", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.923+00:00", "username": "caitlyn" }'); INSERT INTO user_users VALUES ('65ec5d8b-c3f6-41d4-8026-fba1f7cae715', false, '507697350841588', '2021-12-06 01:51:07.466+00', '2017-08-27 00:00:00+00', '2020-01-18 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.466+00', 'victor', '{ "id": "65ec5d8b-c3f6-41d4-8026-fba1f7cae715", "active": false, "barcode": "507697350841588", "createdDate": "2021-12-06T01:51:07.466+00:00", "departments": [], "enrollmentDate": "2017-08-27T00:00:00.000+00:00", "expirationDate": "2020-01-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.463+00:00", "updatedDate": "2021-12-06T01:51:07.463+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "85611 Friesen Locks", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "El Segundo", "countryId": "US", "postalCode": "30380-4558", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "1999-02-03T00:00:00.000+00:00", "email": "trinity@lehner-nikolaus.sc", "firstName": "Coy", "lastName": "Jerde", "middleName": "Delta", "mobilePhone": "314.735.2132 x715", "phone": "(148)070-7330", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.466+00:00", "username": "victor" }'); INSERT INTO user_users VALUES ('65fcc41e-df15-459a-bf93-2f53cfa8ff7f', false, '947268160813830', '2021-12-06 01:51:08.063+00', '2016-12-25 00:00:00+00', '2019-08-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:08.063+00', 'renee', '{ "id": "65fcc41e-df15-459a-bf93-2f53cfa8ff7f", "active": false, "barcode": "947268160813830", "createdDate": "2021-12-06T01:51:08.063+00:00", "departments": [], "enrollmentDate": "2016-12-25T00:00:00.000+00:00", "expirationDate": "2019-08-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.060+00:00", "updatedDate": "2021-12-06T01:51:08.060+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "88019 Floor 277", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Dana Point", "countryId": "US", "postalCode": "58686-2415", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1994-11-06T00:00:00.000+00:00", "email": "cedrick@carter-kihn.bj", "firstName": "Monroe", "lastName": "Bednar", "middleName": "Elvera", "mobilePhone": "128.156.5851", "phone": "111-788-2683", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.063+00:00", "username": "renee" }'); INSERT INTO user_users VALUES ('66fe5bd9-1129-4b40-b54d-05b4c358463c', false, '623317241177726', '2021-12-06 01:51:04.619+00', '2018-10-10 00:00:00+00', '2020-05-14 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.619+00', 'guiseppe', '{ "id": "66fe5bd9-1129-4b40-b54d-05b4c358463c", "active": false, "barcode": "623317241177726", "createdDate": "2021-12-06T01:51:04.619+00:00", "departments": [], "enrollmentDate": "2018-10-10T00:00:00.000+00:00", "expirationDate": "2020-05-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.614+00:00", "updatedDate": "2021-12-06T01:51:04.614+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "14567 Smitham Path", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Montgomery", "countryId": "US", "postalCode": "06036", "primaryAddress": true, "region": "MO" } ], "dateOfBirth": "2006-10-25T00:00:00.000+00:00", "email": "petra@herzog-group.mu", "firstName": "Jazlyn", "lastName": "Koss", "middleName": "Kaya", "mobilePhone": "362.131.9602 x6297", "phone": "705.954.0099 x5114", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.619+00:00", "username": "guiseppe" }'); INSERT INTO user_users VALUES ('67002fdf-b2f6-4e1f-bab8-d750efb0558f', false, '483089374189503', '2021-12-06 01:51:05.526+00', '2017-02-24 00:00:00+00', '2019-06-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.526+00', 'jaclyn', '{ "id": "67002fdf-b2f6-4e1f-bab8-d750efb0558f", "active": false, "barcode": "483089374189503", "createdDate": "2021-12-06T01:51:05.526+00:00", "departments": [], "enrollmentDate": "2017-02-24T00:00:00.000+00:00", "expirationDate": "2019-06-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.522+00:00", "updatedDate": "2021-12-06T01:51:05.522+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "80037 Krajcik Dale", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Bessemer", "countryId": "US", "postalCode": "08879", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "2013-03-26T00:00:00.000+00:00", "email": "albin@nikolaus-stark.wi.us", "firstName": "Frederik", "lastName": "Oberbrunner", "middleName": "Amelia", "mobilePhone": "1-622-373-5253", "phone": "1-920-170-2124 x8035", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.526+00:00", "username": "jaclyn" }'); INSERT INTO user_users VALUES ('67e40b72-66ca-4113-bed9-17a40bc448e0', false, '966003183343282', '2021-12-06 01:51:05.852+00', '2017-02-17 00:00:00+00', '2019-11-21 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.852+00', 'marlee', '{ "id": "67e40b72-66ca-4113-bed9-17a40bc448e0", "active": false, "barcode": "966003183343282", "createdDate": "2021-12-06T01:51:05.852+00:00", "departments": [], "enrollmentDate": "2017-02-17T00:00:00.000+00:00", "expirationDate": "2019-11-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.849+00:00", "updatedDate": "2021-12-06T01:51:05.849+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "20919 Adolf Vista Suite 060", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Marino", "countryId": "US", "postalCode": "92298", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "2006-09-25T00:00:00.000+00:00", "email": "abraham@little-spinka-and-koepp.pr", "firstName": "Mylene", "lastName": "Herman", "mobilePhone": "(577)033-8256 x896", "phone": "1-181-329-3026 x244", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.852+00:00", "username": "marlee" }'); INSERT INTO user_users VALUES ('69a7d4f8-a32a-46d8-a006-0e5ea69f34bc', false, '535145956127635', '2021-12-06 01:51:07.584+00', '2017-11-18 00:00:00+00', '2020-08-04 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.584+00', 'alyson', '{ "id": "69a7d4f8-a32a-46d8-a006-0e5ea69f34bc", "active": false, "barcode": "535145956127635", "createdDate": "2021-12-06T01:51:07.584+00:00", "departments": [], "enrollmentDate": "2017-11-18T00:00:00.000+00:00", "expirationDate": "2020-08-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.581+00:00", "updatedDate": "2021-12-06T01:51:07.581+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "06616 Verda Brook #606", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Artesia", "countryId": "US", "postalCode": "56270-4594", "primaryAddress": true, "region": "VI" } ], "dateOfBirth": "2000-12-21T00:00:00.000+00:00", "email": "ludie@will-bode-and-yundt.wf", "firstName": "Madeline", "lastName": "Russel", "mobilePhone": "1-311-014-7555 x947", "phone": "1-871-876-7675", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.584+00:00", "username": "alyson" }'); INSERT INTO user_users VALUES ('6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e', false, '463985584611510', '2021-12-06 01:51:06.031+00', '2015-10-16 00:00:00+00', '2020-04-27 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.031+00', 'jimmie', '{ "id": "6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e", "active": false, "barcode": "463985584611510", "createdDate": "2021-12-06T01:51:06.031+00:00", "departments": [], "enrollmentDate": "2015-10-16T00:00:00.000+00:00", "expirationDate": "2020-04-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.028+00:00", "updatedDate": "2021-12-06T01:51:06.028+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "46087 Evan Circle Suite 583", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Laguna Woods", "countryId": "US", "postalCode": "43554", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "1963-08-16T00:00:00.000+00:00", "email": "stone@buckridge-inc.ru", "firstName": "Modesta", "lastName": "Runolfsson", "mobilePhone": "227-143-9012 x232", "phone": "(284)419-7957 x666", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.031+00:00", "username": "jimmie" }'); INSERT INTO user_users VALUES ('6b5f249c-7df1-4c2f-afc2-0ef6fc21b701', false, '423963263517549', '2021-12-06 01:51:05.67+00', '2015-06-09 00:00:00+00', '2019-06-06 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.67+00', 'frederic', '{ "id": "6b5f249c-7df1-4c2f-afc2-0ef6fc21b701", "active": false, "barcode": "423963263517549", "createdDate": "2021-12-06T01:51:05.670+00:00", "departments": [], "enrollmentDate": "2015-06-09T00:00:00.000+00:00", "expirationDate": "2019-06-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.663+00:00", "updatedDate": "2021-12-06T01:51:05.663+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "92083 Travis Fort Apt. 333", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Mateo", "countryId": "US", "postalCode": "23836", "primaryAddress": true, "region": "LA" } ], "dateOfBirth": "2002-02-03T00:00:00.000+00:00", "email": "taryn@herman-inc.museum", "firstName": "Haley", "lastName": "Quitzon", "middleName": "Winona", "mobilePhone": "933.730.7529", "phone": "1-403-675-9843 x731", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.670+00:00", "username": "frederic" }'); INSERT INTO user_users VALUES ('6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d', false, '844336017335276', '2021-12-06 01:51:06.488+00', '2016-02-11 00:00:00+00', '2020-05-28 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.488+00', 'susana', '{ "id": "6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d", "active": false, "barcode": "844336017335276", "createdDate": "2021-12-06T01:51:06.488+00:00", "departments": [], "enrollmentDate": "2016-02-11T00:00:00.000+00:00", "expirationDate": "2020-05-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.484+00:00", "updatedDate": "2021-12-06T01:51:06.484+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "44710 William Summit", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Verne", "countryId": "US", "postalCode": "89003-6843", "primaryAddress": true, "region": "DE" } ], "dateOfBirth": "1966-04-11T00:00:00.000+00:00", "email": "rowena@steuber-lynch.ga", "firstName": "Ronny", "lastName": "Rogahn", "phone": "(246)059-3463 x7751", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.488+00:00", "username": "susana" }'); INSERT INTO user_users VALUES ('6c76eeec-183d-4635-9019-11ce8623d50c', false, '35138758585411', '2021-12-06 01:51:06.395+00', '2017-03-23 00:00:00+00', '2020-08-14 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.395+00', 'jessie', '{ "id": "6c76eeec-183d-4635-9019-11ce8623d50c", "active": false, "barcode": "35138758585411", "createdDate": "2021-12-06T01:51:06.395+00:00", "departments": [], "enrollmentDate": "2017-03-23T00:00:00.000+00:00", "expirationDate": "2020-08-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.390+00:00", "updatedDate": "2021-12-06T01:51:06.390+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "83631 Wilma Unions #135", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Huntsville", "countryId": "US", "postalCode": "06723", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1982-12-23T00:00:00.000+00:00", "email": "eldred@morissette-and-sons.sn", "firstName": "Lincoln", "lastName": "Koss", "middleName": "Izabella", "phone": "(723)646-2360", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.395+00:00", "username": "jessie" }'); INSERT INTO user_users VALUES ('6e74dfe1-2eca-48bd-89ce-9fe1633920a3', false, '70567676297152', '2021-12-06 01:51:07.538+00', '2017-04-14 00:00:00+00', '2020-05-10 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.538+00', 'kaley', '{ "id": "6e74dfe1-2eca-48bd-89ce-9fe1633920a3", "active": false, "barcode": "70567676297152", "createdDate": "2021-12-06T01:51:07.538+00:00", "departments": [], "enrollmentDate": "2017-04-14T00:00:00.000+00:00", "expirationDate": "2020-05-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.535+00:00", "updatedDate": "2021-12-06T01:51:07.535+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "85846 Block Corner", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bell", "countryId": "US", "postalCode": "14504-7792", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "1968-01-08T00:00:00.000+00:00", "email": "baby@abernathy-and-sons.cm", "firstName": "Bettye", "lastName": "Murphy", "mobilePhone": "591.690.6025 x9830", "phone": "783.614.3439", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.538+00:00", "username": "kaley" }'); INSERT INTO user_users VALUES ('6f36265e-722a-490a-b436-806e63af2ea7', false, '693787594998493', '2021-12-06 01:51:08.174+00', '2016-06-04 00:00:00+00', '2021-01-09 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.174+00', 'kayla', '{ "id": "6f36265e-722a-490a-b436-806e63af2ea7", "active": false, "barcode": "693787594998493", "createdDate": "2021-12-06T01:51:08.174+00:00", "departments": [], "enrollmentDate": "2016-06-04T00:00:00.000+00:00", "expirationDate": "2021-01-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.171+00:00", "updatedDate": "2021-12-06T01:51:08.171+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "25431 Gilbert Cape", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Owensboro", "countryId": "US", "postalCode": "96912", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "2009-08-15T00:00:00.000+00:00", "email": "luella@swift-hegmann-and-gutmann.aw", "firstName": "Doug", "lastName": "Denesik", "middleName": "Alf", "mobilePhone": "(830)648-7529 x95254", "phone": "(429)999-9252 x5844", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.174+00:00", "username": "kayla" }'); INSERT INTO user_users VALUES ('6f4111a4-8b6f-4008-9b95-ecd31db69234', false, '272166777013790', '2021-12-06 01:51:06.227+00', '2015-12-28 00:00:00+00', '2020-07-17 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.227+00', 'kris', '{ "id": "6f4111a4-8b6f-4008-9b95-ecd31db69234", "active": false, "barcode": "272166777013790", "createdDate": "2021-12-06T01:51:06.227+00:00", "departments": [], "enrollmentDate": "2015-12-28T00:00:00.000+00:00", "expirationDate": "2020-07-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.224+00:00", "updatedDate": "2021-12-06T01:51:06.224+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "95698 Funk Underpass Apt. 931", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Nogales", "countryId": "US", "postalCode": "54478-9282", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "1985-04-10T00:00:00.000+00:00", "email": "frank@lowe-inc.cf", "firstName": "Velda", "lastName": "Rodriguez", "middleName": "Cora", "mobilePhone": "217-047-4021 x5204", "phone": "384-546-7881", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.227+00:00", "username": "kris" }'); INSERT INTO user_users VALUES ('6f511507-dab9-42fb-b966-bb8a1330ee7a', false, '893791354018937', '2021-12-06 01:51:07.515+00', '2017-06-20 00:00:00+00', '2020-07-28 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.515+00', 'odell', '{ "id": "6f511507-dab9-42fb-b966-bb8a1330ee7a", "active": false, "barcode": "893791354018937", "createdDate": "2021-12-06T01:51:07.515+00:00", "departments": [], "enrollmentDate": "2017-06-20T00:00:00.000+00:00", "expirationDate": "2020-07-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.512+00:00", "updatedDate": "2021-12-06T01:51:07.512+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "98020 Kunze Lights", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hamilton", "countryId": "US", "postalCode": "67263-7943", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1946-11-11T00:00:00.000+00:00", "email": "demetris@vandervort-nikolaus-and-skiles.ba", "firstName": "Mara", "lastName": "Goodwin", "middleName": "Mikayla", "mobilePhone": "1-456-899-6815 x518", "phone": "888.500.6770 x22570", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.515+00:00", "username": "odell" }'); INSERT INTO user_users VALUES ('6f644096-0cb6-4d9c-9da4-0831b3625c0d', false, '456173865331194', '2021-12-06 01:51:05.734+00', '2016-02-10 00:00:00+00', '2019-04-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.734+00', 'seth', '{ "id": "6f644096-0cb6-4d9c-9da4-0831b3625c0d", "active": false, "barcode": "456173865331194", "createdDate": "2021-12-06T01:51:05.734+00:00", "departments": [], "enrollmentDate": "2016-02-10T00:00:00.000+00:00", "expirationDate": "2019-04-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.731+00:00", "updatedDate": "2021-12-06T01:51:05.731+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "14106 Nils Extension Suite 279", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Inglewood", "countryId": "US", "postalCode": "92493", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "1995-09-18T00:00:00.000+00:00", "email": "yesenia@schimmel-inc.id", "firstName": "Casimir", "lastName": "Hyatt", "middleName": "Arthur", "mobilePhone": "1-142-783-1473", "phone": "(679)277-6615 x14809", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.734+00:00", "username": "seth" }'); INSERT INTO user_users VALUES ('6ff36aa8-c68d-42c9-b68b-ece603ea59d7', false, '904469293249338', '2021-12-06 01:51:06.799+00', '2018-07-24 00:00:00+00', '2020-01-05 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.799+00', 'amir', '{ "id": "6ff36aa8-c68d-42c9-b68b-ece603ea59d7", "active": false, "barcode": "904469293249338", "createdDate": "2021-12-06T01:51:06.799+00:00", "departments": [], "enrollmentDate": "2018-07-24T00:00:00.000+00:00", "expirationDate": "2020-01-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.794+00:00", "updatedDate": "2021-12-06T01:51:06.794+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "06864 Huels Skyway", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Fountain Valley", "countryId": "US", "postalCode": "02030", "primaryAddress": true, "region": "AS" } ], "dateOfBirth": "1968-12-04T00:00:00.000+00:00", "email": "zola@wisozk-oreilly-and-veum.ls", "firstName": "Ellis", "lastName": "Kuhic", "middleName": "Darwin", "mobilePhone": "(571)322-6274", "phone": "697.664.2459 x1220", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.799+00:00", "username": "amir" }'); INSERT INTO user_users VALUES ('70e0c050-e842-4eee-9632-967a49e43bb2', false, '291411120468286', '2021-12-06 01:51:07.759+00', '2015-05-22 00:00:00+00', '2020-06-10 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.759+00', 'hayden', '{ "id": "70e0c050-e842-4eee-9632-967a49e43bb2", "active": false, "barcode": "291411120468286", "createdDate": "2021-12-06T01:51:07.759+00:00", "departments": [], "enrollmentDate": "2015-05-22T00:00:00.000+00:00", "expirationDate": "2020-06-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.756+00:00", "updatedDate": "2021-12-06T01:51:07.756+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "87178 Darian Grove #311", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Oro Valley", "countryId": "US", "postalCode": "85548", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "1979-09-15T00:00:00.000+00:00", "email": "israel@schmidt-stamm.gd", "firstName": "Willard", "lastName": "Torp", "middleName": "Sofia", "phone": "(241)231-0895", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.759+00:00", "username": "hayden" }'); INSERT INTO user_users VALUES ('71f28723-784e-4292-b794-af4ffca9178e', false, '345265690950199', '2021-12-06 01:51:04.489+00', '2018-08-12 00:00:00+00', '2019-06-12 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.489+00', 'genesis', '{ "id": "71f28723-784e-4292-b794-af4ffca9178e", "active": false, "barcode": "345265690950199", "createdDate": "2021-12-06T01:51:04.489+00:00", "departments": [], "enrollmentDate": "2018-08-12T00:00:00.000+00:00", "expirationDate": "2019-06-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.477+00:00", "updatedDate": "2021-12-06T01:51:04.477+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "98801 Brando Divide Apt. 054", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Gary", "countryId": "US", "postalCode": "44468", "primaryAddress": true, "region": "PA" } ], "dateOfBirth": "1975-08-08T00:00:00.000+00:00", "email": "johan@kirlin-inc.gs", "firstName": "Bertha", "lastName": "Schimmel", "middleName": "Darrin", "phone": "(348)233-4100", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.489+00:00", "username": "genesis" }'); INSERT INTO user_users VALUES ('71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c', false, '299308637069604', '2021-12-06 01:51:06.155+00', '2018-03-31 00:00:00+00', '2019-10-06 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.155+00', 'khalid', '{ "id": "71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c", "active": false, "barcode": "299308637069604", "createdDate": "2021-12-06T01:51:06.155+00:00", "departments": [], "enrollmentDate": "2018-03-31T00:00:00.000+00:00", "expirationDate": "2019-10-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.151+00:00", "updatedDate": "2021-12-06T01:51:06.151+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "77935 Lucy Lakes", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Valencia", "countryId": "US", "postalCode": "64993-0455", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "1949-03-26T00:00:00.000+00:00", "email": "elda@koelpin-brakus.pa", "firstName": "Esta", "lastName": "Dickinson", "mobilePhone": "818.624.6615 x295", "phone": "633-148-6027", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.155+00:00", "username": "khalid" }'); INSERT INTO user_users VALUES ('722d30ad-a8f4-4334-8605-990724027108', true, '1638756090030824617', '2021-12-06 02:01:30.035+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:30.035+00', 'user-basic-view', '{ "id": "722d30ad-a8f4-4334-8605-990724027108", "active": true, "barcode": "1638756090030824617", "createdDate": "2021-12-06T02:01:30.035+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:30.032+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:30.032+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "user-basic-view", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:30.035+00:00", "username": "user-basic-view" }'); INSERT INTO user_users VALUES ('734f2e97-2c41-4e70-9b98-44cead2607e4', false, '117648823412451', '2021-12-06 01:51:07.94+00', '2018-01-10 00:00:00+00', '2019-08-24 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.94+00', 'laurine', '{ "id": "734f2e97-2c41-4e70-9b98-44cead2607e4", "active": false, "barcode": "117648823412451", "createdDate": "2021-12-06T01:51:07.940+00:00", "departments": [], "enrollmentDate": "2018-01-10T00:00:00.000+00:00", "expirationDate": "2019-08-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.937+00:00", "updatedDate": "2021-12-06T01:51:07.937+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "92674 Nikko Street Apt. 791", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Fremont", "countryId": "US", "postalCode": "18901", "primaryAddress": true, "region": "NV" } ], "dateOfBirth": "1957-01-08T00:00:00.000+00:00", "email": "lesly@bradtke-and-sons.hu", "firstName": "Name", "lastName": "Lang", "middleName": "Reina", "mobilePhone": "528-675-4904", "phone": "1-953-587-8208 x563", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.940+00:00", "username": "laurine" }'); INSERT INTO user_users VALUES ('745bdee1-458c-4076-bad1-be5a470c49fb', false, '723090362753680', '2021-12-06 01:51:04.808+00', '2018-08-05 00:00:00+00', '2019-08-11 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.808+00', 'roberto', '{ "id": "745bdee1-458c-4076-bad1-be5a470c49fb", "active": false, "barcode": "723090362753680", "createdDate": "2021-12-06T01:51:04.808+00:00", "departments": [], "enrollmentDate": "2018-08-05T00:00:00.000+00:00", "expirationDate": "2019-08-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.802+00:00", "updatedDate": "2021-12-06T01:51:04.802+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "84348 Kaylin Turnpike", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Fountain Valley", "countryId": "US", "postalCode": "07732-8693", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1978-12-31T00:00:00.000+00:00", "email": "lavern@heller-ryan-and-stanton.zm", "firstName": "Mossie", "lastName": "Koss", "mobilePhone": "(470)016-1944", "phone": "1-915-933-6017 x91395", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.808+00:00", "username": "roberto" }'); INSERT INTO user_users VALUES ('7597bd13-9f57-4cd1-a7cf-dc0ac7375280', false, '738734358526066', '2021-12-06 01:51:04.675+00', '2017-07-06 00:00:00+00', '2019-08-27 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.675+00', 'neil', '{ "id": "7597bd13-9f57-4cd1-a7cf-dc0ac7375280", "active": false, "barcode": "738734358526066", "createdDate": "2021-12-06T01:51:04.675+00:00", "departments": [], "enrollmentDate": "2017-07-06T00:00:00.000+00:00", "expirationDate": "2019-08-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.670+00:00", "updatedDate": "2021-12-06T01:51:04.670+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "70819 Kamron Parkways Suite 334", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Tucson", "countryId": "US", "postalCode": "45736-8922", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1958-12-09T00:00:00.000+00:00", "email": "aida@daugherty-stark.om", "firstName": "Retha", "lastName": "Lakin", "mobilePhone": "038.636.7271 x696", "phone": "113.449.8885 x88304", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.675+00:00", "username": "neil" }'); INSERT INTO user_users VALUES ('75da2654-00a8-4ca5-9c73-2bf9e1e5c883', false, '119980534501859', '2021-12-06 01:51:04.883+00', '2017-08-31 00:00:00+00', '2019-05-07 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.883+00', 'willie', '{ "id": "75da2654-00a8-4ca5-9c73-2bf9e1e5c883", "active": false, "barcode": "119980534501859", "createdDate": "2021-12-06T01:51:04.883+00:00", "departments": [], "enrollmentDate": "2017-08-31T00:00:00.000+00:00", "expirationDate": "2019-05-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.878+00:00", "updatedDate": "2021-12-06T01:51:04.878+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "18497 Turcotte Village Suite 044", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Youngstown", "countryId": "US", "postalCode": "53061-3085", "primaryAddress": true, "region": "ME" } ], "dateOfBirth": "1950-09-26T00:00:00.000+00:00", "email": "caden@okon-roob-and-williamson.gp", "firstName": "Macey", "lastName": "Hagenes", "middleName": "Doyle", "phone": "679.923.3990", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.883+00:00", "username": "willie" }'); INSERT INTO user_users VALUES ('78284bd0-cdf1-4fc9-a404-739388b41cc7', false, '67306877178072', '2021-12-06 01:51:05.459+00', '2015-03-17 00:00:00+00', '2019-10-17 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.459+00', 'greyson', '{ "id": "78284bd0-cdf1-4fc9-a404-739388b41cc7", "active": false, "barcode": "67306877178072", "createdDate": "2021-12-06T01:51:05.459+00:00", "departments": [], "enrollmentDate": "2015-03-17T00:00:00.000+00:00", "expirationDate": "2019-10-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.455+00:00", "updatedDate": "2021-12-06T01:51:05.455+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "97658 Abigayle Inlet Apt. 717", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Placentia", "countryId": "US", "postalCode": "21669", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "2005-11-26T00:00:00.000+00:00", "email": "rhoda@ratke-inc.tx.us", "firstName": "Niko", "lastName": "Von", "middleName": "Ottilie", "mobilePhone": "916-301-8093 x63648", "phone": "(789)045-8884", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.459+00:00", "username": "greyson" }'); INSERT INTO user_users VALUES ('785c6f6e-36a5-4434-8aa7-210bb55cea34', false, '792078722873427', '2021-12-06 01:51:05.757+00', '2015-05-09 00:00:00+00', '2019-04-27 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.757+00', 'jett', '{ "id": "785c6f6e-36a5-4434-8aa7-210bb55cea34", "active": false, "barcode": "792078722873427", "createdDate": "2021-12-06T01:51:05.757+00:00", "departments": [], "enrollmentDate": "2015-05-09T00:00:00.000+00:00", "expirationDate": "2019-04-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.754+00:00", "updatedDate": "2021-12-06T01:51:05.754+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "97189 Dovie Place", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rolling Hills Estates", "countryId": "US", "postalCode": "60810-1305", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "1950-05-16T00:00:00.000+00:00", "email": "nash@witting-mertz.om", "firstName": "Bill", "lastName": "McDermott", "middleName": "Macey", "mobilePhone": "856.132.1372 x669", "phone": "082.266.7001 x1124", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.757+00:00", "username": "jett" }'); INSERT INTO user_users VALUES ('78a21fb3-0e80-4172-8ccf-8a1d8d5e1553', false, '27389356499174', '2021-12-06 01:51:05.629+00', '2017-04-19 00:00:00+00', '2020-03-01 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.629+00', 'lincoln', '{ "id": "78a21fb3-0e80-4172-8ccf-8a1d8d5e1553", "active": false, "barcode": "27389356499174", "createdDate": "2021-12-06T01:51:05.629+00:00", "departments": [], "enrollmentDate": "2017-04-19T00:00:00.000+00:00", "expirationDate": "2020-03-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.626+00:00", "updatedDate": "2021-12-06T01:51:05.626+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "02319 Department 2-G", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Claremont", "countryId": "US", "postalCode": "71396", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1987-09-24T00:00:00.000+00:00", "email": "dianna@collier-marvin-and-nicolas.hr", "firstName": "Sonny", "lastName": "Stokes", "middleName": "Patsy", "mobilePhone": "1-071-148-9177 x9621", "phone": "803-699-5998 x797", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.629+00:00", "username": "lincoln" }'); INSERT INTO user_users VALUES ('78c51a90-e64f-49ce-8d28-e246a49c7f63', false, '859134060767498', '2021-12-06 01:51:07.088+00', '2018-11-25 00:00:00+00', '2020-03-22 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.088+00', 'elyssa', '{ "id": "78c51a90-e64f-49ce-8d28-e246a49c7f63", "active": false, "barcode": "859134060767498", "createdDate": "2021-12-06T01:51:07.088+00:00", "departments": [], "enrollmentDate": "2018-11-25T00:00:00.000+00:00", "expirationDate": "2020-03-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.085+00:00", "updatedDate": "2021-12-06T01:51:07.085+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "46663 Jayden Lock Suite 531", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Danville", "countryId": "US", "postalCode": "40453-4083", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "1961-07-31T00:00:00.000+00:00", "email": "seth@wisozk-schoen-and-goyette.fm", "firstName": "Sister", "lastName": "Grady", "middleName": "Garret", "mobilePhone": "478-608-4031", "phone": "097-669-3362", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.088+00:00", "username": "elyssa" }'); INSERT INTO user_users VALUES ('7aa8082c-d1ed-4e33-bf0e-02d3efe5624b', false, '446795796750656', '2021-12-06 01:51:08.206+00', '2016-11-06 00:00:00+00', '2020-07-04 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.206+00', 'kayleigh', '{ "id": "7aa8082c-d1ed-4e33-bf0e-02d3efe5624b", "active": false, "barcode": "446795796750656", "createdDate": "2021-12-06T01:51:08.206+00:00", "departments": [], "enrollmentDate": "2016-11-06T00:00:00.000+00:00", "expirationDate": "2020-07-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.203+00:00", "updatedDate": "2021-12-06T01:51:08.203+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "89993 Freeman Mews Apt. 243", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Costa Mesa", "countryId": "US", "postalCode": "29068-1244", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "1984-04-26T00:00:00.000+00:00", "email": "sheridan@white-hoppe.ac", "firstName": "Freida", "lastName": "Thompson", "middleName": "Jaren", "mobilePhone": "705.747.1963", "phone": "1-131-621-4510 x438", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.206+00:00", "username": "kayleigh" }'); INSERT INTO user_users VALUES ('7b06cbcf-5d6d-431b-8922-20509d40f1ae', false, '937814009886828', '2021-12-06 01:51:08.247+00', '2017-12-12 00:00:00+00', '2020-07-08 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.247+00', 'imelda', '{ "id": "7b06cbcf-5d6d-431b-8922-20509d40f1ae", "active": false, "barcode": "937814009886828", "createdDate": "2021-12-06T01:51:08.247+00:00", "departments": [], "enrollmentDate": "2017-12-12T00:00:00.000+00:00", "expirationDate": "2020-07-08T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.245+00:00", "updatedDate": "2021-12-06T01:51:08.245+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "23315 Agustina Estate #966", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Jolla", "countryId": "US", "postalCode": "59920-4781", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1980-06-17T00:00:00.000+00:00", "email": "della@mayer-renner.eg", "firstName": "Leonor", "lastName": "Denesik", "middleName": "Lyric", "phone": "801.732.3140", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.247+00:00", "username": "imelda" }'); INSERT INTO user_users VALUES ('7cf337a2-a941-403d-a44f-4501b347a970', true, '1638756088928448593', '2021-12-06 02:01:28.937+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:28.937+00', 'erm-observer', '{ "id": "7cf337a2-a941-403d-a44f-4501b347a970", "active": true, "barcode": "1638756088928448593", "createdDate": "2021-12-06T02:01:28.937+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.931+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.931+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "erm-observer", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:28.937+00:00", "username": "erm-observer" }'); INSERT INTO user_users VALUES ('7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de', false, '870729091333835', '2021-12-06 01:51:08.152+00', '2016-04-27 00:00:00+00', '2019-05-22 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.152+00', 'eli', '{ "id": "7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de", "active": false, "barcode": "870729091333835", "createdDate": "2021-12-06T01:51:08.152+00:00", "departments": [], "enrollmentDate": "2016-04-27T00:00:00.000+00:00", "expirationDate": "2019-05-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.149+00:00", "updatedDate": "2021-12-06T01:51:08.149+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "23228 Cremin Plains Suite 917", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Culver City", "countryId": "US", "postalCode": "67798", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1964-08-30T00:00:00.000+00:00", "email": "eula@nicolas-and-sons.hu", "firstName": "Iliana", "lastName": "Emard", "middleName": "Jackie", "mobilePhone": "(414)238-0544 x546", "phone": "(320)304-2693", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.152+00:00", "username": "eli" }'); INSERT INTO user_users VALUES ('7dd96d33-6abf-4394-8768-647c76d79412', false, '390734993858352', '2021-12-06 01:51:05.867+00', '2018-08-10 00:00:00+00', '2020-08-27 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.867+00', 'napoleon', '{ "id": "7dd96d33-6abf-4394-8768-647c76d79412", "active": false, "barcode": "390734993858352", "createdDate": "2021-12-06T01:51:05.867+00:00", "departments": [], "enrollmentDate": "2018-08-10T00:00:00.000+00:00", "expirationDate": "2020-08-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.863+00:00", "updatedDate": "2021-12-06T01:51:05.863+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "09823 Blanche Cove Suite 257", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Simi Valley", "countryId": "US", "postalCode": "93650", "primaryAddress": true, "region": "NJ" } ], "dateOfBirth": "1998-01-15T00:00:00.000+00:00", "email": "gwendolyn@kub-johns.io", "firstName": "Bailey", "lastName": "Nikolaus", "mobilePhone": "(574)121-5378", "phone": "1-700-688-9136", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.867+00:00", "username": "napoleon" }'); INSERT INTO user_users VALUES ('7ff26639-c033-442a-8bf4-2e896b17fcf9', false, '871239214404756', '2021-12-06 01:51:06.254+00', '2015-06-12 00:00:00+00', '2020-11-23 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.254+00', 'jordy', '{ "id": "7ff26639-c033-442a-8bf4-2e896b17fcf9", "active": false, "barcode": "871239214404756", "createdDate": "2021-12-06T01:51:06.254+00:00", "departments": [], "enrollmentDate": "2015-06-12T00:00:00.000+00:00", "expirationDate": "2020-11-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.251+00:00", "updatedDate": "2021-12-06T01:51:06.251+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "02433 Mraz Roads Suite 089", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Bakersfield", "countryId": "US", "postalCode": "44897", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1989-12-12T00:00:00.000+00:00", "email": "mayra@schmeler-llc.ge", "firstName": "Andre", "lastName": "Boyle", "middleName": "Payton", "mobilePhone": "(785)279-5645 x1029", "phone": "833-693-7297", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.254+00:00", "username": "jordy" }'); INSERT INTO user_users VALUES ('80b908e7-3edc-4f6e-9c70-2b19ce25d75f', true, '1638756084197528735', '2021-12-06 02:01:24.221+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:24.221+00', 'acq-admin', '{ "id": "80b908e7-3edc-4f6e-9c70-2b19ce25d75f", "active": true, "barcode": "1638756084197528735", "createdDate": "2021-12-06T02:01:24.221+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:24.218+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:24.218+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "acq-admin", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:24.221+00:00", "username": "acq-admin" }'); INSERT INTO user_users VALUES ('860b2291-c28a-4943-804a-169af01edef4', false, '646523505901846', '2021-12-06 01:51:07.195+00', '2017-08-11 00:00:00+00', '2019-10-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.195+00', 'colten', '{ "id": "860b2291-c28a-4943-804a-169af01edef4", "active": false, "barcode": "646523505901846", "createdDate": "2021-12-06T01:51:07.195+00:00", "departments": [], "enrollmentDate": "2017-08-11T00:00:00.000+00:00", "expirationDate": "2019-10-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.193+00:00", "updatedDate": "2021-12-06T01:51:07.193+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "97733 Macey Plaza Suite 564", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Demopolis", "countryId": "US", "postalCode": "05692-9310", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1997-01-01T00:00:00.000+00:00", "email": "concepcion@jacobi-koepp.ri.us", "firstName": "Zetta", "lastName": "Lueilwitz", "middleName": "Brian", "mobilePhone": "393.107.6320 x2955", "phone": "519.837.1673", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.195+00:00", "username": "colten" }'); INSERT INTO user_users VALUES ('8616dd12-e244-4047-834a-db0c6cd1477b', false, '592137900094893', '2021-12-06 01:51:08.268+00', '2017-02-19 00:00:00+00', '2019-10-05 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.268+00', 'rudy', '{ "id": "8616dd12-e244-4047-834a-db0c6cd1477b", "active": false, "barcode": "592137900094893", "createdDate": "2021-12-06T01:51:08.268+00:00", "departments": [], "enrollmentDate": "2017-02-19T00:00:00.000+00:00", "expirationDate": "2019-10-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.265+00:00", "updatedDate": "2021-12-06T01:51:08.265+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "81832 Francesco Rest", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Jonesboro", "countryId": "US", "postalCode": "58204-7848", "primaryAddress": true, "region": "WY" } ], "dateOfBirth": "2005-07-04T00:00:00.000+00:00", "email": "hyman@mcclure-volkman.fr", "firstName": "Cloyd", "lastName": "Harris", "middleName": "Jerrell", "mobilePhone": "094.181.7710 x74672", "phone": "1-446-276-4528 x71327", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.268+00:00", "username": "rudy" }'); INSERT INTO user_users VALUES ('86344e52-979a-45da-ad44-9edcc05c5312', false, '951631321647731', '2021-12-06 01:51:06.688+00', '2016-03-06 00:00:00+00', '2020-01-18 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.688+00', 'schuyler', '{ "id": "86344e52-979a-45da-ad44-9edcc05c5312", "active": false, "barcode": "951631321647731", "createdDate": "2021-12-06T01:51:06.688+00:00", "departments": [], "enrollmentDate": "2016-03-06T00:00:00.000+00:00", "expirationDate": "2020-01-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.685+00:00", "updatedDate": "2021-12-06T01:51:06.685+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "17142 Prohaska Turnpike", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Ashland", "countryId": "US", "postalCode": "96940-0918", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1976-04-18T00:00:00.000+00:00", "email": "deborah@braun-and-sons.tp", "firstName": "Lucas", "lastName": "Glover", "middleName": "Ervin", "mobilePhone": "1-422-331-2245", "phone": "(024)340-3008 x71420", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.688+00:00", "username": "schuyler" }'); INSERT INTO user_users VALUES ('86c9f455-a685-45d0-9d01-5943a1ba7e5b', false, '775671613439016', '2021-12-06 01:51:06.654+00', '2019-02-28 00:00:00+00', '2020-10-29 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.654+00', 'federico', '{ "id": "86c9f455-a685-45d0-9d01-5943a1ba7e5b", "active": false, "barcode": "775671613439016", "createdDate": "2021-12-06T01:51:06.654+00:00", "departments": [], "enrollmentDate": "2019-02-28T00:00:00.000+00:00", "expirationDate": "2020-10-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.651+00:00", "updatedDate": "2021-12-06T01:51:06.651+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "12335 Alysson Grove", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Santa Rosa", "countryId": "US", "postalCode": "61535-1115", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "1996-04-26T00:00:00.000+00:00", "email": "samara@kohler-buckridge-and-champlin.me.us", "firstName": "Ceasar", "lastName": "Conn", "mobilePhone": "907.862.1518", "phone": "1-071-537-9550 x0217", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.654+00:00", "username": "federico" }'); INSERT INTO user_users VALUES ('872695bb-4157-4c6f-84c7-eb5b50b9ce17', false, '439088239777998', '2021-12-06 01:51:07.351+00', '2018-11-07 00:00:00+00', '2019-08-14 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.351+00', 'okey', '{ "id": "872695bb-4157-4c6f-84c7-eb5b50b9ce17", "active": false, "barcode": "439088239777998", "createdDate": "2021-12-06T01:51:07.351+00:00", "departments": [], "enrollmentDate": "2018-11-07T00:00:00.000+00:00", "expirationDate": "2019-08-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.348+00:00", "updatedDate": "2021-12-06T01:51:07.348+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "18123 Room A", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Escondido", "countryId": "US", "postalCode": "23610-3538", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1971-01-09T00:00:00.000+00:00", "email": "amara@emmerich-stroman-and-cummings.et", "firstName": "Freda", "lastName": "Hirthe", "middleName": "Abigale", "phone": "648-421-1448 x339", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.351+00:00", "username": "okey" }'); INSERT INTO user_users VALUES ('87c329f1-2220-4a8a-b750-ded39bbe9769', false, '787181529957397', '2021-12-06 01:51:08.237+00', '2018-09-30 00:00:00+00', '2020-09-15 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.237+00', 'leopold', '{ "id": "87c329f1-2220-4a8a-b750-ded39bbe9769", "active": false, "barcode": "787181529957397", "createdDate": "2021-12-06T01:51:08.237+00:00", "departments": [], "enrollmentDate": "2018-09-30T00:00:00.000+00:00", "expirationDate": "2020-09-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.234+00:00", "updatedDate": "2021-12-06T01:51:08.234+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "31168 Esther Roads", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Sahuarita", "countryId": "US", "postalCode": "95607-8768", "primaryAddress": true, "region": "ID" } ], "dateOfBirth": "1961-01-30T00:00:00.000+00:00", "email": "leanne@conroy-llc.cs", "firstName": "Tamia", "lastName": "Prohaska", "middleName": "Kieran", "mobilePhone": "1-154-117-4466", "phone": "1-028-589-2513", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.237+00:00", "username": "leopold" }'); INSERT INTO user_users VALUES ('8853c9a2-cae2-4b5e-84ce-2b39bb809e5b', false, '766444609393133', '2021-12-06 01:51:05.072+00', '2016-12-30 00:00:00+00', '2021-01-17 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.072+00', 'jalyn', '{ "id": "8853c9a2-cae2-4b5e-84ce-2b39bb809e5b", "active": false, "barcode": "766444609393133", "createdDate": "2021-12-06T01:51:05.072+00:00", "departments": [], "enrollmentDate": "2016-12-30T00:00:00.000+00:00", "expirationDate": "2021-01-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.068+00:00", "updatedDate": "2021-12-06T01:51:05.068+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "09633 Meaghan Junctions Suite 977", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Murray", "countryId": "US", "postalCode": "45933", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "2014-04-06T00:00:00.000+00:00", "email": "viva@becker-okon-and-heaney.tn.us", "firstName": "Maddison", "lastName": "Weissnat", "phone": "1-464-785-9853 x31976", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.072+00:00", "username": "jalyn" }'); INSERT INTO user_users VALUES ('888a321d-676e-42fc-b588-a677d16a76ec', false, '85617808960080', '2021-12-06 01:51:06.7+00', '2017-02-23 00:00:00+00', '2020-08-14 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.7+00', 'jeramy', '{ "id": "888a321d-676e-42fc-b588-a677d16a76ec", "active": false, "barcode": "85617808960080", "createdDate": "2021-12-06T01:51:06.700+00:00", "departments": [], "enrollmentDate": "2017-02-23T00:00:00.000+00:00", "expirationDate": "2020-08-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.697+00:00", "updatedDate": "2021-12-06T01:51:06.697+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "17832 Germaine Squares", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Indio", "countryId": "US", "postalCode": "33424", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1974-10-31T00:00:00.000+00:00", "email": "blaze@greenholt-llc.sz", "firstName": "Russell", "lastName": "Hessel", "middleName": "Allen", "mobilePhone": "956-087-4381 x70664", "phone": "165.685.1392 x727", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.700+00:00", "username": "jeramy" }'); INSERT INTO user_users VALUES ('889be582-1eb4-4390-9dfc-63f4729b32b8', true, '1638756088381296994', '2021-12-06 02:01:28.386+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:28.386+00', 'erm-admin', '{ "id": "889be582-1eb4-4390-9dfc-63f4729b32b8", "active": true, "barcode": "1638756088381296994", "createdDate": "2021-12-06T02:01:28.386+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:28.383+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:28.383+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "erm-admin", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:28.386+00:00", "username": "erm-admin" }'); INSERT INTO user_users VALUES ('89066e1d-0691-4514-ae37-586cf746d3f4', false, '385280395079359', '2021-12-06 01:51:07.833+00', '2019-01-29 00:00:00+00', '2020-10-27 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.833+00', 'kamryn', '{ "id": "89066e1d-0691-4514-ae37-586cf746d3f4", "active": false, "barcode": "385280395079359", "createdDate": "2021-12-06T01:51:07.833+00:00", "departments": [], "enrollmentDate": "2019-01-29T00:00:00.000+00:00", "expirationDate": "2020-10-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.830+00:00", "updatedDate": "2021-12-06T01:51:07.830+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "01103 Karianne Isle", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Fontana", "countryId": "US", "postalCode": "26940-9843", "primaryAddress": true, "region": "AZ" } ], "dateOfBirth": "1954-03-19T00:00:00.000+00:00", "email": "dexter@schultz-group.ac.uk", "firstName": "Sammy", "lastName": "Johns", "middleName": "Bartholome", "phone": "689-392-1784 x52973", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.833+00:00", "username": "kamryn" }'); INSERT INTO user_users VALUES ('8931291a-8f92-4044-a17f-49a546b489ce', false, '573695099759142', '2021-12-06 01:51:06.615+00', '2018-11-16 00:00:00+00', '2020-04-29 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.615+00', 'eladio', '{ "id": "8931291a-8f92-4044-a17f-49a546b489ce", "active": false, "barcode": "573695099759142", "createdDate": "2021-12-06T01:51:06.615+00:00", "departments": [], "enrollmentDate": "2018-11-16T00:00:00.000+00:00", "expirationDate": "2020-04-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.612+00:00", "updatedDate": "2021-12-06T01:51:06.612+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "99508 Carissa Junction Apt. 288", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Aliso Viejo", "countryId": "US", "postalCode": "45508-7697", "primaryAddress": true, "region": "ND" } ], "dateOfBirth": "2001-06-07T00:00:00.000+00:00", "email": "moises@west-gerhold.pt", "firstName": "Adelbert", "lastName": "Robel", "middleName": "Clarabelle", "phone": "1-708-748-0323", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.615+00:00", "username": "eladio" }'); INSERT INTO user_users VALUES ('8a25868e-a63a-59c0-9afc-5f57d4ee11d7', true, NULL, '2021-12-06 02:00:41.362+00', NULL, NULL, NULL, NULL, '2021-12-06 02:00:41.362+00', 'stagingDirector', '{ "id": "8a25868e-a63a-59c0-9afc-5f57d4ee11d7", "active": true, "createdDate": "2021-12-06T02:00:41.362+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:00:41.359+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:00:41.359+00:00" }, "personal": { "addresses": [], "firstName": "stagingDirector", "lastName": "SYSTEM" }, "proxyFor": [], "updatedDate": "2021-12-06T02:00:41.362+00:00", "username": "stagingDirector" }'); INSERT INTO user_users VALUES ('8af5eaca-d164-4a5f-9941-0467c6facffa', false, '894793248408369', '2021-12-06 01:51:06.665+00', '2018-05-29 00:00:00+00', '2021-01-19 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.665+00', 'newell', '{ "id": "8af5eaca-d164-4a5f-9941-0467c6facffa", "active": false, "barcode": "894793248408369", "createdDate": "2021-12-06T01:51:06.665+00:00", "departments": [], "enrollmentDate": "2018-05-29T00:00:00.000+00:00", "expirationDate": "2021-01-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.662+00:00", "updatedDate": "2021-12-06T01:51:06.662+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "75651 Nikko Run #792", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Juneau", "countryId": "US", "postalCode": "24505-1733", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "2000-08-09T00:00:00.000+00:00", "email": "cody@schroeder-swaniawski.ks.us", "firstName": "Cornell", "lastName": "Predovic", "mobilePhone": "409.395.8705 x1313", "phone": "226-832-0548", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.665+00:00", "username": "newell" }'); INSERT INTO user_users VALUES ('8cde4a35-f58b-492e-bd07-d668f7322253', false, '700978046103898', '2021-12-06 01:51:07.238+00', '2017-06-15 00:00:00+00', '2020-07-03 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.238+00', 'viola', '{ "id": "8cde4a35-f58b-492e-bd07-d668f7322253", "active": false, "barcode": "700978046103898", "createdDate": "2021-12-06T01:51:07.238+00:00", "departments": [], "enrollmentDate": "2017-06-15T00:00:00.000+00:00", "expirationDate": "2020-07-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.235+00:00", "updatedDate": "2021-12-06T01:51:07.235+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "54056 Windler Creek", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Merced", "countryId": "US", "postalCode": "98253", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "2011-04-06T00:00:00.000+00:00", "email": "tre@greenholt-bergnaum.la", "firstName": "Erik", "lastName": "Streich", "mobilePhone": "1-393-950-3556 x8963", "phone": "800-128-5651 x040", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.238+00:00", "username": "viola" }'); INSERT INTO user_users VALUES ('8d65692e-fa98-49f2-9896-f9f6b0893358', false, '925162037753924', '2021-12-06 01:51:05.161+00', '2016-09-18 00:00:00+00', '2019-08-21 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.161+00', 'aliya', '{ "id": "8d65692e-fa98-49f2-9896-f9f6b0893358", "active": false, "barcode": "925162037753924", "createdDate": "2021-12-06T01:51:05.161+00:00", "departments": [], "enrollmentDate": "2016-09-18T00:00:00.000+00:00", "expirationDate": "2019-08-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.157+00:00", "updatedDate": "2021-12-06T01:51:05.157+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "46457 Joyce Bypass #865", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Orange", "countryId": "US", "postalCode": "14490-1529", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "2011-10-14T00:00:00.000+00:00", "email": "abelardo@robel-lind.is", "firstName": "Prudence", "lastName": "Hammes", "middleName": "Willie", "mobilePhone": "547.314.7419 x92831", "phone": "(927)909-8981", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.161+00:00", "username": "aliya" }'); INSERT INTO user_users VALUES ('8e9d1a69-9745-4ad4-a8e8-6841a9441b40', false, '348406231338938', '2021-12-06 01:51:04.657+00', '2018-01-06 00:00:00+00', '2020-03-07 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.657+00', 'bella', '{ "id": "8e9d1a69-9745-4ad4-a8e8-6841a9441b40", "active": false, "barcode": "348406231338938", "createdDate": "2021-12-06T01:51:04.657+00:00", "departments": [], "enrollmentDate": "2018-01-06T00:00:00.000+00:00", "expirationDate": "2020-03-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.652+00:00", "updatedDate": "2021-12-06T01:51:04.652+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "66693 Collier Rapids #486", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Toledo", "countryId": "US", "postalCode": "34540", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1989-03-07T00:00:00.000+00:00", "email": "constance@wunsch-group.ki", "firstName": "Deondre", "lastName": "Sipes", "middleName": "Mafalda", "phone": "1-995-399-4325", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.657+00:00", "username": "bella" }'); INSERT INTO user_users VALUES ('8f7a47c4-d66f-4dba-9255-f74507a2ecee', false, '12660472421494', '2021-12-06 01:51:07.671+00', '2016-08-04 00:00:00+00', '2020-09-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.671+00', 'bridget', '{ "id": "8f7a47c4-d66f-4dba-9255-f74507a2ecee", "active": false, "barcode": "12660472421494", "createdDate": "2021-12-06T01:51:07.671+00:00", "departments": [], "enrollmentDate": "2016-08-04T00:00:00.000+00:00", "expirationDate": "2020-09-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.668+00:00", "updatedDate": "2021-12-06T01:51:07.668+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "73863 Waters Rapid", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Sutter Creek", "countryId": "US", "postalCode": "33617", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1958-02-12T00:00:00.000+00:00", "email": "nettie@cummings-and-sons.ps", "firstName": "Lottie", "lastName": "Emard", "middleName": "Tressie", "phone": "1-386-358-5666 x8907", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.671+00:00", "username": "bridget" }'); INSERT INTO user_users VALUES ('9207540e-91e9-4a75-ad1e-65a715784326', false, '968532029020629', '2021-12-06 01:51:06.63+00', '2017-12-30 00:00:00+00', '2019-11-15 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.63+00', 'darron', '{ "id": "9207540e-91e9-4a75-ad1e-65a715784326", "active": false, "barcode": "968532029020629", "createdDate": "2021-12-06T01:51:06.630+00:00", "departments": [], "enrollmentDate": "2017-12-30T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.625+00:00", "updatedDate": "2021-12-06T01:51:06.625+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "83654 Casimer Station Apt. 263", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Huntington Beach", "countryId": "US", "postalCode": "13350", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "1955-01-13T00:00:00.000+00:00", "email": "millie@weissnat-beer-and-willms.mg", "firstName": "Merle", "lastName": "Gislason", "mobilePhone": "330-670-9941 x17593", "phone": "221.437.5773", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.630+00:00", "username": "darron" }'); INSERT INTO user_users VALUES ('93136048-585b-466e-88f8-a10115e6d7e2', false, '726027361780136', '2021-12-06 01:51:05.654+00', '2017-08-08 00:00:00+00', '2019-06-22 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.654+00', 'janie', '{ "id": "93136048-585b-466e-88f8-a10115e6d7e2", "active": false, "barcode": "726027361780136", "createdDate": "2021-12-06T01:51:05.654+00:00", "departments": [], "enrollmentDate": "2017-08-08T00:00:00.000+00:00", "expirationDate": "2019-06-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.651+00:00", "updatedDate": "2021-12-06T01:51:05.651+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "58778 Schumm Wells", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Habra", "countryId": "US", "postalCode": "20369-5662", "primaryAddress": true, "region": "AL" } ], "dateOfBirth": "1998-04-26T00:00:00.000+00:00", "email": "laura@torp-hilll-and-rippin.gs", "firstName": "Heath", "lastName": "Glover", "middleName": "Lizeth", "mobilePhone": "1-932-404-5189 x065", "phone": "170-706-1753 x73724", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.654+00:00", "username": "janie" }'); INSERT INTO user_users VALUES ('94fc2d88-359e-45e1-8360-ff6fb132cac4', false, '465292133786217', '2021-12-06 01:51:05.056+00', '2016-03-06 00:00:00+00', '2019-03-16 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.056+00', 'alivia', '{ "id": "94fc2d88-359e-45e1-8360-ff6fb132cac4", "active": false, "barcode": "465292133786217", "createdDate": "2021-12-06T01:51:05.056+00:00", "departments": [], "enrollmentDate": "2016-03-06T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.052+00:00", "updatedDate": "2021-12-06T01:51:05.052+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "56789 Bashirian Burg #449", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Verne", "countryId": "US", "postalCode": "43666", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "1988-12-15T00:00:00.000+00:00", "email": "milan@schamberger-prohaska-and-botsford.kr", "firstName": "Nina", "lastName": "Ruecker", "mobilePhone": "694.341.9907 x83291", "phone": "946-035-3204", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.056+00:00", "username": "alivia" }'); INSERT INTO user_users VALUES ('956f39c5-92e3-4c26-bcdc-1827674710cf', false, '890127749735764', '2021-12-06 01:51:06.549+00', '2017-06-05 00:00:00+00', '2020-09-28 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.549+00', 'fred', '{ "id": "956f39c5-92e3-4c26-bcdc-1827674710cf", "active": false, "barcode": "890127749735764", "createdDate": "2021-12-06T01:51:06.549+00:00", "departments": [], "enrollmentDate": "2017-06-05T00:00:00.000+00:00", "expirationDate": "2020-09-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.546+00:00", "updatedDate": "2021-12-06T01:51:06.546+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "12402 Leon Passage", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rolling Hills Estates", "countryId": "US", "postalCode": "98879-8861", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1995-04-02T00:00:00.000+00:00", "email": "kariane@douglas-hoeger-and-stokes.py", "firstName": "Santino", "lastName": "Hilll", "middleName": "Travon", "mobilePhone": "1-363-752-3867 x6224", "phone": "(234)617-6257 x0630", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.549+00:00", "username": "fred" }'); INSERT INTO user_users VALUES ('95a99d37-66b5-4b8d-a598-ab36618f9aac', false, '541826290691304', '2021-12-06 01:51:04.922+00', '2017-04-03 00:00:00+00', '2020-08-31 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:04.922+00', 'marilie', '{ "id": "95a99d37-66b5-4b8d-a598-ab36618f9aac", "active": false, "barcode": "541826290691304", "createdDate": "2021-12-06T01:51:04.922+00:00", "departments": [], "enrollmentDate": "2017-04-03T00:00:00.000+00:00", "expirationDate": "2020-08-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.917+00:00", "updatedDate": "2021-12-06T01:51:04.917+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "13878 Hayes Overpass Apt. 535", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Phoenix", "countryId": "US", "postalCode": "51100-7820", "primaryAddress": true, "region": "AA" } ], "dateOfBirth": "1976-12-07T00:00:00.000+00:00", "email": "eulah@veum-streich-and-mueller.ks.us", "firstName": "Stefan", "lastName": "Okuneva", "phone": "607-908-8821 x9401", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.922+00:00", "username": "marilie" }'); INSERT INTO user_users VALUES ('960ab857-c8c7-4445-8d24-1e4c33de3e86', false, '2221611715057', '2021-12-06 01:51:07.77+00', '2015-06-16 00:00:00+00', '2020-01-10 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.77+00', 'jerald', '{ "id": "960ab857-c8c7-4445-8d24-1e4c33de3e86", "active": false, "barcode": "2221611715057", "createdDate": "2021-12-06T01:51:07.770+00:00", "departments": [], "enrollmentDate": "2015-06-16T00:00:00.000+00:00", "expirationDate": "2020-01-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.767+00:00", "updatedDate": "2021-12-06T01:51:07.767+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "47577 Lehner Estates", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Chico", "countryId": "US", "postalCode": "97634-7181", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "1990-02-15T00:00:00.000+00:00", "email": "ally@gleichner-williamson-and-kuhic.com", "firstName": "Eduardo", "lastName": "Smitham", "middleName": "Emmy", "mobilePhone": "367.204.6258", "phone": "1-119-512-0959 x183", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.770+00:00", "username": "jerald" }'); INSERT INTO user_users VALUES ('969e6710-309e-41bd-ba35-2b97faec30b7', false, '161752342500221', '2021-12-06 01:51:06.524+00', '2017-03-24 00:00:00+00', '2020-06-26 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.524+00', 'marielle', '{ "id": "969e6710-309e-41bd-ba35-2b97faec30b7", "active": false, "barcode": "161752342500221", "createdDate": "2021-12-06T01:51:06.524+00:00", "departments": [], "enrollmentDate": "2017-03-24T00:00:00.000+00:00", "expirationDate": "2020-06-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.521+00:00", "updatedDate": "2021-12-06T01:51:06.521+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "47515 O''Hara Dam", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Muncie", "countryId": "US", "postalCode": "64899", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "1950-05-14T00:00:00.000+00:00", "email": "kavon@effertz-inc.ai", "firstName": "Rosemary", "lastName": "Schaden", "phone": "103-227-0227 x6093", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.524+00:00", "username": "marielle" }'); INSERT INTO user_users VALUES ('975256dc-abdc-45d1-b51a-f9f9ca15a491', false, '375669381232857', '2021-12-06 01:51:04.958+00', '2017-10-25 00:00:00+00', '2019-11-15 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.958+00', 'reyna', '{ "id": "975256dc-abdc-45d1-b51a-f9f9ca15a491", "active": false, "barcode": "375669381232857", "createdDate": "2021-12-06T01:51:04.958+00:00", "departments": [], "enrollmentDate": "2017-10-25T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.954+00:00", "updatedDate": "2021-12-06T01:51:04.954+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "17902 Gislason Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Marana", "countryId": "US", "postalCode": "19691-4725", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1997-04-23T00:00:00.000+00:00", "email": "garfield@bins-heidenreich-and-tremblay.ao", "firstName": "Ryann", "lastName": "Kulas", "middleName": "Mayra", "phone": "363.952.2395 x24397", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.958+00:00", "username": "reyna" }'); INSERT INTO user_users VALUES ('97f100da-9218-4351-bc14-ef0558f01625', false, '721881164534401', '2021-12-06 01:51:05.512+00', '2018-04-16 00:00:00+00', '2020-07-01 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.512+00', 'otto', '{ "id": "97f100da-9218-4351-bc14-ef0558f01625", "active": false, "barcode": "721881164534401", "createdDate": "2021-12-06T01:51:05.512+00:00", "departments": [], "enrollmentDate": "2018-04-16T00:00:00.000+00:00", "expirationDate": "2020-07-01T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.509+00:00", "updatedDate": "2021-12-06T01:51:05.509+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "38080 Leopoldo Parkways Suite 363", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Gary", "countryId": "US", "postalCode": "15626-0889", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1993-08-12T00:00:00.000+00:00", "email": "emmet@bayer-marquardt-and-rolfson.fo", "firstName": "Coralie", "lastName": "Krajcik", "middleName": "Tyra", "mobilePhone": "(371)131-9205", "phone": "(506)396-7773", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.512+00:00", "username": "otto" }'); INSERT INTO user_users VALUES ('9a04ae0d-e39f-44c3-b520-43144f6d93e4', false, '933948480962822', '2021-12-06 01:51:06.295+00', '2015-07-18 00:00:00+00', '2019-06-20 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.295+00', 'deonte', '{ "id": "9a04ae0d-e39f-44c3-b520-43144f6d93e4", "active": false, "barcode": "933948480962822", "createdDate": "2021-12-06T01:51:06.295+00:00", "departments": [], "enrollmentDate": "2015-07-18T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.291+00:00", "updatedDate": "2021-12-06T01:51:06.291+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "51003 Efrain Mill #260", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Nenana", "countryId": "US", "postalCode": "16500", "primaryAddress": true, "region": "MO" } ], "dateOfBirth": "1989-11-03T00:00:00.000+00:00", "email": "mackenzie@parisian-reilly-and-strosin.ac", "firstName": "Kaylee", "lastName": "Becker", "middleName": "Zola", "phone": "1-284-395-8624 x5728", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.295+00:00", "username": "deonte" }'); INSERT INTO user_users VALUES ('9ad09b01-7429-455f-9f64-e3897027db61', false, '724600319597122', '2021-12-06 01:51:07.615+00', '2015-09-10 00:00:00+00', '2020-12-04 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.615+00', 'odie', '{ "id": "9ad09b01-7429-455f-9f64-e3897027db61", "active": false, "barcode": "724600319597122", "createdDate": "2021-12-06T01:51:07.615+00:00", "departments": [], "enrollmentDate": "2015-09-10T00:00:00.000+00:00", "expirationDate": "2020-12-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.612+00:00", "updatedDate": "2021-12-06T01:51:07.612+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "15962 Block Stravenue Suite 557", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Mentor-on-the-Lake", "countryId": "US", "postalCode": "11231-2104", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1997-09-26T00:00:00.000+00:00", "email": "ansley@larson-williamson-and-williamson.eh", "firstName": "Foster", "lastName": "McDermott", "mobilePhone": "254-111-0157", "phone": "1-943-518-4026 x78360", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.615+00:00", "username": "odie" }'); INSERT INTO user_users VALUES ('9e87bfea-2d31-4cc3-9cef-9e1e67553243', false, '649452403745915', '2021-12-06 01:51:05.345+00', '2018-09-22 00:00:00+00', '2020-06-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.345+00', 'devan', '{ "id": "9e87bfea-2d31-4cc3-9cef-9e1e67553243", "active": false, "barcode": "649452403745915", "createdDate": "2021-12-06T01:51:05.345+00:00", "departments": [], "enrollmentDate": "2018-09-22T00:00:00.000+00:00", "expirationDate": "2020-06-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.341+00:00", "updatedDate": "2021-12-06T01:51:05.341+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "80986 Colin Meadows", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "South Pasadena", "countryId": "US", "postalCode": "51600", "primaryAddress": true, "region": "AS" } ], "dateOfBirth": "1950-10-14T00:00:00.000+00:00", "email": "muriel@jaskolski-hand-and-shields.so", "firstName": "Lolita", "lastName": "Miller", "middleName": "Dayton", "mobilePhone": "(124)569-8555 x042", "phone": "094-136-9018 x0864", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.345+00:00", "username": "devan" }'); INSERT INTO user_users VALUES ('a0dadce9-06ed-4b23-9fc0-6b5238aa92d8', false, '318184383030693', '2021-12-06 01:51:05.826+00', '2019-03-01 00:00:00+00', '2019-07-19 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.826+00', 'vena', '{ "id": "a0dadce9-06ed-4b23-9fc0-6b5238aa92d8", "active": false, "barcode": "318184383030693", "createdDate": "2021-12-06T01:51:05.826+00:00", "departments": [], "enrollmentDate": "2019-03-01T00:00:00.000+00:00", "expirationDate": "2019-07-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.822+00:00", "updatedDate": "2021-12-06T01:51:05.822+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "53417 Heller Glens", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Rafael", "countryId": "US", "postalCode": "12702", "primaryAddress": true, "region": "AS" } ], "dateOfBirth": "1966-11-10T00:00:00.000+00:00", "email": "ethelyn@emmerich-cruickshank-and-robel.pa.us", "firstName": "Destinee", "lastName": "Stroman", "middleName": "Tiana", "mobilePhone": "1-761-992-0604 x36575", "phone": "1-585-959-2707 x8182", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.826+00:00", "username": "vena" }'); INSERT INTO user_users VALUES ('a208cf17-a7f0-452d-ae0e-64011232c86d', false, '745758690367580', '2021-12-06 01:51:04.829+00', '2015-08-28 00:00:00+00', '2019-08-16 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:04.829+00', 'devonte', '{ "id": "a208cf17-a7f0-452d-ae0e-64011232c86d", "active": false, "barcode": "745758690367580", "createdDate": "2021-12-06T01:51:04.829+00:00", "departments": [], "enrollmentDate": "2015-08-28T00:00:00.000+00:00", "expirationDate": "2019-08-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.824+00:00", "updatedDate": "2021-12-06T01:51:04.824+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "43069 Lobby", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Seal Beach", "countryId": "US", "postalCode": "35848-5877", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1986-06-26T00:00:00.000+00:00", "email": "guy@lemke-llc.ok.us", "firstName": "Candace", "lastName": "Abbott", "middleName": "Fanny", "mobilePhone": "(436)763-7413", "phone": "(136)082-4680 x8231", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.829+00:00", "username": "devonte" }'); INSERT INTO user_users VALUES ('a23eac4b-955e-451c-b4ff-6ec2f5e63e23', false, '737503980446128', '2021-12-06 01:51:05.272+00', '2017-10-12 00:00:00+00', '2019-10-02 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.272+00', 'austin', '{ "id": "a23eac4b-955e-451c-b4ff-6ec2f5e63e23", "active": false, "barcode": "737503980446128", "createdDate": "2021-12-06T01:51:05.272+00:00", "departments": [], "enrollmentDate": "2017-10-12T00:00:00.000+00:00", "expirationDate": "2019-10-02T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.269+00:00", "updatedDate": "2021-12-06T01:51:05.269+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "30718 Ankunding Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Mesa", "countryId": "US", "postalCode": "01091-7652", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1966-06-22T00:00:00.000+00:00", "email": "esther@cummerata-mclaughlin-and-grant.cd", "firstName": "Zora", "lastName": "Bayer", "middleName": "Shea", "mobilePhone": "265-043-4033 x73485", "phone": "242.169.1046 x52431", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.272+00:00", "username": "austin" }'); INSERT INTO user_users VALUES ('a2468e40-fb7c-453c-a217-8388801e2407', false, '599322056324332', '2021-12-06 01:51:04.941+00', '2016-12-20 00:00:00+00', '2020-02-15 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.941+00', 'fanny', '{ "id": "a2468e40-fb7c-453c-a217-8388801e2407", "active": false, "barcode": "599322056324332", "createdDate": "2021-12-06T01:51:04.941+00:00", "departments": [], "enrollmentDate": "2016-12-20T00:00:00.000+00:00", "expirationDate": "2020-02-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.936+00:00", "updatedDate": "2021-12-06T01:51:04.936+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "65046 Floor 50", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Fernando", "countryId": "US", "postalCode": "82798-0326", "primaryAddress": true, "region": "DE" } ], "dateOfBirth": "1954-08-07T00:00:00.000+00:00", "email": "christiana@hahn-collins-and-bruen.pf", "firstName": "Caterina", "lastName": "Schowalter", "mobilePhone": "248-408-7381", "phone": "1-591-386-1824 x61080", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.941+00:00", "username": "fanny" }'); INSERT INTO user_users VALUES ('a2d8ce6a-e163-49f0-a817-399328a8f5a4', true, '1638756089181222013', '2021-12-06 02:01:29.187+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:29.187+00', 'erm-staff', '{ "id": "a2d8ce6a-e163-49f0-a817-399328a8f5a4", "active": true, "barcode": "1638756089181222013", "createdDate": "2021-12-06T02:01:29.187+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.183+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.183+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "erm-staff", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:29.187+00:00", "username": "erm-staff" }'); INSERT INTO user_users VALUES ('a49cefad-7447-4f2f-9004-de32e7a6cc53', false, '194710970216014', '2021-12-06 01:51:07.455+00', '2016-11-13 00:00:00+00', '2020-03-26 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.455+00', 'cedrick', '{ "id": "a49cefad-7447-4f2f-9004-de32e7a6cc53", "active": false, "barcode": "194710970216014", "createdDate": "2021-12-06T01:51:07.455+00:00", "departments": [], "enrollmentDate": "2016-11-13T00:00:00.000+00:00", "expirationDate": "2020-03-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.452+00:00", "updatedDate": "2021-12-06T01:51:07.452+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "00940 Rear", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hamilton", "countryId": "US", "postalCode": "55026", "primaryAddress": true, "region": "OH" } ], "dateOfBirth": "1984-08-10T00:00:00.000+00:00", "email": "maximo@bergnaum-lueilwitz.vn", "firstName": "Jazmin", "lastName": "Becker", "phone": "383-132-9117", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.455+00:00", "username": "cedrick" }'); INSERT INTO user_users VALUES ('a4e17c41-0867-4ba7-aada-c7369ae8600d', true, '1638756087767245123', '2021-12-06 02:01:27.774+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:27.774+00', 'data-export-admin', '{ "id": "a4e17c41-0867-4ba7-aada-c7369ae8600d", "active": true, "barcode": "1638756087767245123", "createdDate": "2021-12-06T02:01:27.774+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.772+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.772+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "data-export-admin", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:27.774+00:00", "username": "data-export-admin" }'); INSERT INTO user_users VALUES ('a56edfbe-087e-4f79-bd7e-d855fbe746e4', false, '745592013622964', '2021-12-06 01:51:05.025+00', '2016-01-22 00:00:00+00', '2019-04-14 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.025+00', 'ludie', '{ "id": "a56edfbe-087e-4f79-bd7e-d855fbe746e4", "active": false, "barcode": "745592013622964", "createdDate": "2021-12-06T01:51:05.025+00:00", "departments": [], "enrollmentDate": "2016-01-22T00:00:00.000+00:00", "expirationDate": "2019-04-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.021+00:00", "updatedDate": "2021-12-06T01:51:05.021+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "17807 Grayce Ridge #192", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Palo Alto", "countryId": "US", "postalCode": "33047-5265", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "1968-12-11T00:00:00.000+00:00", "email": "keegan@mitchell-and-sons.bn", "firstName": "Brook", "lastName": "Denesik", "middleName": "Orland", "mobilePhone": "(920)607-6501", "phone": "988.861.6928 x221", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.025+00:00", "username": "ludie" }'); INSERT INTO user_users VALUES ('a5a80ce1-c00d-4ede-ba44-912c1e093948', false, '304779563863832', '2021-12-06 01:51:06.898+00', '2016-06-07 00:00:00+00', '2019-08-09 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.898+00', 'marcelina', '{ "id": "a5a80ce1-c00d-4ede-ba44-912c1e093948", "active": false, "barcode": "304779563863832", "createdDate": "2021-12-06T01:51:06.898+00:00", "departments": [], "enrollmentDate": "2016-06-07T00:00:00.000+00:00", "expirationDate": "2019-08-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.895+00:00", "updatedDate": "2021-12-06T01:51:06.895+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "33863 Building 99", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Cerritos", "countryId": "US", "postalCode": "46974-1078", "primaryAddress": true, "region": "AE" } ], "dateOfBirth": "1962-11-13T00:00:00.000+00:00", "email": "jess@hermiston-jaskolski.sb", "firstName": "Devante", "lastName": "Wiegand", "middleName": "Clementina", "phone": "(939)563-4118 x80575", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.898+00:00", "username": "marcelina" }'); INSERT INTO user_users VALUES ('a5fb6646-3e42-46ed-b686-e009e1490d2c', false, '124365178425740', '2021-12-06 01:51:07.206+00', '2016-09-11 00:00:00+00', '2020-03-25 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.206+00', 'rosemarie', '{ "id": "a5fb6646-3e42-46ed-b686-e009e1490d2c", "active": false, "barcode": "124365178425740", "createdDate": "2021-12-06T01:51:07.206+00:00", "departments": [], "enrollmentDate": "2016-09-11T00:00:00.000+00:00", "expirationDate": "2020-03-25T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.203+00:00", "updatedDate": "2021-12-06T01:51:07.203+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "23947 Mattie Greens", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rosemead", "countryId": "US", "postalCode": "05956-3525", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "1993-11-03T00:00:00.000+00:00", "email": "dayana@carter-goodwin-and-rogahn.nv.us", "firstName": "Hoyt", "lastName": "Torphy", "middleName": "Rubye", "mobilePhone": "1-418-738-9136 x6746", "phone": "1-915-328-3353 x763", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.206+00:00", "username": "rosemarie" }'); INSERT INTO user_users VALUES ('a601f1f2-88a4-465a-850e-8f50c28ce7d9', false, '211832121841851', '2021-12-06 01:51:06.84+00', '2016-02-04 00:00:00+00', '2019-10-27 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.84+00', 'reed', '{ "id": "a601f1f2-88a4-465a-850e-8f50c28ce7d9", "active": false, "barcode": "211832121841851", "createdDate": "2021-12-06T01:51:06.840+00:00", "departments": [], "enrollmentDate": "2016-02-04T00:00:00.000+00:00", "expirationDate": "2019-10-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.837+00:00", "updatedDate": "2021-12-06T01:51:06.837+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "63785 Hailee Ports #591", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Los Angeles", "countryId": "US", "postalCode": "12864-5134", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "2009-04-13T00:00:00.000+00:00", "email": "sonya@rowe-inc.lb", "firstName": "Augustus", "lastName": "Wisoky", "middleName": "Myrna", "mobilePhone": "197.782.5049 x93190", "phone": "(157)362-6113", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.840+00:00", "username": "reed" }'); INSERT INTO user_users VALUES ('a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6', false, '628023765111244', '2021-12-06 01:51:06.757+00', '2015-09-16 00:00:00+00', '2021-03-07 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.757+00', 'dallas', '{ "id": "a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6", "active": false, "barcode": "628023765111244", "createdDate": "2021-12-06T01:51:06.757+00:00", "departments": [], "enrollmentDate": "2015-09-16T00:00:00.000+00:00", "expirationDate": "2021-03-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.754+00:00", "updatedDate": "2021-12-06T01:51:06.754+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "85223 Mylene Pines", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Union City", "countryId": "US", "postalCode": "08287", "primaryAddress": true, "region": "AZ" } ], "dateOfBirth": "1992-08-27T00:00:00.000+00:00", "email": "lavon@fisher-haley-and-pfeffer.bh", "firstName": "Berta", "lastName": "Shields", "middleName": "Una", "phone": "(449)471-3800", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.757+00:00", "username": "dallas" }'); INSERT INTO user_users VALUES ('a8a11126-40b9-45f0-aa6e-9408e57c4b47', false, '124718599753229', '2021-12-06 01:51:08.017+00', '2017-06-08 00:00:00+00', '2020-07-06 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.017+00', 'erna', '{ "id": "a8a11126-40b9-45f0-aa6e-9408e57c4b47", "active": false, "barcode": "124718599753229", "createdDate": "2021-12-06T01:51:08.017+00:00", "departments": [], "enrollmentDate": "2017-06-08T00:00:00.000+00:00", "expirationDate": "2020-07-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.014+00:00", "updatedDate": "2021-12-06T01:51:08.014+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "20601 Angelo Ridges", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rolling Hills", "countryId": "US", "postalCode": "92431-5673", "primaryAddress": true, "region": "OR" } ], "dateOfBirth": "1990-05-16T00:00:00.000+00:00", "email": "aurelie@ankunding-kiehn.us", "firstName": "Alyce", "lastName": "Hagenes", "middleName": "Lamar", "phone": "(555)883-2274 x6584", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.017+00:00", "username": "erna" }'); INSERT INTO user_users VALUES ('a983c74e-b4f5-4ca9-94f0-b79efa947b27', false, '981698804715861', '2021-12-06 01:51:07.962+00', '2017-10-27 00:00:00+00', '2019-11-09 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.962+00', 'shyanne', '{ "id": "a983c74e-b4f5-4ca9-94f0-b79efa947b27", "active": false, "barcode": "981698804715861", "createdDate": "2021-12-06T01:51:07.962+00:00", "departments": [], "enrollmentDate": "2017-10-27T00:00:00.000+00:00", "expirationDate": "2019-11-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.959+00:00", "updatedDate": "2021-12-06T01:51:07.959+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "28929 Lobby", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lake Forest", "countryId": "US", "postalCode": "86611", "primaryAddress": true, "region": "PW" } ], "dateOfBirth": "1989-01-24T00:00:00.000+00:00", "email": "frank@barton-torphy-and-osinski.bj", "firstName": "Emery", "lastName": "Walter", "middleName": "Emma", "mobilePhone": "691.044.8088 x89516", "phone": "(023)078-6981", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.962+00:00", "username": "shyanne" }'); INSERT INTO user_users VALUES ('a98abce3-be00-4d9a-a66a-0593d27b41e0', false, '267941186130073', '2021-12-06 01:51:05.288+00', '2016-06-28 00:00:00+00', '2019-12-03 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.288+00', 'lula', '{ "id": "a98abce3-be00-4d9a-a66a-0593d27b41e0", "active": false, "barcode": "267941186130073", "createdDate": "2021-12-06T01:51:05.288+00:00", "departments": [], "enrollmentDate": "2016-06-28T00:00:00.000+00:00", "expirationDate": "2019-12-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.284+00:00", "updatedDate": "2021-12-06T01:51:05.284+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "88286 Dicki Crescent Suite 579", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Oakland", "countryId": "US", "postalCode": "15731-4068", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "1975-11-25T00:00:00.000+00:00", "email": "justine@cole-group.zw", "firstName": "Meredith", "lastName": "Kovacek", "mobilePhone": "038.348.1149 x50914", "phone": "1-979-995-5610 x758", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.288+00:00", "username": "lula" }'); INSERT INTO user_users VALUES ('aace299f-7a74-4118-9cf3-599110dce278', false, '585052723770974', '2021-12-06 01:51:06.043+00', '2018-02-21 00:00:00+00', '2020-06-17 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.043+00', 'cecelia', '{ "id": "aace299f-7a74-4118-9cf3-599110dce278", "active": false, "barcode": "585052723770974", "createdDate": "2021-12-06T01:51:06.043+00:00", "departments": [], "enrollmentDate": "2018-02-21T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.040+00:00", "updatedDate": "2021-12-06T01:51:06.040+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "62103 Austin Flat Suite 400", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Bessemer", "countryId": "US", "postalCode": "16323-4796", "primaryAddress": true, "region": "NV" } ], "dateOfBirth": "1947-09-24T00:00:00.000+00:00", "email": "laura@jewess-hayes-and-schuppe.ba", "firstName": "Cora", "lastName": "Willms", "mobilePhone": "084.739.9139 x7112", "phone": "(832)988-4869 x807", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.043+00:00", "username": "cecelia" }'); INSERT INTO user_users VALUES ('ab579dc3-219b-4f5b-8068-ab1c7a55c402', false, '508444097915063', '2021-12-06 01:51:04.847+00', '2018-10-15 00:00:00+00', '2019-09-10 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.847+00', 'delpha', '{ "id": "ab579dc3-219b-4f5b-8068-ab1c7a55c402", "active": false, "barcode": "508444097915063", "createdDate": "2021-12-06T01:51:04.847+00:00", "departments": [], "enrollmentDate": "2018-10-15T00:00:00.000+00:00", "expirationDate": "2019-09-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.843+00:00", "updatedDate": "2021-12-06T01:51:04.843+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "44688 Gerhold Centers", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Palm Springs", "countryId": "US", "postalCode": "74737", "primaryAddress": true, "region": "NH" } ], "dateOfBirth": "1989-12-28T00:00:00.000+00:00", "email": "maya@schmidt-moore-and-greenfelder.gu", "firstName": "Velva", "lastName": "Brakus", "middleName": "Kendall", "phone": "577.401.1737 x5071", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.847+00:00", "username": "delpha" }'); INSERT INTO user_users VALUES ('ab60d124-5d41-49c5-8aae-2ef2cd3704c2', false, '335422988847671', '2021-12-06 01:51:08.217+00', '2017-10-11 00:00:00+00', '2020-07-07 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.217+00', 'lenny', '{ "id": "ab60d124-5d41-49c5-8aae-2ef2cd3704c2", "active": false, "barcode": "335422988847671", "createdDate": "2021-12-06T01:51:08.217+00:00", "departments": [], "enrollmentDate": "2017-10-11T00:00:00.000+00:00", "expirationDate": "2020-07-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.214+00:00", "updatedDate": "2021-12-06T01:51:08.214+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "16735 Leannon Trail #208", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Seward", "countryId": "US", "postalCode": "09576", "primaryAddress": true, "region": "NY" } ], "dateOfBirth": "2008-05-29T00:00:00.000+00:00", "email": "emelie@larkin-llc.rw", "firstName": "Thad", "lastName": "Torphy", "middleName": "Reba", "mobilePhone": "(236)191-9481 x29491", "phone": "1-857-058-1987", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.217+00:00", "username": "lenny" }'); INSERT INTO user_users VALUES ('abad6503-a51b-4fec-a1cd-b5f672b1ff7b', false, '960595246465651', '2021-12-06 01:51:08.13+00', '2016-03-01 00:00:00+00', '2020-12-19 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:08.13+00', 'maximo', '{ "id": "abad6503-a51b-4fec-a1cd-b5f672b1ff7b", "active": false, "barcode": "960595246465651", "createdDate": "2021-12-06T01:51:08.130+00:00", "departments": [], "enrollmentDate": "2016-03-01T00:00:00.000+00:00", "expirationDate": "2020-12-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.126+00:00", "updatedDate": "2021-12-06T01:51:08.126+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "41391 Geoffrey Pines #905", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Compton", "countryId": "US", "postalCode": "63640", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "2012-11-19T00:00:00.000+00:00", "email": "luis@bayer-breitenberg.zw", "firstName": "Kyleigh", "lastName": "Mraz", "middleName": "Tobin", "phone": "166.903.9433", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.130+00:00", "username": "maximo" }'); INSERT INTO user_users VALUES ('ac521a2a-d933-42f9-b3a4-2d7399880057', false, '333522075817029', '2021-12-06 01:51:06.117+00', '2015-07-02 00:00:00+00', '2020-04-22 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.117+00', 'giovani', '{ "id": "ac521a2a-d933-42f9-b3a4-2d7399880057", "active": false, "barcode": "333522075817029", "createdDate": "2021-12-06T01:51:06.117+00:00", "departments": [], "enrollmentDate": "2015-07-02T00:00:00.000+00:00", "expirationDate": "2020-04-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.114+00:00", "updatedDate": "2021-12-06T01:51:06.114+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "24658 Koepp Passage Suite 308", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lancaster", "countryId": "US", "postalCode": "79769", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1989-02-09T00:00:00.000+00:00", "email": "wanda@murphy-reichel-and-nitzsche.cn", "firstName": "Jennie", "lastName": "Toy", "middleName": "Meda", "phone": "519-829-2693", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.117+00:00", "username": "giovani" }'); INSERT INTO user_users VALUES ('acf8aab2-91ee-4210-bb7c-b688d66a9de4', false, '184798638159936', '2021-12-06 01:51:06.142+00', '2018-06-01 00:00:00+00', '2020-10-16 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.142+00', 'aaliyah', '{ "id": "acf8aab2-91ee-4210-bb7c-b688d66a9de4", "active": false, "barcode": "184798638159936", "createdDate": "2021-12-06T01:51:06.142+00:00", "departments": [], "enrollmentDate": "2018-06-01T00:00:00.000+00:00", "expirationDate": "2020-10-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.139+00:00", "updatedDate": "2021-12-06T01:51:06.139+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "15604 Front", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Lomita", "countryId": "US", "postalCode": "95218", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "1948-06-08T00:00:00.000+00:00", "email": "christa@thiel-hahn.bn", "firstName": "Maximo", "lastName": "Koelpin", "middleName": "Jacquelyn", "mobilePhone": "652.054.8955", "phone": "(602)146-5656 x7536", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.142+00:00", "username": "aaliyah" }'); INSERT INTO user_users VALUES ('ad52b1a2-5434-40ee-9ea4-9c4729f42872', true, '1638756086081962490', '2021-12-06 02:01:26.088+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:26.088+00', 'checkout-all', '{ "id": "ad52b1a2-5434-40ee-9ea4-9c4729f42872", "active": true, "barcode": "1638756086081962490", "createdDate": "2021-12-06T02:01:26.088+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.085+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.085+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "checkout-all", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:26.088+00:00", "username": "checkout-all" }'); INSERT INTO user_users VALUES ('ade18246-c529-497f-bd4c-2c3f85e995ad', false, '483240769538888', '2021-12-06 01:51:07.153+00', '2016-05-25 00:00:00+00', '2019-11-29 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.153+00', 'alessandro', '{ "id": "ade18246-c529-497f-bd4c-2c3f85e995ad", "active": false, "barcode": "483240769538888", "createdDate": "2021-12-06T01:51:07.153+00:00", "departments": [], "enrollmentDate": "2016-05-25T00:00:00.000+00:00", "expirationDate": "2019-11-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.150+00:00", "updatedDate": "2021-12-06T01:51:07.150+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "74391 Sawayn Wall Apt. 191", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Ana", "countryId": "US", "postalCode": "06351-7599", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "2012-01-14T00:00:00.000+00:00", "email": "herman@herzog-kutch.co", "firstName": "Ardella", "lastName": "Prosacco", "middleName": "Lonzo", "phone": "1-771-591-0526 x95088", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.153+00:00", "username": "alessandro" }'); INSERT INTO user_users VALUES ('ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced', false, '322526636349373', '2021-12-06 01:51:06.194+00', '2018-04-22 00:00:00+00', '2020-07-16 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.194+00', 'maymie', '{ "id": "ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced", "active": false, "barcode": "322526636349373", "createdDate": "2021-12-06T01:51:06.194+00:00", "departments": [], "enrollmentDate": "2018-04-22T00:00:00.000+00:00", "expirationDate": "2020-07-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.191+00:00", "updatedDate": "2021-12-06T01:51:06.191+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "64304 Peter Mountains", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Monterey", "countryId": "US", "postalCode": "40295", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "1979-06-24T00:00:00.000+00:00", "email": "mariela@sanford-quigley-and-purdy.mn", "firstName": "Colt", "lastName": "Dach", "middleName": "Alford", "mobilePhone": "1-261-847-2746", "phone": "1-167-194-5323 x2190", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.194+00:00", "username": "maymie" }'); INSERT INTO user_users VALUES ('ae9cd1ca-12ac-4899-925c-d16ed651a6e5', true, NULL, '2021-12-06 01:51:18.347+00', NULL, NULL, NULL, NULL, '2021-12-06 01:51:18.347+00', 'pubsub-user', '{ "id": "ae9cd1ca-12ac-4899-925c-d16ed651a6e5", "active": true, "createdDate": "2021-12-06T01:51:18.347+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:51:18.344+00:00", "updatedDate": "2021-12-06T01:51:18.344+00:00" }, "personal": { "addresses": [], "lastName": "System" }, "proxyFor": [], "updatedDate": "2021-12-06T01:51:18.347+00:00", "username": "pubsub-user" }'); INSERT INTO user_users VALUES ('afa0db39-316d-5525-a1bf-dcf4e8410c56', true, NULL, '2021-12-06 02:01:04.895+00', NULL, NULL, NULL, NULL, '2021-12-06 02:01:04.895+00', 'innreachClient', '{ "id": "afa0db39-316d-5525-a1bf-dcf4e8410c56", "active": true, "createdDate": "2021-12-06T02:01:04.895+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:04.889+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:04.889+00:00" }, "personal": { "addresses": [], "firstName": "innreachClient", "lastName": "SYSTEM" }, "proxyFor": [], "updatedDate": "2021-12-06T02:01:04.895+00:00", "username": "innreachClient" }'); INSERT INTO user_users VALUES ('b09038a4-0386-4782-8ee8-11aa87e09887', false, '981420708307993', '2021-12-06 01:51:07.695+00', '2018-08-21 00:00:00+00', '2019-06-19 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.695+00', 'ricardo', '{ "id": "b09038a4-0386-4782-8ee8-11aa87e09887", "active": false, "barcode": "981420708307993", "createdDate": "2021-12-06T01:51:07.695+00:00", "departments": [], "enrollmentDate": "2018-08-21T00:00:00.000+00:00", "expirationDate": "2019-06-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.692+00:00", "updatedDate": "2021-12-06T01:51:07.692+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "03888 Douglas Keys", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Fountain Valley", "countryId": "US", "postalCode": "07192", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "1976-06-06T00:00:00.000+00:00", "email": "mack@gulgowski-conn.om", "firstName": "Maida", "lastName": "Kohler", "middleName": "Lowell", "mobilePhone": "(824)319-7898", "phone": "116-652-6703", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.695+00:00", "username": "ricardo" }'); INSERT INTO user_users VALUES ('b3a2ccbb-7f3f-4688-868f-7842aaf3487f', true, '1638756087955730713', '2021-12-06 02:01:27.961+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:27.961+00', 'data-export', '{ "id": "b3a2ccbb-7f3f-4688-868f-7842aaf3487f", "active": true, "barcode": "1638756087955730713", "createdDate": "2021-12-06T02:01:27.961+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.958+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.958+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "data-export", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:27.961+00:00", "username": "data-export" }'); INSERT INTO user_users VALUES ('b3dae815-3d30-49f9-ac26-363e661382a0', false, '592188849255453', '2021-12-06 01:51:08.094+00', '2016-06-02 00:00:00+00', '2020-10-13 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.094+00', 'elsie', '{ "id": "b3dae815-3d30-49f9-ac26-363e661382a0", "active": false, "barcode": "592188849255453", "createdDate": "2021-12-06T01:51:08.094+00:00", "departments": [], "enrollmentDate": "2016-06-02T00:00:00.000+00:00", "expirationDate": "2020-10-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.091+00:00", "updatedDate": "2021-12-06T01:51:08.091+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "41662 Stop 3", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Youngstown", "countryId": "US", "postalCode": "14450-7442", "primaryAddress": true, "region": "MD" } ], "dateOfBirth": "1951-05-02T00:00:00.000+00:00", "email": "krystina@wintheiser-schmitt-and-terry.fk", "firstName": "Loraine", "lastName": "Kulas", "middleName": "Esteban", "mobilePhone": "1-762-228-6098 x0493", "phone": "1-129-679-3379 x27246", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.094+00:00", "username": "elsie" }'); INSERT INTO user_users VALUES ('b3e39715-0659-4776-9d40-abe655408d84', false, '13681445020477', '2021-12-06 01:51:06.092+00', '2016-08-25 00:00:00+00', '2019-04-18 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.092+00', 'jacynthe', '{ "id": "b3e39715-0659-4776-9d40-abe655408d84", "active": false, "barcode": "13681445020477", "createdDate": "2021-12-06T01:51:06.092+00:00", "departments": [], "enrollmentDate": "2016-08-25T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.089+00:00", "updatedDate": "2021-12-06T01:51:06.089+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "70387 Waldo Springs #134", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Rolling Hills Estates", "countryId": "US", "postalCode": "96090-7276", "primaryAddress": true, "region": "MP" } ], "dateOfBirth": "1980-02-05T00:00:00.000+00:00", "email": "parker@roberts-pfannerstill.rw", "firstName": "Brian", "lastName": "Hilll", "mobilePhone": "1-632-761-5435", "phone": "234.278.5991 x3013", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.092+00:00", "username": "jacynthe" }'); INSERT INTO user_users VALUES ('b3f61b07-a1b3-44ac-bb7f-622b90ac17c3', false, '107131839278402', '2021-12-06 01:51:07.14+00', '2015-10-10 00:00:00+00', '2020-03-11 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.14+00', 'davonte', '{ "id": "b3f61b07-a1b3-44ac-bb7f-622b90ac17c3", "active": false, "barcode": "107131839278402", "createdDate": "2021-12-06T01:51:07.140+00:00", "departments": [], "enrollmentDate": "2015-10-10T00:00:00.000+00:00", "expirationDate": "2020-03-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.137+00:00", "updatedDate": "2021-12-06T01:51:07.137+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "09881 Basement", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Francisco", "countryId": "US", "postalCode": "08094-1191", "primaryAddress": true, "region": "WY" } ], "dateOfBirth": "1960-06-28T00:00:00.000+00:00", "email": "christelle@kiehn-okon.eg", "firstName": "Brayan", "lastName": "Jenkins", "middleName": "Cory", "phone": "1-318-554-9171", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.140+00:00", "username": "davonte" }'); INSERT INTO user_users VALUES ('b4cee18d-f862-4ef1-95a5-879fdd619603', true, '789', '2021-12-06 01:51:06.558+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', NULL, '2021-12-06 01:51:06.558+00', 'sheldon', '{ "id": "b4cee18d-f862-4ef1-95a5-879fdd619603", "active": true, "barcode": "789", "createdDate": "2021-12-06T01:51:06.558+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:51:06.556+00:00", "updatedDate": "2021-12-06T01:51:06.556+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "email": "sheldon@example.com", "firstName": "bazinga", "lastName": "sheldon", "preferredContactTypeId": "002" }, "proxyFor": [], "updatedDate": "2021-12-06T01:51:06.558+00:00", "username": "sheldon" }'); INSERT INTO user_users VALUES ('b4e91548-c387-4b01-aaa1-489afc3f6936', false, '570514672235127', '2021-12-06 01:51:07.82+00', '2016-08-10 00:00:00+00', '2019-11-04 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.82+00', 'daisha', '{ "id": "b4e91548-c387-4b01-aaa1-489afc3f6936", "active": false, "barcode": "570514672235127", "createdDate": "2021-12-06T01:51:07.820+00:00", "departments": [], "enrollmentDate": "2016-08-10T00:00:00.000+00:00", "expirationDate": "2019-11-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.816+00:00", "updatedDate": "2021-12-06T01:51:07.816+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "75141 Morissette Club", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Lawndale", "countryId": "US", "postalCode": "96367-3820", "primaryAddress": true, "region": "VI" } ], "dateOfBirth": "1956-02-23T00:00:00.000+00:00", "email": "earnestine@baumbach-and-sons.biz", "firstName": "Timothy", "lastName": "Murazik", "middleName": "Vernice", "phone": "664.744.4131 x4274", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.820+00:00", "username": "daisha" }'); INSERT INTO user_users VALUES ('b4fa5d79-4af6-4623-9331-fabdfee79e0c', false, '453819069972642', '2021-12-06 01:51:06.019+00', '2018-12-12 00:00:00+00', '2020-06-28 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.019+00', 'matilda', '{ "id": "b4fa5d79-4af6-4623-9331-fabdfee79e0c", "active": false, "barcode": "453819069972642", "createdDate": "2021-12-06T01:51:06.019+00:00", "departments": [], "enrollmentDate": "2018-12-12T00:00:00.000+00:00", "expirationDate": "2020-06-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.015+00:00", "updatedDate": "2021-12-06T01:51:06.015+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "08425 Schimmel Streets #234", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Westminster", "countryId": "US", "postalCode": "64224-5588", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1965-12-07T00:00:00.000+00:00", "email": "alisa@murray-stoltenberg.ls", "firstName": "Aylin", "lastName": "Koss", "middleName": "Velda", "mobilePhone": "1-394-292-7906", "phone": "314.644.6648", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.019+00:00", "username": "matilda" }'); INSERT INTO user_users VALUES ('b549fc60-9779-4bac-a4de-df8304ff69c4', false, '862944982096053', '2021-12-06 01:51:04.991+00', '2018-05-12 00:00:00+00', '2020-02-05 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.991+00', 'sigrid', '{ "id": "b549fc60-9779-4bac-a4de-df8304ff69c4", "active": false, "barcode": "862944982096053", "createdDate": "2021-12-06T01:51:04.991+00:00", "departments": [], "enrollmentDate": "2018-05-12T00:00:00.000+00:00", "expirationDate": "2020-02-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.987+00:00", "updatedDate": "2021-12-06T01:51:04.987+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "11572 Cummerata Cliffs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Dayton", "countryId": "US", "postalCode": "09960-1381", "primaryAddress": true, "region": "PA" } ], "dateOfBirth": "1974-11-07T00:00:00.000+00:00", "email": "cheyenne@wehner-schinner-and-altenwerth.ne", "firstName": "Donny", "lastName": "McCullough", "middleName": "Macey", "mobilePhone": "893.859.2876 x60367", "phone": "1-545-455-4488 x6810", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.991+00:00", "username": "sigrid" }'); INSERT INTO user_users VALUES ('b56b28b9-7f22-426e-a099-4f753be686fa', false, '170699227458857', '2021-12-06 01:51:06.734+00', '2018-11-15 00:00:00+00', '2020-06-03 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.734+00', 'emmett', '{ "id": "b56b28b9-7f22-426e-a099-4f753be686fa", "active": false, "barcode": "170699227458857", "createdDate": "2021-12-06T01:51:06.734+00:00", "departments": [], "enrollmentDate": "2018-11-15T00:00:00.000+00:00", "expirationDate": "2020-06-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.731+00:00", "updatedDate": "2021-12-06T01:51:06.731+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "24827 Kilback Burg", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Torrance", "countryId": "US", "postalCode": "57239", "primaryAddress": true, "region": "MI" } ], "dateOfBirth": "2006-01-04T00:00:00.000+00:00", "email": "sebastian@keeling-inc.yt", "firstName": "Augustus", "lastName": "Hahn", "mobilePhone": "631.312.6842 x4971", "phone": "511.615.4976 x7146", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.734+00:00", "username": "emmett" }'); INSERT INTO user_users VALUES ('b617c5f2-78d4-4c7e-bf0c-d21392a8c39f', false, '240905641162392', '2021-12-06 01:51:07.292+00', '2015-04-23 00:00:00+00', '2019-06-19 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.292+00', 'megane', '{ "id": "b617c5f2-78d4-4c7e-bf0c-d21392a8c39f", "active": false, "barcode": "240905641162392", "createdDate": "2021-12-06T01:51:07.292+00:00", "departments": [], "enrollmentDate": "2015-04-23T00:00:00.000+00:00", "expirationDate": "2019-06-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.289+00:00", "updatedDate": "2021-12-06T01:51:07.289+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "93542 Gusikowski Knolls", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Parma", "countryId": "US", "postalCode": "88257-0564", "primaryAddress": true, "region": "NY" } ], "dateOfBirth": "1962-12-24T00:00:00.000+00:00", "email": "lorenza@renner-witting-and-purdy.lu", "firstName": "Erik", "lastName": "Grant", "middleName": "Danielle", "mobilePhone": "931.111.2135", "phone": "333-400-5145 x657", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.292+00:00", "username": "megane" }'); INSERT INTO user_users VALUES ('b7da16ef-f3d2-4c12-a564-858bc3eee366', false, '85287353151223', '2021-12-06 01:51:07+00', '2019-01-09 00:00:00+00', '2019-06-25 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07+00', 'brannon', '{ "id": "b7da16ef-f3d2-4c12-a564-858bc3eee366", "active": false, "barcode": "85287353151223", "createdDate": "2021-12-06T01:51:07.000+00:00", "departments": [], "enrollmentDate": "2019-01-09T00:00:00.000+00:00", "expirationDate": "2019-06-25T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.997+00:00", "updatedDate": "2021-12-06T01:51:06.997+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "76755 Carole Island #241", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Youngstown", "countryId": "US", "postalCode": "42417-8321", "primaryAddress": true, "region": "AA" } ], "dateOfBirth": "1951-08-14T00:00:00.000+00:00", "email": "carlee@stoltenberg-conroy-and-haley.ke", "firstName": "Catherine", "lastName": "Spinka", "mobilePhone": "334.929.0079 x6543", "phone": "(557)463-6458", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.000+00:00", "username": "brannon" }'); INSERT INTO user_users VALUES ('b7f677aa-e2db-4bb5-81f8-beee547bce68', false, '198766567677200', '2021-12-06 01:51:05.5+00', '2015-08-18 00:00:00+00', '2020-01-20 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.5+00', 'ellen', '{ "id": "b7f677aa-e2db-4bb5-81f8-beee547bce68", "active": false, "barcode": "198766567677200", "createdDate": "2021-12-06T01:51:05.500+00:00", "departments": [], "enrollmentDate": "2015-08-18T00:00:00.000+00:00", "expirationDate": "2020-01-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.497+00:00", "updatedDate": "2021-12-06T01:51:05.497+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "22734 Rogelio Park #619", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Ventura", "countryId": "US", "postalCode": "58929-3148", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1948-08-28T00:00:00.000+00:00", "email": "ed@wyman-and-sons.lc", "firstName": "Gayle", "lastName": "Spinka", "middleName": "Yadira", "phone": "1-488-794-2446 x46383", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.500+00:00", "username": "ellen" }'); INSERT INTO user_users VALUES ('b9a05706-9d87-499d-8e5e-47dc512a21c3', false, '163270145839920', '2021-12-06 01:51:05.402+00', '2015-09-23 00:00:00+00', '2020-01-31 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.402+00', 'gia', '{ "id": "b9a05706-9d87-499d-8e5e-47dc512a21c3", "active": false, "barcode": "163270145839920", "createdDate": "2021-12-06T01:51:05.402+00:00", "departments": [], "enrollmentDate": "2015-09-23T00:00:00.000+00:00", "expirationDate": "2020-01-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.399+00:00", "updatedDate": "2021-12-06T01:51:05.399+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "85402 Grady Station", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Jonesboro", "countryId": "US", "postalCode": "02204-9296", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1954-08-24T00:00:00.000+00:00", "email": "albina@beahan-schowalter-and-hirthe.nj.us", "firstName": "Blanca", "lastName": "Funk", "middleName": "America", "phone": "783.141.0202 x61122", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.402+00:00", "username": "gia" }'); INSERT INTO user_users VALUES ('bb3b3060-cc9e-4586-ba76-a16c6f757648', true, '163875608976248593', '2021-12-06 02:01:29.766+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:29.766+00', 'technical-service-staff', '{ "id": "bb3b3060-cc9e-4586-ba76-a16c6f757648", "active": true, "barcode": "163875608976248593", "createdDate": "2021-12-06T02:01:29.766+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.764+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.764+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "technical-service-staff", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:29.766+00:00", "username": "technical-service-staff" }'); INSERT INTO user_users VALUES ('bb4d8818-35cc-4cb6-b181-b5ccfb734744', false, '744632821019678', '2021-12-06 01:51:08.226+00', '2017-05-17 00:00:00+00', '2019-08-25 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.226+00', 'jessy', '{ "id": "bb4d8818-35cc-4cb6-b181-b5ccfb734744", "active": false, "barcode": "744632821019678", "createdDate": "2021-12-06T01:51:08.226+00:00", "departments": [], "enrollmentDate": "2017-05-17T00:00:00.000+00:00", "expirationDate": "2019-08-25T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.224+00:00", "updatedDate": "2021-12-06T01:51:08.224+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "00628 Lueilwitz Plains Apt. 185", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Forrest City", "countryId": "US", "postalCode": "35163-7456", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1959-03-28T00:00:00.000+00:00", "email": "sid@mohr-schowalter.ec", "firstName": "Donna", "lastName": "Zieme", "middleName": "Santa", "phone": "(717)282-0004 x5449", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.226+00:00", "username": "jessy" }'); INSERT INTO user_users VALUES ('bc048122-1914-4971-ab0f-62303fef71aa', false, '962507858300576', '2021-12-06 01:51:05.373+00', '2017-07-28 00:00:00+00', '2020-10-28 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.373+00', 'clifton', '{ "id": "bc048122-1914-4971-ab0f-62303fef71aa", "active": false, "barcode": "962507858300576", "createdDate": "2021-12-06T01:51:05.373+00:00", "departments": [], "enrollmentDate": "2017-07-28T00:00:00.000+00:00", "expirationDate": "2020-10-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.369+00:00", "updatedDate": "2021-12-06T01:51:05.369+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "84059 Anthony Pine", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Kokomo", "countryId": "US", "postalCode": "86233-6003", "primaryAddress": true, "region": "NE" } ], "dateOfBirth": "1947-03-21T00:00:00.000+00:00", "email": "lillian@kreiger-halvorson-and-reynolds.eg", "firstName": "Jolie", "lastName": "Koss", "mobilePhone": "322-338-8530 x1379", "phone": "(234)085-0331 x789", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.373+00:00", "username": "clifton" }'); INSERT INTO user_users VALUES ('bd566b21-d125-421c-9c78-2b9a8bc4c4f7', false, '283482082624086', '2021-12-06 01:51:07.021+00', '2016-12-08 00:00:00+00', '2020-10-16 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.021+00', 'emery', '{ "id": "bd566b21-d125-421c-9c78-2b9a8bc4c4f7", "active": false, "barcode": "283482082624086", "createdDate": "2021-12-06T01:51:07.021+00:00", "departments": [], "enrollmentDate": "2016-12-08T00:00:00.000+00:00", "expirationDate": "2020-10-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.018+00:00", "updatedDate": "2021-12-06T01:51:07.018+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "78856 Koch Creek #601", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Nome", "countryId": "US", "postalCode": "60968", "primaryAddress": true, "region": "ME" } ], "dateOfBirth": "1956-12-17T00:00:00.000+00:00", "email": "hazel@kunze-blick.jo", "firstName": "Izabella", "lastName": "Rutherford", "phone": "121.036.1972 x4837", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.021+00:00", "username": "emery" }'); INSERT INTO user_users VALUES ('be2e9bdb-9884-4fe9-87d0-ba91e8425412', false, '730185433611190', '2021-12-06 01:51:06.463+00', '2018-10-20 00:00:00+00', '2019-11-07 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.463+00', 'leonie', '{ "id": "be2e9bdb-9884-4fe9-87d0-ba91e8425412", "active": false, "barcode": "730185433611190", "createdDate": "2021-12-06T01:51:06.463+00:00", "departments": [], "enrollmentDate": "2018-10-20T00:00:00.000+00:00", "expirationDate": "2019-11-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.460+00:00", "updatedDate": "2021-12-06T01:51:06.460+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "37578 Apartment W", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Cleveland", "countryId": "US", "postalCode": "92540-2841", "primaryAddress": true, "region": "KS" } ], "dateOfBirth": "2016-05-09T00:00:00.000+00:00", "email": "drake@kohler-okeefe-and-dooley.au", "firstName": "Annabel", "lastName": "Crona", "middleName": "Bobby", "mobilePhone": "298-868-8224 x5729", "phone": "852.559.2262 x8243", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.463+00:00", "username": "leonie" }'); INSERT INTO user_users VALUES ('be3113c3-0965-4bf4-97c2-40ff54501c2b', false, '80649207380965', '2021-12-06 01:51:05.603+00', '2018-10-28 00:00:00+00', '2020-09-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.603+00', 'alexandria', '{ "id": "be3113c3-0965-4bf4-97c2-40ff54501c2b", "active": false, "barcode": "80649207380965", "createdDate": "2021-12-06T01:51:05.603+00:00", "departments": [], "enrollmentDate": "2018-10-28T00:00:00.000+00:00", "expirationDate": "2020-09-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.600+00:00", "updatedDate": "2021-12-06T01:51:05.600+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "77253 Julien Roads", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Two Rivers", "countryId": "US", "postalCode": "88605-1788", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "2005-01-14T00:00:00.000+00:00", "email": "efrain@tromp-feest-and-runolfsdottir.gf", "firstName": "Chelsie", "lastName": "Walker", "middleName": "Carmela", "phone": "152-043-1465 x5892", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.603+00:00", "username": "alexandria" }'); INSERT INTO user_users VALUES ('beaffbac-e56d-4e32-a653-b631945f060c', false, '412224905087885', '2021-12-06 01:51:08.386+00', '2015-04-05 00:00:00+00', '2020-10-15 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.386+00', 'torrey', '{ "id": "beaffbac-e56d-4e32-a653-b631945f060c", "active": false, "barcode": "412224905087885", "createdDate": "2021-12-06T01:51:08.386+00:00", "departments": [], "enrollmentDate": "2015-04-05T00:00:00.000+00:00", "expirationDate": "2020-10-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.383+00:00", "updatedDate": "2021-12-06T01:51:08.383+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "43219 Zoila Trail Suite 009", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "City of Industry", "countryId": "US", "postalCode": "22672", "primaryAddress": true, "region": "OK" } ], "dateOfBirth": "1971-07-01T00:00:00.000+00:00", "email": "destinee@luettgen-group.mg", "firstName": "Lewis", "lastName": "Denesik", "mobilePhone": "1-429-481-8803", "phone": "(741)575-5116 x51130", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.386+00:00", "username": "torrey" }'); INSERT INTO user_users VALUES ('bec20636-fb68-41fd-84ea-2cf910673599', true, '456', '2021-12-06 01:51:08.375+00', '2020-10-07 04:00:00+00', NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', NULL, '2021-12-06 01:51:08.375+00', 'morty', '{ "id": "bec20636-fb68-41fd-84ea-2cf910673599", "active": true, "barcode": "456", "createdDate": "2021-12-06T01:51:08.375+00:00", "departments": [], "enrollmentDate": "2020-10-07T04:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.373+00:00", "updatedDate": "2021-12-06T01:51:08.373+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "email": "morty@example.com", "firstName": "panic", "lastName": "morty", "preferredContactTypeId": "002" }, "proxyFor": [], "updatedDate": "2021-12-06T01:51:08.375+00:00", "username": "morty" }'); INSERT INTO user_users VALUES ('bf93cf45-4c02-4a34-aad0-9ed949109630', false, '916928316187196', '2021-12-06 01:51:06.45+00', '2017-06-14 00:00:00+00', '2019-03-30 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.45+00', 'ambrose', '{ "id": "bf93cf45-4c02-4a34-aad0-9ed949109630", "active": false, "barcode": "916928316187196", "createdDate": "2021-12-06T01:51:06.450+00:00", "departments": [], "enrollmentDate": "2017-06-14T00:00:00.000+00:00", "expirationDate": "2019-03-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.445+00:00", "updatedDate": "2021-12-06T01:51:06.445+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "48545 Kessler Harbors", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Alameda", "countryId": "US", "postalCode": "70909-1665", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1997-06-19T00:00:00.000+00:00", "email": "shaylee@hayes-and-sons.aero", "firstName": "Buck", "lastName": "West", "mobilePhone": "752-136-3560 x448", "phone": "016.042.5121", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.450+00:00", "username": "ambrose" }'); INSERT INTO user_users VALUES ('c0af9380-d277-4820-a607-15a2d9c50ba6', false, '631966751550162', '2021-12-06 01:51:07.361+00', '2018-11-23 00:00:00+00', '2020-07-05 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:07.361+00', 'clair', '{ "id": "c0af9380-d277-4820-a607-15a2d9c50ba6", "active": false, "barcode": "631966751550162", "createdDate": "2021-12-06T01:51:07.361+00:00", "departments": [], "enrollmentDate": "2018-11-23T00:00:00.000+00:00", "expirationDate": "2020-07-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.359+00:00", "updatedDate": "2021-12-06T01:51:07.359+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "35081 Konopelski Port", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "City of Industry", "countryId": "US", "postalCode": "62796", "primaryAddress": true, "region": "AK" } ], "dateOfBirth": "1997-08-20T00:00:00.000+00:00", "email": "rodger@ledner-jaskolski.vn", "firstName": "Paris", "lastName": "Schaden", "middleName": "Rosetta", "mobilePhone": "529-349-8873", "phone": "(273)655-1780 x0849", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.361+00:00", "username": "clair" }'); INSERT INTO user_users VALUES ('c0d4a2da-7c38-46f4-869c-797bb083ee2d', false, '738389180339421', '2021-12-06 01:51:08.397+00', '2016-10-03 00:00:00+00', '2020-10-08 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.397+00', 'mina', '{ "id": "c0d4a2da-7c38-46f4-869c-797bb083ee2d", "active": false, "barcode": "738389180339421", "createdDate": "2021-12-06T01:51:08.397+00:00", "departments": [], "enrollmentDate": "2016-10-03T00:00:00.000+00:00", "expirationDate": "2020-10-08T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.394+00:00", "updatedDate": "2021-12-06T01:51:08.394+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "03906 Waelchi Lodge", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Mirada", "countryId": "US", "postalCode": "84767", "primaryAddress": true, "region": "CO" } ], "dateOfBirth": "1967-09-16T00:00:00.000+00:00", "email": "jaqueline@prohaska-toy.az.us", "firstName": "Linda", "lastName": "Grady", "middleName": "Abbigail", "phone": "1-220-294-1820", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.397+00:00", "username": "mina" }'); INSERT INTO user_users VALUES ('c1277b9b-b165-48ee-ac35-e737ed325f34', false, '580560277022502', '2021-12-06 01:51:05.146+00', '2018-08-08 00:00:00+00', '2020-06-17 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.146+00', 'candelario', '{ "id": "c1277b9b-b165-48ee-ac35-e737ed325f34", "active": false, "barcode": "580560277022502", "createdDate": "2021-12-06T01:51:05.146+00:00", "departments": [], "enrollmentDate": "2018-08-08T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.143+00:00", "updatedDate": "2021-12-06T01:51:05.143+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "46087 Haley Shore", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Demopolis", "countryId": "US", "postalCode": "38116-1902", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "1984-04-30T00:00:00.000+00:00", "email": "zack@langosh-oconner-and-runolfsdottir.id.us", "firstName": "Leda", "lastName": "Pollich", "phone": "1-640-587-7257 x35499", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.146+00:00", "username": "candelario" }'); INSERT INTO user_users VALUES ('c2610e2c-a6f8-4336-95b6-54d716348b03', false, '293649666736325', '2021-12-06 01:51:07.845+00', '2019-02-19 00:00:00+00', '2020-01-23 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.845+00', 'rowland', '{ "id": "c2610e2c-a6f8-4336-95b6-54d716348b03", "active": false, "barcode": "293649666736325", "createdDate": "2021-12-06T01:51:07.845+00:00", "departments": [], "enrollmentDate": "2019-02-19T00:00:00.000+00:00", "expirationDate": "2020-01-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.842+00:00", "updatedDate": "2021-12-06T01:51:07.842+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "49850 Elmira Glens", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Artesia", "countryId": "US", "postalCode": "49011", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "1977-11-06T00:00:00.000+00:00", "email": "sydney@medhurst-inc.int", "firstName": "Jarrod", "lastName": "Prohaska", "mobilePhone": "(536)595-2779", "phone": "038.642.4876", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.845+00:00", "username": "rowland" }'); INSERT INTO user_users VALUES ('c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096', false, '746279801800330', '2021-12-06 01:51:06.91+00', '2016-10-29 00:00:00+00', '2019-10-29 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.91+00', 'nathaniel', '{ "id": "c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096", "active": false, "barcode": "746279801800330", "createdDate": "2021-12-06T01:51:06.910+00:00", "departments": [], "enrollmentDate": "2016-10-29T00:00:00.000+00:00", "expirationDate": "2019-10-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.907+00:00", "updatedDate": "2021-12-06T01:51:06.907+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "31257 Nitzsche Run", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Mesa", "countryId": "US", "postalCode": "92945", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "1962-11-21T00:00:00.000+00:00", "email": "christelle@weimann-and-sons.mt", "firstName": "Ines", "lastName": "Bergnaum", "middleName": "Terrill", "mobilePhone": "(459)612-0145", "phone": "124-896-4381", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.910+00:00", "username": "nathaniel" }'); INSERT INTO user_users VALUES ('c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5', false, '301995528428356', '2021-12-06 01:51:06.38+00', '2016-06-17 00:00:00+00', '2020-08-06 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.38+00', 'gladyce', '{ "id": "c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5", "active": false, "barcode": "301995528428356", "createdDate": "2021-12-06T01:51:06.380+00:00", "departments": [], "enrollmentDate": "2016-06-17T00:00:00.000+00:00", "expirationDate": "2020-08-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.376+00:00", "updatedDate": "2021-12-06T01:51:06.376+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "42351 Andre Island Suite 619", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Montebello", "countryId": "US", "postalCode": "88812", "primaryAddress": true, "region": "MS" } ], "dateOfBirth": "1973-04-18T00:00:00.000+00:00", "email": "hester@sauer-kuphal.as", "firstName": "Ada", "lastName": "Medhurst", "middleName": "Brionna", "mobilePhone": "1-211-174-2359", "phone": "413.255.5895", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.380+00:00", "username": "gladyce" }'); INSERT INTO user_users VALUES ('c51cf0e7-ea33-4638-a54c-afffc75a680b', false, '539526509780788', '2021-12-06 01:51:05.579+00', '2016-01-05 00:00:00+00', '2019-10-04 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.579+00', 'justen', '{ "id": "c51cf0e7-ea33-4638-a54c-afffc75a680b", "active": false, "barcode": "539526509780788", "createdDate": "2021-12-06T01:51:05.579+00:00", "departments": [], "enrollmentDate": "2016-01-05T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.576+00:00", "updatedDate": "2021-12-06T01:51:05.576+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "54893 Jadon Passage", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Athens", "countryId": "US", "postalCode": "96737-5586", "primaryAddress": true, "region": "CO" } ], "dateOfBirth": "1955-02-23T00:00:00.000+00:00", "email": "treva@wisoky-steuber-and-heidenreich.gi", "firstName": "Evalyn", "lastName": "Cole", "middleName": "Randy", "mobilePhone": "545-526-9295 x950", "phone": "109.591.5479 x92261", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.579+00:00", "username": "justen" }'); INSERT INTO user_users VALUES ('c573e5f8-a570-475d-a75e-88a4d2b757d2', false, '255735337127152', '2021-12-06 01:51:05.222+00', '2015-10-30 00:00:00+00', '2019-04-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.222+00', 'raphaelle', '{ "id": "c573e5f8-a570-475d-a75e-88a4d2b757d2", "active": false, "barcode": "255735337127152", "createdDate": "2021-12-06T01:51:05.222+00:00", "departments": [], "enrollmentDate": "2015-10-30T00:00:00.000+00:00", "expirationDate": "2019-04-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.218+00:00", "updatedDate": "2021-12-06T01:51:05.218+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "96095 Nicolas Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Laguna Woods", "countryId": "US", "postalCode": "50788-7838", "primaryAddress": true, "region": "FL" } ], "dateOfBirth": "1963-10-08T00:00:00.000+00:00", "email": "cullen@cassin-llc.bh", "firstName": "Harry", "lastName": "Barrows", "mobilePhone": "959-422-9547 x581", "phone": "261.843.4484 x190", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.222+00:00", "username": "raphaelle" }'); INSERT INTO user_users VALUES ('c6a1f097-1292-441c-a760-682279a7f94c', false, '225841499591069', '2021-12-06 01:51:08.141+00', '2016-07-23 00:00:00+00', '2021-03-06 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.141+00', 'nathanial', '{ "id": "c6a1f097-1292-441c-a760-682279a7f94c", "active": false, "barcode": "225841499591069", "createdDate": "2021-12-06T01:51:08.141+00:00", "departments": [], "enrollmentDate": "2016-07-23T00:00:00.000+00:00", "expirationDate": "2021-03-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.138+00:00", "updatedDate": "2021-12-06T01:51:08.138+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "93630 Jaren Lodge Apt. 500", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hammond", "countryId": "US", "postalCode": "32299-8293", "primaryAddress": true, "region": "KS" } ], "dateOfBirth": "1971-06-16T00:00:00.000+00:00", "email": "dariana@schowalter-jacobi.md", "firstName": "Trystan", "lastName": "Quitzon", "middleName": "Maria", "phone": "1-470-776-6946 x086", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.141+00:00", "username": "nathanial" }'); INSERT INTO user_users VALUES ('c6d99127-e834-4f60-9a77-f74646cd1618', false, '624284667711407', '2021-12-06 01:51:05.591+00', '2018-05-26 00:00:00+00', '2019-05-16 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.591+00', 'kenneth', '{ "id": "c6d99127-e834-4f60-9a77-f74646cd1618", "active": false, "barcode": "624284667711407", "createdDate": "2021-12-06T01:51:05.591+00:00", "departments": [], "enrollmentDate": "2018-05-26T00:00:00.000+00:00", "expirationDate": "2019-05-16T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.588+00:00", "updatedDate": "2021-12-06T01:51:05.588+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "74210 Front", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Atwater", "countryId": "US", "postalCode": "28194-0379", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1972-12-13T00:00:00.000+00:00", "email": "rosalia@hirthe-raynor.az", "firstName": "Hipolito", "lastName": "Koss", "phone": "049.877.6192", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.591+00:00", "username": "kenneth" }'); INSERT INTO user_users VALUES ('c78aa9ec-b7d3-4d53-9e43-20296f39b496', false, '874335864399373', '2021-12-06 01:51:05.009+00', '2019-02-16 00:00:00+00', '2020-09-09 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.009+00', 'clara', '{ "id": "c78aa9ec-b7d3-4d53-9e43-20296f39b496", "active": false, "barcode": "874335864399373", "createdDate": "2021-12-06T01:51:05.009+00:00", "departments": [], "enrollmentDate": "2019-02-16T00:00:00.000+00:00", "expirationDate": "2020-09-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.004+00:00", "updatedDate": "2021-12-06T01:51:05.004+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "88500 Kozey Terrace Apt. 252", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Cypress", "countryId": "US", "postalCode": "49387-9443", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "1965-06-04T00:00:00.000+00:00", "email": "eula@walter-wyman-and-wintheiser.ly", "firstName": "Jeanne", "lastName": "Stoltenberg", "phone": "(874)390-9335 x53499", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.009+00:00", "username": "clara" }'); INSERT INTO user_users VALUES ('c7d6c761-905e-4e7b-a616-a624175efe11', false, '28749549181060', '2021-12-06 01:51:05.239+00', '2018-03-03 00:00:00+00', '2019-04-03 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.239+00', 'reva', '{ "id": "c7d6c761-905e-4e7b-a616-a624175efe11", "active": false, "barcode": "28749549181060", "createdDate": "2021-12-06T01:51:05.239+00:00", "departments": [], "enrollmentDate": "2018-03-03T00:00:00.000+00:00", "expirationDate": "2019-04-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.235+00:00", "updatedDate": "2021-12-06T01:51:05.235+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "80404 Domenico Crescent", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Springfield", "countryId": "US", "postalCode": "68890", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1960-08-24T00:00:00.000+00:00", "email": "bradford@ebert-nikolaus-and-hauck.sb", "firstName": "Hassie", "lastName": "Koss", "middleName": "Esmeralda", "mobilePhone": "807-715-7006 x3633", "phone": "1-107-113-0140", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.239+00:00", "username": "reva" }'); INSERT INTO user_users VALUES ('c8c1eced-7ff5-44e2-89da-12d276c1e2bc', false, '160344906506519', '2021-12-06 01:51:07.043+00', '2018-08-06 00:00:00+00', '2019-03-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.043+00', 'anibal', '{ "id": "c8c1eced-7ff5-44e2-89da-12d276c1e2bc", "active": false, "barcode": "160344906506519", "createdDate": "2021-12-06T01:51:07.043+00:00", "departments": [], "enrollmentDate": "2018-08-06T00:00:00.000+00:00", "expirationDate": "2019-03-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.040+00:00", "updatedDate": "2021-12-06T01:51:07.040+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "19978 Carter Station", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Rancho Cucamonga", "countryId": "US", "postalCode": "07536-0783", "primaryAddress": true, "region": "VI" } ], "dateOfBirth": "1977-08-15T00:00:00.000+00:00", "email": "buford@turcotte-llc.is", "firstName": "Cathrine", "lastName": "Bechtelar", "middleName": "Thad", "mobilePhone": "1-817-764-3834 x43946", "phone": "(626)406-2046 x8906", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.043+00:00", "username": "anibal" }'); INSERT INTO user_users VALUES ('c8edf675-9323-4410-9d14-0727e038dad0', false, '636177113671031', '2021-12-06 01:51:07.86+00', '2017-07-24 00:00:00+00', '2020-08-09 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.86+00', 'aidan', '{ "id": "c8edf675-9323-4410-9d14-0727e038dad0", "active": false, "barcode": "636177113671031", "createdDate": "2021-12-06T01:51:07.860+00:00", "departments": [], "enrollmentDate": "2017-07-24T00:00:00.000+00:00", "expirationDate": "2020-08-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.854+00:00", "updatedDate": "2021-12-06T01:51:07.854+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "81579 Schmeler Pass #287", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Kent", "countryId": "US", "postalCode": "59451", "primaryAddress": true, "region": "IL" } ], "dateOfBirth": "2001-08-23T00:00:00.000+00:00", "email": "chaim@mohr-bayer.ye", "firstName": "Carmel", "lastName": "Wiegand", "mobilePhone": "(704)961-5376 x05171", "phone": "517-968-1902", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.860+00:00", "username": "aidan" }'); INSERT INTO user_users VALUES ('c9255397-a8cb-4208-9558-1aae0e6f2c68', false, '503862344388601', '2021-12-06 01:51:07.489+00', '2018-08-02 00:00:00+00', '2020-04-27 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.489+00', 'leone', '{ "id": "c9255397-a8cb-4208-9558-1aae0e6f2c68", "active": false, "barcode": "503862344388601", "createdDate": "2021-12-06T01:51:07.489+00:00", "departments": [], "enrollmentDate": "2018-08-02T00:00:00.000+00:00", "expirationDate": "2020-04-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.486+00:00", "updatedDate": "2021-12-06T01:51:07.486+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "70443 Braulio Burg", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Artesia", "countryId": "US", "postalCode": "54673", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1982-09-02T00:00:00.000+00:00", "email": "ibrahim@strosin-mills.ir", "firstName": "Darrell", "lastName": "Champlin", "phone": "045.478.1813", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.489+00:00", "username": "leone" }'); INSERT INTO user_users VALUES ('c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9', false, '899099756585922', '2021-12-06 01:51:07.407+00', '2018-09-19 00:00:00+00', '2021-02-03 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.407+00', 'deontae', '{ "id": "c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9", "active": false, "barcode": "899099756585922", "createdDate": "2021-12-06T01:51:07.407+00:00", "departments": [], "enrollmentDate": "2018-09-19T00:00:00.000+00:00", "expirationDate": "2021-02-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.404+00:00", "updatedDate": "2021-12-06T01:51:07.404+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "64411 Bednar Drive", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Redlands", "countryId": "US", "postalCode": "61253-4819", "primaryAddress": true, "region": "OH" } ], "dateOfBirth": "1952-02-27T00:00:00.000+00:00", "email": "janie@jacobs-murazik.ky", "firstName": "Chase", "lastName": "McDermott", "middleName": "Annie", "mobilePhone": "016-896-5945 x46110", "phone": "1-528-887-7262 x08397", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.407+00:00", "username": "deontae" }'); INSERT INTO user_users VALUES ('c97f19d3-7a82-4891-aaa1-de087a9a903f', false, '617842747960086', '2021-12-06 01:51:07.271+00', '2016-09-06 00:00:00+00', '2019-10-09 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.271+00', 'novella', '{ "id": "c97f19d3-7a82-4891-aaa1-de087a9a903f", "active": false, "barcode": "617842747960086", "createdDate": "2021-12-06T01:51:07.271+00:00", "departments": [], "enrollmentDate": "2016-09-06T00:00:00.000+00:00", "expirationDate": "2019-10-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.268+00:00", "updatedDate": "2021-12-06T01:51:07.268+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "16469 Champlin Walks Apt. 641", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Nenana", "countryId": "US", "postalCode": "65778", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "1981-02-07T00:00:00.000+00:00", "email": "leilani@rutherford-ortiz-and-halvorson.cm", "firstName": "Julianne", "lastName": "Klocko", "phone": "058-815-1186 x99192", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.271+00:00", "username": "novella" }'); INSERT INTO user_users VALUES ('cc0685f2-6ac2-4840-bb67-1493c14968c5', false, '555048703191946', '2021-12-06 01:51:06.267+00', '2018-03-28 00:00:00+00', '2020-05-09 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.267+00', 'elinor', '{ "id": "cc0685f2-6ac2-4840-bb67-1493c14968c5", "active": false, "barcode": "555048703191946", "createdDate": "2021-12-06T01:51:06.267+00:00", "departments": [], "enrollmentDate": "2018-03-28T00:00:00.000+00:00", "expirationDate": "2020-05-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.263+00:00", "updatedDate": "2021-12-06T01:51:06.263+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "18098 Floor 27", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Oakland", "countryId": "US", "postalCode": "09139", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "2012-03-21T00:00:00.000+00:00", "email": "davin@braun-schiller.es", "firstName": "Geovanni", "lastName": "Denesik", "middleName": "Columbus", "phone": "1-253-594-8460", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.267+00:00", "username": "elinor" }'); INSERT INTO user_users VALUES ('cd5994cf-6ee5-49b4-b58e-7bc70d724626', false, '386142078590559', '2021-12-06 01:51:05.041+00', '2015-04-25 00:00:00+00', '2020-04-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.041+00', 'pierre', '{ "id": "cd5994cf-6ee5-49b4-b58e-7bc70d724626", "active": false, "barcode": "386142078590559", "createdDate": "2021-12-06T01:51:05.041+00:00", "departments": [], "enrollmentDate": "2015-04-25T00:00:00.000+00:00", "expirationDate": "2020-04-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.036+00:00", "updatedDate": "2021-12-06T01:51:05.036+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "78353 Brandt Spring Suite 500", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Cleveland", "countryId": "US", "postalCode": "30597-9040", "primaryAddress": true, "region": "WA" } ], "dateOfBirth": "1961-07-09T00:00:00.000+00:00", "email": "america@jast-hamill.ao", "firstName": "Cordie", "lastName": "Tillman", "phone": "024.243.8205", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.041+00:00", "username": "pierre" }'); INSERT INTO user_users VALUES ('ceecd8ee-9586-4024-b107-d368b58a1025', false, '573009423883949', '2021-12-06 01:51:07.526+00', '2016-02-14 00:00:00+00', '2020-12-10 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.526+00', 'wilson', '{ "id": "ceecd8ee-9586-4024-b107-d368b58a1025", "active": false, "barcode": "573009423883949", "createdDate": "2021-12-06T01:51:07.526+00:00", "departments": [], "enrollmentDate": "2016-02-14T00:00:00.000+00:00", "expirationDate": "2020-12-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.523+00:00", "updatedDate": "2021-12-06T01:51:07.523+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "51874 Lot I", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Citrus Heights", "countryId": "US", "postalCode": "79425", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "2006-01-06T00:00:00.000+00:00", "email": "reynold@schiller-rosenbaum.mr", "firstName": "Aiden", "lastName": "Rodriguez", "mobilePhone": "1-828-390-1202", "phone": "(272)693-4697 x283", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.526+00:00", "username": "wilson" }'); INSERT INTO user_users VALUES ('d0fc4228-2e42-49b2-a5b0-9df48897e8c0', false, '109322966933845', '2021-12-06 01:51:04.903+00', '2018-07-13 00:00:00+00', '2020-04-08 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:04.903+00', 'emmet', '{ "id": "d0fc4228-2e42-49b2-a5b0-9df48897e8c0", "active": false, "barcode": "109322966933845", "createdDate": "2021-12-06T01:51:04.903+00:00", "departments": [], "enrollmentDate": "2018-07-13T00:00:00.000+00:00", "expirationDate": "2020-04-08T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.898+00:00", "updatedDate": "2021-12-06T01:51:04.898+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "29948 Leo Ville", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Fernando", "countryId": "US", "postalCode": "38250-2292", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "2000-09-26T00:00:00.000+00:00", "email": "anastacio@hansen-dickens-and-mante.vu", "firstName": "Penelope", "lastName": "Feil", "middleName": "Myrna", "mobilePhone": "245.227.6385 x84533", "phone": "(145)639-8408 x1218", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.903+00:00", "username": "emmet" }'); INSERT INTO user_users VALUES ('d1f69036-a316-41e4-89c1-77f77a3c7f1d', false, '765942690370788', '2021-12-06 01:51:05.947+00', '2016-09-08 00:00:00+00', '2020-04-05 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.947+00', 'cecile', '{ "id": "d1f69036-a316-41e4-89c1-77f77a3c7f1d", "active": false, "barcode": "765942690370788", "createdDate": "2021-12-06T01:51:05.947+00:00", "departments": [], "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2020-04-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.944+00:00", "updatedDate": "2021-12-06T01:51:05.944+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "22729 Juanita Islands", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Westlake Village", "countryId": "US", "postalCode": "26800", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "1998-12-08T00:00:00.000+00:00", "email": "florence@konopelski-ortiz-and-gerhold.ck", "firstName": "Clarabelle", "lastName": "Rohan", "middleName": "Fanny", "mobilePhone": "1-792-096-9819 x42761", "phone": "1-726-697-5332", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.947+00:00", "username": "cecile" }'); INSERT INTO user_users VALUES ('d20d2f4e-6356-4dc3-b7b1-8b9fb5564e02', false, '925090589996688', '2021-12-06 01:51:05.567+00', '2018-01-18 00:00:00+00', '2020-11-09 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.567+00', 'irving', '{ "id": "d20d2f4e-6356-4dc3-b7b1-8b9fb5564e02", "active": false, "barcode": "925090589996688", "createdDate": "2021-12-06T01:51:05.567+00:00", "departments": [], "enrollmentDate": "2018-01-18T00:00:00.000+00:00", "expirationDate": "2020-11-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.564+00:00", "updatedDate": "2021-12-06T01:51:05.564+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "84256 Unit I", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Tuskegee", "countryId": "US", "postalCode": "45078-8730", "primaryAddress": true, "region": "KS" } ], "dateOfBirth": "1980-02-07T00:00:00.000+00:00", "email": "scarlett@roberts-weber-and-rice.fi", "firstName": "Juston", "lastName": "Hyatt", "middleName": "Green", "phone": "1-352-388-0288", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.567+00:00", "username": "irving" }'); INSERT INTO user_users VALUES ('d3409c88-7e3f-497a-b94c-69e85e23b45c', false, '78472785852447', '2021-12-06 01:51:07.951+00', '2017-09-21 00:00:00+00', '2020-08-03 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:07.951+00', 'jaleel', '{ "id": "d3409c88-7e3f-497a-b94c-69e85e23b45c", "active": false, "barcode": "78472785852447", "createdDate": "2021-12-06T01:51:07.951+00:00", "departments": [], "enrollmentDate": "2017-09-21T00:00:00.000+00:00", "expirationDate": "2020-08-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.948+00:00", "updatedDate": "2021-12-06T01:51:07.948+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "55482 Bernier Springs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Homer", "countryId": "US", "postalCode": "17408", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "2012-10-23T00:00:00.000+00:00", "email": "paris@schimmel-inc.vu", "firstName": "Kacey", "lastName": "Ruecker", "middleName": "Aiyana", "mobilePhone": "(783)669-7471", "phone": "1-231-053-1512", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.951+00:00", "username": "jaleel" }'); INSERT INTO user_users VALUES ('d4849a05-4066-4129-ae56-3dfc39498e36', false, '589667746643488', '2021-12-06 01:51:07.626+00', '2016-12-02 00:00:00+00', '2020-03-05 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.626+00', 'amelie', '{ "id": "d4849a05-4066-4129-ae56-3dfc39498e36", "active": false, "barcode": "589667746643488", "createdDate": "2021-12-06T01:51:07.626+00:00", "departments": [], "enrollmentDate": "2016-12-02T00:00:00.000+00:00", "expirationDate": "2020-03-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.623+00:00", "updatedDate": "2021-12-06T01:51:07.623+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "63228 Alan Terrace", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Nome", "countryId": "US", "postalCode": "89907", "primaryAddress": true, "region": "NY" } ], "dateOfBirth": "1958-09-18T00:00:00.000+00:00", "email": "myrtie@treutel-beier.kz", "firstName": "Mohammad", "lastName": "Koss", "middleName": "Fatima", "mobilePhone": "(503)015-6306", "phone": "475-499-9830 x20253", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.626+00:00", "username": "amelie" }'); INSERT INTO user_users VALUES ('d6c40971-39a6-4977-9d27-e83e731f51de', false, '717722273660250', '2021-12-06 01:51:05.971+00', '2017-06-18 00:00:00+00', '2020-09-14 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.971+00', 'rollin', '{ "id": "d6c40971-39a6-4977-9d27-e83e731f51de", "active": false, "barcode": "717722273660250", "createdDate": "2021-12-06T01:51:05.971+00:00", "departments": [], "enrollmentDate": "2017-06-18T00:00:00.000+00:00", "expirationDate": "2020-09-14T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.968+00:00", "updatedDate": "2021-12-06T01:51:05.968+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "65765 King Plains Suite 292", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "South Bend", "countryId": "US", "postalCode": "39061", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1951-10-15T00:00:00.000+00:00", "email": "trystan@trantow-fay.gn", "firstName": "Freeman", "lastName": "Sporer", "middleName": "Luigi", "mobilePhone": "942-958-7463 x1835", "phone": "(105)531-3599 x5896", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.971+00:00", "username": "rollin" }'); INSERT INTO user_users VALUES ('d80b45eb-5dc0-4635-b539-dac722cc3a50', false, '245336184453709', '2021-12-06 01:51:05.895+00', '2017-09-29 00:00:00+00', '2021-01-08 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.895+00', 'maxime', '{ "id": "d80b45eb-5dc0-4635-b539-dac722cc3a50", "active": false, "barcode": "245336184453709", "createdDate": "2021-12-06T01:51:05.895+00:00", "departments": [], "enrollmentDate": "2017-09-29T00:00:00.000+00:00", "expirationDate": "2021-01-08T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.892+00:00", "updatedDate": "2021-12-06T01:51:05.892+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "21601 Suite J", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Newport Beach", "countryId": "US", "postalCode": "83730-6123", "primaryAddress": true, "region": "WA" } ], "dateOfBirth": "1985-04-20T00:00:00.000+00:00", "email": "roel@prosacco-cummings-and-wintheiser.cu", "firstName": "Cielo", "lastName": "Klocko", "middleName": "Chyna", "mobilePhone": "1-097-166-7870", "phone": "875-073-2082", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.895+00:00", "username": "maxime" }'); INSERT INTO user_users VALUES ('daa9cf25-f333-447b-b577-158d6ce944a5', false, '390509548381370', '2021-12-06 01:51:07.918+00', '2018-10-08 00:00:00+00', '2019-12-22 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.918+00', 'agnes', '{ "id": "daa9cf25-f333-447b-b577-158d6ce944a5", "active": false, "barcode": "390509548381370", "createdDate": "2021-12-06T01:51:07.918+00:00", "departments": [], "enrollmentDate": "2018-10-08T00:00:00.000+00:00", "expirationDate": "2019-12-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.915+00:00", "updatedDate": "2021-12-06T01:51:07.915+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "65622 Larson Island", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Juan Capistrano", "countryId": "US", "postalCode": "75567-7031", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1994-05-04T00:00:00.000+00:00", "email": "doyle@kshlerin-and-sons.bd", "firstName": "Rafaela", "lastName": "Monahan", "mobilePhone": "574.315.1782", "phone": "(255)481-4812 x339", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.918+00:00", "username": "agnes" }'); INSERT INTO user_users VALUES ('dc13dcc6-2bda-412c-b046-1398d1becb75', false, '332606947540224', '2021-12-06 01:51:06.815+00', '2017-10-14 00:00:00+00', '2020-06-17 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.815+00', 'connie', '{ "id": "dc13dcc6-2bda-412c-b046-1398d1becb75", "active": false, "barcode": "332606947540224", "createdDate": "2021-12-06T01:51:06.815+00:00", "departments": [], "enrollmentDate": "2017-10-14T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.812+00:00", "updatedDate": "2021-12-06T01:51:06.812+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "69348 Geoffrey Station #437", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Rosemead", "countryId": "US", "postalCode": "35670-5987", "primaryAddress": true, "region": "CA" } ], "dateOfBirth": "1947-05-07T00:00:00.000+00:00", "email": "monroe@rau-beatty.wi.us", "firstName": "Neva", "lastName": "Hartmann", "phone": "841-726-9429 x12566", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.815+00:00", "username": "connie" }'); INSERT INTO user_users VALUES ('dc3cd5a5-4235-48c3-b9d3-a958863f7498', false, '488892976621858', '2021-12-06 01:51:08.029+00', '2018-05-02 00:00:00+00', '2020-10-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.029+00', 'juana', '{ "id": "dc3cd5a5-4235-48c3-b9d3-a958863f7498", "active": false, "barcode": "488892976621858", "createdDate": "2021-12-06T01:51:08.029+00:00", "departments": [], "enrollmentDate": "2018-05-02T00:00:00.000+00:00", "expirationDate": "2020-10-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.026+00:00", "updatedDate": "2021-12-06T01:51:08.026+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "00782 Anderson Roads Apt. 644", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Mesa", "countryId": "US", "postalCode": "38447", "primaryAddress": true, "region": "SD" } ], "dateOfBirth": "2013-09-01T00:00:00.000+00:00", "email": "titus@wunsch-quigley.ba", "firstName": "Vince", "lastName": "VonRueden", "middleName": "Christian", "phone": "213.651.5587 x2056", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.029+00:00", "username": "juana" }'); INSERT INTO user_users VALUES ('dc5dab8d-f80a-476a-b920-3cf21eeee902', false, '518831601344295', '2021-12-06 01:51:07.974+00', '2015-03-15 00:00:00+00', '2020-07-15 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.974+00', 'theresia', '{ "id": "dc5dab8d-f80a-476a-b920-3cf21eeee902", "active": false, "barcode": "518831601344295", "createdDate": "2021-12-06T01:51:07.974+00:00", "departments": [], "enrollmentDate": "2015-03-15T00:00:00.000+00:00", "expirationDate": "2020-07-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.971+00:00", "updatedDate": "2021-12-06T01:51:07.971+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "95600 Basement", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "La Habra", "countryId": "US", "postalCode": "26234-8501", "primaryAddress": true, "region": "NY" } ], "dateOfBirth": "1964-06-16T00:00:00.000+00:00", "email": "mitchel@leuschke-klocko.dz", "firstName": "Luz", "lastName": "Schuster", "mobilePhone": "031.904.0434", "phone": "500.188.3735", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.974+00:00", "username": "theresia" }'); INSERT INTO user_users VALUES ('dc6e1590-7021-433d-98a3-eda0f8d8fde1', false, '181666707103044', '2021-12-06 01:51:06.975+00', '2017-02-11 00:00:00+00', '2020-12-11 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.975+00', 'dock', '{ "id": "dc6e1590-7021-433d-98a3-eda0f8d8fde1", "active": false, "barcode": "181666707103044", "createdDate": "2021-12-06T01:51:06.975+00:00", "departments": [], "enrollmentDate": "2017-02-11T00:00:00.000+00:00", "expirationDate": "2020-12-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.972+00:00", "updatedDate": "2021-12-06T01:51:06.972+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "88604 Richard Dale", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Sitka", "countryId": "US", "postalCode": "09951-8342", "primaryAddress": true, "region": "ID" } ], "dateOfBirth": "2005-08-04T00:00:00.000+00:00", "email": "geo@hodkiewicz-runolfsson-and-mueller.nm.us", "firstName": "Parker", "lastName": "Ratke", "mobilePhone": "999-776-5791 x8374", "phone": "118-350-2886 x77039", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.975+00:00", "username": "dock" }'); INSERT INTO user_users VALUES ('dd176277-5c2d-4310-bf2f-e45e312b5026', false, '405555412626725', '2021-12-06 01:51:06.069+00', '2017-08-03 00:00:00+00', '2020-06-23 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.069+00', 'herminia', '{ "id": "dd176277-5c2d-4310-bf2f-e45e312b5026", "active": false, "barcode": "405555412626725", "createdDate": "2021-12-06T01:51:06.069+00:00", "departments": [], "enrollmentDate": "2017-08-03T00:00:00.000+00:00", "expirationDate": "2020-06-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.066+00:00", "updatedDate": "2021-12-06T01:51:06.066+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "28117 Hand Valleys", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lakewood", "countryId": "US", "postalCode": "49342", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "2003-07-27T00:00:00.000+00:00", "email": "friedrich@klocko-howe.af", "firstName": "Caleigh", "lastName": "Reinger", "middleName": "Maximillia", "mobilePhone": "1-471-781-0194", "phone": "460-372-5620", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.069+00:00", "username": "herminia" }'); INSERT INTO user_users VALUES ('df84acd4-4425-47e9-9a25-db8eb2973950', false, '794586144277893', '2021-12-06 01:51:06.422+00', '2016-03-18 00:00:00+00', '2020-08-05 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.422+00', 'elmira', '{ "id": "df84acd4-4425-47e9-9a25-db8eb2973950", "active": false, "barcode": "794586144277893", "createdDate": "2021-12-06T01:51:06.422+00:00", "departments": [], "enrollmentDate": "2016-03-18T00:00:00.000+00:00", "expirationDate": "2020-08-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.418+00:00", "updatedDate": "2021-12-06T01:51:06.418+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "30313 Herzog Centers Apt. 568", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Orange", "countryId": "US", "postalCode": "55469-8400", "primaryAddress": true, "region": "PR" } ], "dateOfBirth": "2002-11-14T00:00:00.000+00:00", "email": "syble@cormier-group.id", "firstName": "Triston", "lastName": "Nicolas", "phone": "(202)784-5280 x0354", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.422+00:00", "username": "elmira" }'); INSERT INTO user_users VALUES ('e0b7cb11-7d1f-48d8-b8a5-bc138550313d', false, '131104607484122', '2021-12-06 01:51:05.39+00', '2016-01-18 00:00:00+00', '2019-10-10 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.39+00', 'cortney', '{ "id": "e0b7cb11-7d1f-48d8-b8a5-bc138550313d", "active": false, "barcode": "131104607484122", "createdDate": "2021-12-06T01:51:05.390+00:00", "departments": [], "enrollmentDate": "2016-01-18T00:00:00.000+00:00", "expirationDate": "2019-10-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.386+00:00", "updatedDate": "2021-12-06T01:51:05.386+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "28183 Zion Grove #028", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Newport Beach", "countryId": "US", "postalCode": "62741-4894", "primaryAddress": true, "region": "OK" } ], "dateOfBirth": "1971-06-24T00:00:00.000+00:00", "email": "claudie@bruen-zboncak.al", "firstName": "Esteban", "lastName": "Yundt", "middleName": "Loma", "mobilePhone": "004-863-5965", "phone": "468-350-2158 x590", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.390+00:00", "username": "cortney" }'); INSERT INTO user_users VALUES ('e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e', false, '323519789821983', '2021-12-06 01:51:06.211+00', '2016-10-05 00:00:00+00', '2021-01-12 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.211+00', 'maximillian', '{ "id": "e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e", "active": false, "barcode": "323519789821983", "createdDate": "2021-12-06T01:51:06.211+00:00", "departments": [], "enrollmentDate": "2016-10-05T00:00:00.000+00:00", "expirationDate": "2021-01-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.207+00:00", "updatedDate": "2021-12-06T01:51:06.207+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "49631 Towne Burg", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Canton", "countryId": "US", "postalCode": "14872-4524", "primaryAddress": true, "region": "SC" } ], "dateOfBirth": "1981-07-19T00:00:00.000+00:00", "email": "paolo@kuphal-mayer.sa", "firstName": "Tom", "lastName": "Denesik", "middleName": "Marlin", "mobilePhone": "1-241-003-0625", "phone": "796.290.1933 x001", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.211+00:00", "username": "maximillian" }'); INSERT INTO user_users VALUES ('e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a', false, '26132887126792', '2021-12-06 01:51:08.417+00', '2015-04-19 00:00:00+00', '2020-08-05 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.417+00', 'adele', '{ "id": "e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a", "active": false, "barcode": "26132887126792", "createdDate": "2021-12-06T01:51:08.417+00:00", "departments": [], "enrollmentDate": "2015-04-19T00:00:00.000+00:00", "expirationDate": "2020-08-05T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.414+00:00", "updatedDate": "2021-12-06T01:51:08.414+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "45782 Stop S", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Monterey Park", "countryId": "US", "postalCode": "42517-3120", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "1996-11-25T00:00:00.000+00:00", "email": "virginie@haag-rippin.nu", "firstName": "Edmond", "lastName": "Sanford", "middleName": "Sheldon", "mobilePhone": "023.988.9608", "phone": "921-095-6643", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.417+00:00", "username": "adele" }'); INSERT INTO user_users VALUES ('e1acbc79-7352-5db0-8f38-7b1b029e5ef6', true, NULL, '2021-12-06 01:57:08.237+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', NULL, '2021-12-06 01:57:08.237+00', 'diku_admin', '{ "id": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "active": true, "createdDate": "2021-12-06T01:57:08.237+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:53:46.443+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T01:57:08.233+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "email": "admin@diku.example.org", "firstName": "DIKU", "lastName": "ADMINISTRATOR" }, "proxyFor": [], "updatedDate": "2021-12-06T01:57:08.237+00:00", "username": "diku_admin" }'); INSERT INTO user_users VALUES ('e1bcf784-484c-42ca-b502-cf2f2e57eca3', false, '697453301644884', '2021-12-06 01:51:07.638+00', '2016-12-01 00:00:00+00', '2019-04-29 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.638+00', 'enid', '{ "id": "e1bcf784-484c-42ca-b502-cf2f2e57eca3", "active": false, "barcode": "697453301644884", "createdDate": "2021-12-06T01:51:07.638+00:00", "departments": [], "enrollmentDate": "2016-12-01T00:00:00.000+00:00", "expirationDate": "2019-04-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.635+00:00", "updatedDate": "2021-12-06T01:51:07.635+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "18812 McGlynn Mews", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Kent", "countryId": "US", "postalCode": "00503", "primaryAddress": true, "region": "DE" } ], "dateOfBirth": "1975-08-16T00:00:00.000+00:00", "email": "sheldon@carroll-white-and-cole.gs", "firstName": "Golda", "lastName": "Waters", "middleName": "Jonathon", "mobilePhone": "(018)215-2615 x4522", "phone": "511.344.0651", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.638+00:00", "username": "enid" }'); INSERT INTO user_users VALUES ('e1e435da-97e2-4083-8657-832aeb549929', false, '44219243602281', '2021-12-06 01:51:06.41+00', '2016-05-05 00:00:00+00', '2021-01-20 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.41+00', 'ophelia', '{ "id": "e1e435da-97e2-4083-8657-832aeb549929", "active": false, "barcode": "44219243602281", "createdDate": "2021-12-06T01:51:06.410+00:00", "departments": [], "enrollmentDate": "2016-05-05T00:00:00.000+00:00", "expirationDate": "2021-01-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.406+00:00", "updatedDate": "2021-12-06T01:51:06.406+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "52485 Thiel Circle", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Fernando", "countryId": "US", "postalCode": "47530", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "1981-12-13T00:00:00.000+00:00", "email": "lafayette@koss-cremin-and-romaguera.st", "firstName": "Aglae", "lastName": "Koss", "middleName": "Abbey", "mobilePhone": "(785)272-0417 x5465", "phone": "913.966.6319 x332", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.410+00:00", "username": "ophelia" }'); INSERT INTO user_users VALUES ('e25750d8-9475-43d1-a6ff-ddb9bc941ea8', true, '1638756086568862741', '2021-12-06 02:01:26.573+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:26.573+00', 'circ-manager', '{ "id": "e25750d8-9475-43d1-a6ff-ddb9bc941ea8", "active": true, "barcode": "1638756086568862741", "createdDate": "2021-12-06T02:01:26.573+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:26.570+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:26.570+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "circ-manager", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:26.573+00:00", "username": "circ-manager" }'); INSERT INTO user_users VALUES ('e25fecaf-dfbf-4e59-bd3d-0493c1b519f5', false, '899885926908709', '2021-12-06 01:51:08.258+00', '2018-02-22 00:00:00+00', '2020-07-19 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.258+00', 'sam', '{ "id": "e25fecaf-dfbf-4e59-bd3d-0493c1b519f5", "active": false, "barcode": "899885926908709", "createdDate": "2021-12-06T01:51:08.258+00:00", "departments": [], "enrollmentDate": "2018-02-22T00:00:00.000+00:00", "expirationDate": "2020-07-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.255+00:00", "updatedDate": "2021-12-06T01:51:08.255+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "30421 Hirthe Cove Suite 577", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Vincennes", "countryId": "US", "postalCode": "62598", "primaryAddress": true, "region": "AL" } ], "dateOfBirth": "1952-10-31T00:00:00.000+00:00", "email": "emil@dibbert-bode.iq", "firstName": "Malika", "lastName": "Rutherford", "mobilePhone": "1-663-027-5212", "phone": "1-612-669-7014", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.258+00:00", "username": "sam" }'); INSERT INTO user_users VALUES ('e308411d-773e-416e-be58-f16176c0549e', false, '164574230428137', '2021-12-06 01:51:04.975+00', '2017-04-29 00:00:00+00', '2019-06-20 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:04.975+00', 'marquise', '{ "id": "e308411d-773e-416e-be58-f16176c0549e", "active": false, "barcode": "164574230428137", "createdDate": "2021-12-06T01:51:04.975+00:00", "departments": [], "enrollmentDate": "2017-04-29T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.970+00:00", "updatedDate": "2021-12-06T01:51:04.970+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "65611 Harris Underpass", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Little Rock", "countryId": "US", "postalCode": "65691-4705", "primaryAddress": true, "region": "MO" } ], "dateOfBirth": "1974-05-13T00:00:00.000+00:00", "email": "mathias@gleichner-kozey-and-reinger.mo", "firstName": "Sadie", "lastName": "Rowe", "middleName": "Sylvia", "phone": "919-542-3508 x8519", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.975+00:00", "username": "marquise" }'); INSERT INTO user_users VALUES ('e505acd3-925e-4e2c-a255-8d11e25ba046', false, '889982096201116', '2021-12-06 01:51:06.475+00', '2016-12-14 00:00:00+00', '2020-10-23 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.475+00', 'dessie', '{ "id": "e505acd3-925e-4e2c-a255-8d11e25ba046", "active": false, "barcode": "889982096201116", "createdDate": "2021-12-06T01:51:06.475+00:00", "departments": [], "enrollmentDate": "2016-12-14T00:00:00.000+00:00", "expirationDate": "2020-10-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.472+00:00", "updatedDate": "2021-12-06T01:51:06.472+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "24421 Schumm Tunnel", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Nenana", "countryId": "US", "postalCode": "45376", "primaryAddress": true, "region": "PA" } ], "dateOfBirth": "1952-12-05T00:00:00.000+00:00", "email": "holden@mitchell-group.om", "firstName": "Eddie", "lastName": "Koss", "middleName": "Rusty", "phone": "1-035-717-5715 x1958", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.475+00:00", "username": "dessie" }'); INSERT INTO user_users VALUES ('e546d50a-926a-421f-8400-a041a2e9db79', false, '40187925817754', '2021-12-06 01:51:08.184+00', '2018-09-22 00:00:00+00', '2020-11-12 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.184+00', 'ben', '{ "id": "e546d50a-926a-421f-8400-a041a2e9db79", "active": false, "barcode": "40187925817754", "createdDate": "2021-12-06T01:51:08.184+00:00", "departments": [], "enrollmentDate": "2018-09-22T00:00:00.000+00:00", "expirationDate": "2020-11-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.181+00:00", "updatedDate": "2021-12-06T01:51:08.181+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "86537 Penthouse", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Indio", "countryId": "US", "postalCode": "83373-0011", "primaryAddress": true, "region": "DC" } ], "dateOfBirth": "1989-08-21T00:00:00.000+00:00", "email": "faye@hansen-wintheiser.md", "firstName": "Name", "lastName": "Will", "middleName": "Jettie", "mobilePhone": "1-090-543-7327 x2335", "phone": "1-255-789-1285 x30034", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.184+00:00", "username": "ben" }'); INSERT INTO user_users VALUES ('e59bc21a-884e-42a2-8792-163efc3662e7', false, '144826156017341', '2021-12-06 01:51:06.057+00', '2016-08-13 00:00:00+00', '2020-03-18 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.057+00', 'theodora', '{ "id": "e59bc21a-884e-42a2-8792-163efc3662e7", "active": false, "barcode": "144826156017341", "createdDate": "2021-12-06T01:51:06.057+00:00", "departments": [], "enrollmentDate": "2016-08-13T00:00:00.000+00:00", "expirationDate": "2020-03-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.054+00:00", "updatedDate": "2021-12-06T01:51:06.054+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "76540 Jaden Meadows #999", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Toledo", "countryId": "US", "postalCode": "49708", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1945-12-20T00:00:00.000+00:00", "email": "rollin@jacobson-emmerich-and-schaefer.kg", "firstName": "Francisca", "lastName": "Dickinson", "middleName": "Dock", "mobilePhone": "373-226-0411", "phone": "(071)378-8133 x66872", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.057+00:00", "username": "theodora" }'); INSERT INTO user_users VALUES ('e5e950e0-3f56-4ff1-8e86-671cdbc37688', false, '865397063334345', '2021-12-06 01:51:08.163+00', '2019-01-29 00:00:00+00', '2020-08-28 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.163+00', 'julio', '{ "id": "e5e950e0-3f56-4ff1-8e86-671cdbc37688", "active": false, "barcode": "865397063334345", "createdDate": "2021-12-06T01:51:08.163+00:00", "departments": [], "enrollmentDate": "2019-01-29T00:00:00.000+00:00", "expirationDate": "2020-08-28T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.160+00:00", "updatedDate": "2021-12-06T01:51:08.160+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "53739 Haley Village", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lexington", "countryId": "US", "postalCode": "93562-3911", "primaryAddress": true, "region": "TN" } ], "dateOfBirth": "1986-02-07T00:00:00.000+00:00", "email": "destinee@abernathy-jacobs.ps", "firstName": "Laurianne", "lastName": "Denesik", "mobilePhone": "945-131-2689 x4666", "phone": "533-887-8695", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.163+00:00", "username": "julio" }'); INSERT INTO user_users VALUES ('e63273e7-48f5-4c43-ab4e-1751ecacaa21', false, '721408137069396', '2021-12-06 01:51:04.568+00', '2018-08-11 00:00:00+00', '2020-06-29 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:04.568+00', 'jaylon', '{ "id": "e63273e7-48f5-4c43-ab4e-1751ecacaa21", "active": false, "barcode": "721408137069396", "createdDate": "2021-12-06T01:51:04.568+00:00", "departments": [], "enrollmentDate": "2018-08-11T00:00:00.000+00:00", "expirationDate": "2020-06-29T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.563+00:00", "updatedDate": "2021-12-06T01:51:04.563+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "00120 Suite G", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Eureka", "countryId": "US", "postalCode": "58267-5504", "primaryAddress": true, "region": "OR" } ], "dateOfBirth": "2004-03-19T00:00:00.000+00:00", "email": "lilla@wiza-llc.ie", "firstName": "Perry", "lastName": "Jast", "middleName": "Drake", "mobilePhone": "545.437.3834", "phone": "1-893-787-1494 x537", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.568+00:00", "username": "jaylon" }'); INSERT INTO user_users VALUES ('e6dfcfef-e724-4485-870d-d2c4d1dcfdd9', false, '379402199971554', '2021-12-06 01:51:08.364+00', '2018-06-22 00:00:00+00', '2019-11-13 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:08.364+00', 'jed', '{ "id": "e6dfcfef-e724-4485-870d-d2c4d1dcfdd9", "active": false, "barcode": "379402199971554", "createdDate": "2021-12-06T01:51:08.364+00:00", "departments": [], "enrollmentDate": "2018-06-22T00:00:00.000+00:00", "expirationDate": "2019-11-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.362+00:00", "updatedDate": "2021-12-06T01:51:08.362+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "21531 Floor 3548", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Delta Junction", "countryId": "US", "postalCode": "46912", "primaryAddress": true, "region": "KY" } ], "dateOfBirth": "1979-10-04T00:00:00.000+00:00", "email": "lacey@hansen-klocko.ni", "firstName": "Adrienne", "lastName": "Kub", "middleName": "Madisen", "mobilePhone": "686.430.5419", "phone": "(558)273-3002", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.364+00:00", "username": "jed" }'); INSERT INTO user_users VALUES ('e76cf4c9-e15a-414e-81b9-672a90fb2745', false, '979109654603071', '2021-12-06 01:51:06.944+00', '2019-02-07 00:00:00+00', '2019-11-22 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.944+00', 'bill', '{ "id": "e76cf4c9-e15a-414e-81b9-672a90fb2745", "active": false, "barcode": "979109654603071", "createdDate": "2021-12-06T01:51:06.944+00:00", "departments": [], "enrollmentDate": "2019-02-07T00:00:00.000+00:00", "expirationDate": "2019-11-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.941+00:00", "updatedDate": "2021-12-06T01:51:06.941+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "29651 Josie Hollow", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Calabasas", "countryId": "US", "postalCode": "26421", "primaryAddress": true, "region": "NM" } ], "dateOfBirth": "2001-10-15T00:00:00.000+00:00", "email": "brandt@friesen-llc.ct.us", "firstName": "Margret", "lastName": "Koss", "middleName": "Adelia", "mobilePhone": "(214)950-5138", "phone": "093.611.7311 x8588", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.944+00:00", "username": "bill" }'); INSERT INTO user_users VALUES ('e923bd61-bf27-42a9-8293-ed7738c24bca', false, '846895020101659', '2021-12-06 01:51:07.127+00', '2016-08-08 00:00:00+00', '2020-09-23 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.127+00', 'travis', '{ "id": "e923bd61-bf27-42a9-8293-ed7738c24bca", "active": false, "barcode": "846895020101659", "createdDate": "2021-12-06T01:51:07.127+00:00", "departments": [], "enrollmentDate": "2016-08-08T00:00:00.000+00:00", "expirationDate": "2020-09-23T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.123+00:00", "updatedDate": "2021-12-06T01:51:07.123+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "41390 Floor 5", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Diego", "countryId": "US", "postalCode": "14875-1870", "primaryAddress": true, "region": "VI" } ], "dateOfBirth": "1991-04-04T00:00:00.000+00:00", "email": "micah@cassin-cormier.ag", "firstName": "Natalia", "lastName": "Schroeder", "middleName": "Juston", "phone": "422-093-8502", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.127+00:00", "username": "travis" }'); INSERT INTO user_users VALUES ('ea2ef01f-d732-4119-90ab-ee6df447548f', false, '402540302712985', '2021-12-06 01:51:07.561+00', '2016-09-08 00:00:00+00', '2019-12-11 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.561+00', 'darren', '{ "id": "ea2ef01f-d732-4119-90ab-ee6df447548f", "active": false, "barcode": "402540302712985", "createdDate": "2021-12-06T01:51:07.561+00:00", "departments": [], "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2019-12-11T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.558+00:00", "updatedDate": "2021-12-06T01:51:07.558+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "81925 Ortiz Isle Apt. 171", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Gabriel", "countryId": "US", "postalCode": "60982-0464", "primaryAddress": true, "region": "TX" } ], "dateOfBirth": "1951-02-02T00:00:00.000+00:00", "email": "mafalda@bins-group.ua", "firstName": "Raquel", "lastName": "Renner", "middleName": "Agustina", "phone": "337-905-1068", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.561+00:00", "username": "darren" }'); INSERT INTO user_users VALUES ('ea3a1605-a930-4183-b04e-0b2fca3ae094', false, '683657854071142', '2021-12-06 01:51:06.569+00', '2017-03-04 00:00:00+00', '2020-02-22 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.569+00', 'adolphus', '{ "id": "ea3a1605-a930-4183-b04e-0b2fca3ae094", "active": false, "barcode": "683657854071142", "createdDate": "2021-12-06T01:51:06.569+00:00", "departments": [], "enrollmentDate": "2017-03-04T00:00:00.000+00:00", "expirationDate": "2020-02-22T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.566+00:00", "updatedDate": "2021-12-06T01:51:06.566+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "73865 Building W", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Barrow", "countryId": "US", "postalCode": "58178-3918", "primaryAddress": true, "region": "ND" } ], "dateOfBirth": "1977-01-12T00:00:00.000+00:00", "email": "trinity@tremblay-dare-and-conroy.va.us", "firstName": "Ashley", "lastName": "Stanton", "phone": "272.300.8720 x0852", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.569+00:00", "username": "adolphus" }'); INSERT INTO user_users VALUES ('eaed771f-1472-4f5a-a31f-bbb5922ba5fe', false, '771789476011363', '2021-12-06 01:51:08.104+00', '2016-02-01 00:00:00+00', '2019-04-21 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.104+00', 'vidal', '{ "id": "eaed771f-1472-4f5a-a31f-bbb5922ba5fe", "active": false, "barcode": "771789476011363", "createdDate": "2021-12-06T01:51:08.104+00:00", "departments": [], "enrollmentDate": "2016-02-01T00:00:00.000+00:00", "expirationDate": "2019-04-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.102+00:00", "updatedDate": "2021-12-06T01:51:08.102+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "20300 Hackett Forks", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Eufaula", "countryId": "US", "postalCode": "39763", "primaryAddress": true, "region": "IL" } ], "dateOfBirth": "1991-09-27T00:00:00.000+00:00", "email": "dovie@fisher-llc.tf", "firstName": "Augustine", "lastName": "Wiza", "middleName": "Jacynthe", "mobilePhone": "283-529-4332 x09754", "phone": "1-980-920-3425 x26720", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.104+00:00", "username": "vidal" }'); INSERT INTO user_users VALUES ('eaeffd06-57d3-488c-bd1b-c39d5c62e97d', false, '144807605573799', '2021-12-06 01:51:05.303+00', '2015-03-23 00:00:00+00', '2020-06-03 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.303+00', 'brant', '{ "id": "eaeffd06-57d3-488c-bd1b-c39d5c62e97d", "active": false, "barcode": "144807605573799", "createdDate": "2021-12-06T01:51:05.303+00:00", "departments": [], "enrollmentDate": "2015-03-23T00:00:00.000+00:00", "expirationDate": "2020-06-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.299+00:00", "updatedDate": "2021-12-06T01:51:05.299+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "35418 Wyman Bypass Suite 869", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Texarkana", "countryId": "US", "postalCode": "47584-7824", "primaryAddress": true, "region": "RI" } ], "dateOfBirth": "1974-05-14T00:00:00.000+00:00", "email": "michele@deckow-king.ms", "firstName": "Jabari", "lastName": "Marvin", "middleName": "Tressie", "mobilePhone": "(715)134-0584 x399", "phone": "703-029-4731", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.303+00:00", "username": "brant" }'); INSERT INTO user_users VALUES ('eb7696da-a2c3-4166-8aba-757c42556d1e', false, '526093411956626', '2021-12-06 01:51:06.723+00', '2015-10-15 00:00:00+00', '2020-01-12 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:06.723+00', 'piper', '{ "id": "eb7696da-a2c3-4166-8aba-757c42556d1e", "active": false, "barcode": "526093411956626", "createdDate": "2021-12-06T01:51:06.723+00:00", "departments": [], "enrollmentDate": "2015-10-15T00:00:00.000+00:00", "expirationDate": "2020-01-12T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.719+00:00", "updatedDate": "2021-12-06T01:51:06.719+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "37769 Penthouse", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Clemente", "countryId": "US", "postalCode": "19365", "primaryAddress": true, "region": "SD" } ], "dateOfBirth": "2007-12-01T00:00:00.000+00:00", "email": "vella@hilll-gibson.il", "firstName": "Josie", "lastName": "Dicki", "middleName": "Keagan", "mobilePhone": "408-562-5448 x1964", "phone": "968.266.5840 x35577", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.723+00:00", "username": "piper" }'); INSERT INTO user_users VALUES ('eb81f274-3676-45a9-8e8d-8a151af2506b', false, '832254191547811', '2021-12-06 01:51:05.811+00', '2017-08-09 00:00:00+00', '2019-12-06 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.811+00', 'alexandre', '{ "id": "eb81f274-3676-45a9-8e8d-8a151af2506b", "active": false, "barcode": "832254191547811", "createdDate": "2021-12-06T01:51:05.811+00:00", "departments": [], "enrollmentDate": "2017-08-09T00:00:00.000+00:00", "expirationDate": "2019-12-06T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.807+00:00", "updatedDate": "2021-12-06T01:51:05.807+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "19478 Lower", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Cañada Flintridge", "countryId": "US", "postalCode": "58065-8332", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1950-03-13T00:00:00.000+00:00", "email": "harry@anderson-and-sons.nm.us", "firstName": "Elena", "lastName": "Koss", "mobilePhone": "730.671.8900 x54982", "phone": "322.197.9084 x03471", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.811+00:00", "username": "alexandre" }'); INSERT INTO user_users VALUES ('eb834c59-b024-4cd2-bb6c-990df9434f36', true, '1638756087040469871', '2021-12-06 02:01:27.045+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:27.045+00', 'circ-staff', '{ "id": "eb834c59-b024-4cd2-bb6c-990df9434f36", "active": true, "barcode": "1638756087040469871", "createdDate": "2021-12-06T02:01:27.045+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.042+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.042+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "circ-staff", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:27.045+00:00", "username": "circ-staff" }'); INSERT INTO user_users VALUES ('ec97250b-1ded-46a7-a8f6-a474f8fe622d', false, '1211791319224', '2021-12-06 01:51:06.13+00', '2016-06-21 00:00:00+00', '2019-09-27 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.13+00', 'kolby', '{ "id": "ec97250b-1ded-46a7-a8f6-a474f8fe622d", "active": false, "barcode": "1211791319224", "createdDate": "2021-12-06T01:51:06.130+00:00", "departments": [], "enrollmentDate": "2016-06-21T00:00:00.000+00:00", "expirationDate": "2019-09-27T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.127+00:00", "updatedDate": "2021-12-06T01:51:06.127+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "75437 Richard Ways", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Chino", "countryId": "US", "postalCode": "20605-2722", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "2006-04-03T00:00:00.000+00:00", "email": "jabari@beier-collier-and-adams.wa.us", "firstName": "Dewayne", "lastName": "Sporer", "middleName": "Waino", "mobilePhone": "154-575-8361 x118", "phone": "(773)007-7770 x6445", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.130+00:00", "username": "kolby" }'); INSERT INTO user_users VALUES ('ef39251f-db4c-4253-9951-645735f84904', false, '197245848205728', '2021-12-06 01:51:06.435+00', '2017-01-22 00:00:00+00', '2020-02-17 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.435+00', 'boyd', '{ "id": "ef39251f-db4c-4253-9951-645735f84904", "active": false, "barcode": "197245848205728", "createdDate": "2021-12-06T01:51:06.435+00:00", "departments": [], "enrollmentDate": "2017-01-22T00:00:00.000+00:00", "expirationDate": "2020-02-17T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.431+00:00", "updatedDate": "2021-12-06T01:51:06.431+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "91744 Durward Fall Apt. 907", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "San Diego", "countryId": "US", "postalCode": "94029", "primaryAddress": true, "region": "IN" } ], "dateOfBirth": "2006-01-13T00:00:00.000+00:00", "email": "ceasar@schroeder-hauck-and-barrows.es", "firstName": "Agustina", "lastName": "Funk", "middleName": "Ricky", "mobilePhone": "(746)171-3004 x0116", "phone": "947-332-7963 x647", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.435+00:00", "username": "boyd" }'); INSERT INTO user_users VALUES ('f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1', false, '963182390538364', '2021-12-06 01:51:06.851+00', '2015-04-26 00:00:00+00', '2019-05-31 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:06.851+00', 'lupe', '{ "id": "f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1", "active": false, "barcode": "963182390538364", "createdDate": "2021-12-06T01:51:06.851+00:00", "departments": [], "enrollmentDate": "2015-04-26T00:00:00.000+00:00", "expirationDate": "2019-05-31T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.848+00:00", "updatedDate": "2021-12-06T01:51:06.848+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "32461 Dena Courts", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Artesia", "countryId": "US", "postalCode": "22659-9172", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "1958-08-22T00:00:00.000+00:00", "email": "jarred@lowe-and-sons.my", "firstName": "Nikki", "lastName": "Lind", "middleName": "Carter", "mobilePhone": "1-833-574-5277 x613", "phone": "740.834.7513 x1522", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.851+00:00", "username": "lupe" }'); INSERT INTO user_users VALUES ('f0dc6802-450f-459a-9dc6-209086375b7f', false, '597630410875716', '2021-12-06 01:51:08.279+00', '2018-10-06 00:00:00+00', '2020-12-18 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:08.279+00', 'alejandra', '{ "id": "f0dc6802-450f-459a-9dc6-209086375b7f", "active": false, "barcode": "597630410875716", "createdDate": "2021-12-06T01:51:08.279+00:00", "departments": [], "enrollmentDate": "2018-10-06T00:00:00.000+00:00", "expirationDate": "2020-12-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.277+00:00", "updatedDate": "2021-12-06T01:51:08.277+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "29848 Doyle Views Apt. 133", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Fe Springs", "countryId": "US", "postalCode": "55403-6597", "primaryAddress": true, "region": "MH" } ], "dateOfBirth": "1955-03-04T00:00:00.000+00:00", "email": "ferne@gerlach-leannon-and-kshlerin.pa", "firstName": "Marques", "lastName": "Kub", "middleName": "Sofia", "phone": "612-002-5040", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.279+00:00", "username": "alejandra" }'); INSERT INTO user_users VALUES ('f1c2d681-faba-4950-918f-bf58d914ba1f', false, '96069289569047', '2021-12-06 01:51:06.169+00', '2015-10-08 00:00:00+00', '2020-12-18 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:06.169+00', 'maiya', '{ "id": "f1c2d681-faba-4950-918f-bf58d914ba1f", "active": false, "barcode": "96069289569047", "createdDate": "2021-12-06T01:51:06.169+00:00", "departments": [], "enrollmentDate": "2015-10-08T00:00:00.000+00:00", "expirationDate": "2020-12-18T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.165+00:00", "updatedDate": "2021-12-06T01:51:06.165+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "59102 Unit 84-B", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Los Angeles", "countryId": "US", "postalCode": "65816-8769", "primaryAddress": true, "region": "WV" } ], "dateOfBirth": "1979-01-20T00:00:00.000+00:00", "email": "estell@larkin-lueilwitz.dz", "firstName": "Mittie", "lastName": "Parisian", "middleName": "Keanu", "mobilePhone": "685.462.7647 x23440", "phone": "664-759-1427", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.169+00:00", "username": "maiya" }'); INSERT INTO user_users VALUES ('f1dc9a7e-492b-4f2b-848a-115b5919d589', false, '131896890107931', '2021-12-06 01:51:05.554+00', '2019-02-08 00:00:00+00', '2019-03-30 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:05.554+00', 'danial', '{ "id": "f1dc9a7e-492b-4f2b-848a-115b5919d589", "active": false, "barcode": "131896890107931", "createdDate": "2021-12-06T01:51:05.554+00:00", "departments": [], "enrollmentDate": "2019-02-08T00:00:00.000+00:00", "expirationDate": "2019-03-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.550+00:00", "updatedDate": "2021-12-06T01:51:05.550+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "59508 Lindsey Mission", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Hoover", "countryId": "US", "postalCode": "07349", "primaryAddress": true, "region": "UT" } ], "dateOfBirth": "1981-02-07T00:00:00.000+00:00", "email": "clemmie@hettinger-larson-and-abshire.pt", "firstName": "Raoul", "lastName": "Heller", "middleName": "Loy", "mobilePhone": "218.514.8233 x080", "phone": "(420)513-3214", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.554+00:00", "username": "danial" }'); INSERT INTO user_users VALUES ('f303e908-30dc-4139-9542-4a4e206c4b96', false, '755491898290173', '2021-12-06 01:51:05.54+00', '2017-05-13 00:00:00+00', '2020-02-03 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:05.54+00', 'zackery', '{ "id": "f303e908-30dc-4139-9542-4a4e206c4b96", "active": false, "barcode": "755491898290173", "createdDate": "2021-12-06T01:51:05.540+00:00", "departments": [], "enrollmentDate": "2017-05-13T00:00:00.000+00:00", "expirationDate": "2020-02-03T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.536+00:00", "updatedDate": "2021-12-06T01:51:05.536+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "71859 Mariela Radial", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Santa Rosa", "countryId": "US", "postalCode": "59268-9757", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "1976-01-13T00:00:00.000+00:00", "email": "noel@rath-oconner-and-hackett.om", "firstName": "Amira", "lastName": "Johnson", "mobilePhone": "1-315-820-3371 x235", "phone": "374-165-3103", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.540+00:00", "username": "zackery" }'); INSERT INTO user_users VALUES ('f3055954-ebc3-4da8-8a60-0b8f52480125', false, '784844955152063', '2021-12-06 01:51:07.077+00', '2015-08-05 00:00:00+00', '2019-06-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.077+00', 'rita', '{ "id": "f3055954-ebc3-4da8-8a60-0b8f52480125", "active": false, "barcode": "784844955152063", "createdDate": "2021-12-06T01:51:07.077+00:00", "departments": [], "enrollmentDate": "2015-08-05T00:00:00.000+00:00", "expirationDate": "2019-06-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.074+00:00", "updatedDate": "2021-12-06T01:51:07.074+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "68728 Floor 8162", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "La Jolla", "countryId": "US", "postalCode": "04836", "primaryAddress": true, "region": "AL" } ], "dateOfBirth": "1994-03-10T00:00:00.000+00:00", "email": "lonnie@runte-reichel.es", "firstName": "Donna", "lastName": "Hickle", "phone": "1-096-919-7527 x84197", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.077+00:00", "username": "rita" }'); INSERT INTO user_users VALUES ('f308aadb-9403-44de-9b5a-06792b78bb3a', false, '33336807737811', '2021-12-06 01:51:06.512+00', '2019-03-01 00:00:00+00', '2020-04-20 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.512+00', 'quentin', '{ "id": "f308aadb-9403-44de-9b5a-06792b78bb3a", "active": false, "barcode": "33336807737811", "createdDate": "2021-12-06T01:51:06.512+00:00", "departments": [], "enrollmentDate": "2019-03-01T00:00:00.000+00:00", "expirationDate": "2020-04-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.509+00:00", "updatedDate": "2021-12-06T01:51:06.509+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "37638 Bradtke Freeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Dayton", "countryId": "US", "postalCode": "14715", "primaryAddress": true, "region": "FM" } ], "dateOfBirth": "1996-02-12T00:00:00.000+00:00", "email": "haleigh@heathcote-hills-and-cremin.hr", "firstName": "Madyson", "lastName": "Block", "mobilePhone": "730.787.8907 x58057", "phone": "(994)514-4149 x44836", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.512+00:00", "username": "quentin" }'); INSERT INTO user_users VALUES ('f45d047f-248d-424a-9571-8b1249279c02', false, '349385534992855', '2021-12-06 01:51:07.248+00', '2015-11-11 00:00:00+00', '2021-01-02 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.248+00', 'mollie', '{ "id": "f45d047f-248d-424a-9571-8b1249279c02", "active": false, "barcode": "349385534992855", "createdDate": "2021-12-06T01:51:07.248+00:00", "departments": [], "enrollmentDate": "2015-11-11T00:00:00.000+00:00", "expirationDate": "2021-01-02T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.245+00:00", "updatedDate": "2021-12-06T01:51:07.245+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "51190 Rempel Islands Apt. 599", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Valparaiso", "countryId": "US", "postalCode": "42914-2711", "primaryAddress": true, "region": "NC" } ], "dateOfBirth": "2009-09-18T00:00:00.000+00:00", "email": "hiram@hettinger-kirlin.mil", "firstName": "Destiney", "lastName": "Lockman", "phone": "445-071-4422 x37216", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.248+00:00", "username": "mollie" }'); INSERT INTO user_users VALUES ('f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43', false, '915065121508469', '2021-12-06 01:51:08.073+00', '2016-08-30 00:00:00+00', '2020-01-13 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:08.073+00', 'declan', '{ "id": "f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43", "active": false, "barcode": "915065121508469", "createdDate": "2021-12-06T01:51:08.073+00:00", "departments": [], "enrollmentDate": "2016-08-30T00:00:00.000+00:00", "expirationDate": "2020-01-13T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.070+00:00", "updatedDate": "2021-12-06T01:51:08.070+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "17617 O''Reilly Drives #536", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Frankfort", "countryId": "US", "postalCode": "89268", "primaryAddress": true, "region": "MO" } ], "dateOfBirth": "1954-08-04T00:00:00.000+00:00", "email": "aimee@sanford-schneider-and-kessler.ar", "firstName": "Gilbert", "lastName": "Fadel", "middleName": "Jadyn", "phone": "086.011.5005 x35496", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.073+00:00", "username": "declan" }'); INSERT INTO user_users VALUES ('f57c13f1-6114-41b2-aa6f-33045068d6be', false, '384535810243711', '2021-12-06 01:51:07.65+00', '2015-06-09 00:00:00+00', '2019-12-04 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.65+00', 'dalton', '{ "id": "f57c13f1-6114-41b2-aa6f-33045068d6be", "active": false, "barcode": "384535810243711", "createdDate": "2021-12-06T01:51:07.650+00:00", "departments": [], "enrollmentDate": "2015-06-09T00:00:00.000+00:00", "expirationDate": "2019-12-04T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.647+00:00", "updatedDate": "2021-12-06T01:51:07.647+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "75369 Beulah Via Apt. 975", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Westlake Village", "countryId": "US", "postalCode": "75050-0529", "primaryAddress": true, "region": "ME" } ], "dateOfBirth": "1995-07-22T00:00:00.000+00:00", "email": "jedediah@torp-wiegand-and-schuppe.ga.us", "firstName": "Theresa", "lastName": "Jaskolski", "mobilePhone": "1-447-181-6690 x90817", "phone": "1-562-888-1713 x03714", "preferredContactTypeId": "003" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.650+00:00", "username": "dalton" }'); INSERT INTO user_users VALUES ('f5d7aed2-1647-4e83-b85e-74760f770799', false, '78306618161899', '2021-12-06 01:51:05.487+00', '2019-02-16 00:00:00+00', '2019-04-15 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.487+00', 'clifford', '{ "id": "f5d7aed2-1647-4e83-b85e-74760f770799", "active": false, "barcode": "78306618161899", "createdDate": "2021-12-06T01:51:05.487+00:00", "departments": [], "enrollmentDate": "2019-02-16T00:00:00.000+00:00", "expirationDate": "2019-04-15T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.483+00:00", "updatedDate": "2021-12-06T01:51:05.483+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "26178 Oberbrunner Drive", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Merced", "countryId": "US", "postalCode": "00187-3930", "primaryAddress": true, "region": "MD" } ], "dateOfBirth": "1948-03-26T00:00:00.000+00:00", "email": "litzy@sawayn-turcotte.dz", "firstName": "Coby", "lastName": "Homenick", "middleName": "Wanda", "mobilePhone": "(056)300-3670 x808", "phone": "815-667-5143", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.487+00:00", "username": "clifford" }'); INSERT INTO user_users VALUES ('f62dc160-eacc-4922-a0cb-e1ed68a44601', false, '113383880513143', '2021-12-06 01:51:08.194+00', '2015-09-12 00:00:00+00', '2020-12-10 00:00:00+00', '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 01:51:08.194+00', 'abby', '{ "id": "f62dc160-eacc-4922-a0cb-e1ed68a44601", "active": false, "barcode": "113383880513143", "createdDate": "2021-12-06T01:51:08.194+00:00", "departments": [], "enrollmentDate": "2015-09-12T00:00:00.000+00:00", "expirationDate": "2020-12-10T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.192+00:00", "updatedDate": "2021-12-06T01:51:08.192+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [ { "addressLine1": "64834 Beier Villages", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Aliso Viejo", "countryId": "US", "postalCode": "70057-1624", "primaryAddress": true, "region": "WI" } ], "dateOfBirth": "1976-03-20T00:00:00.000+00:00", "email": "craig@ruecker-dach.se", "firstName": "Jovan", "lastName": "Mertz", "mobilePhone": "1-292-331-2729 x473", "phone": "091.863.0584 x7173", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.194+00:00", "username": "abby" }'); INSERT INTO user_users VALUES ('f643e743-3496-4ecd-94d7-1ca2fdf56c82', false, '28440705076121', '2021-12-06 01:51:05.683+00', '2015-11-23 00:00:00+00', '2020-05-20 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:05.683+00', 'carleton', '{ "id": "f643e743-3496-4ecd-94d7-1ca2fdf56c82", "active": false, "barcode": "28440705076121", "createdDate": "2021-12-06T01:51:05.683+00:00", "departments": [], "enrollmentDate": "2015-11-23T00:00:00.000+00:00", "expirationDate": "2020-05-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.680+00:00", "updatedDate": "2021-12-06T01:51:05.680+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "06300 Side", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Oxnard", "countryId": "US", "postalCode": "37789-4976", "primaryAddress": true, "region": "AP" } ], "dateOfBirth": "2013-07-28T00:00:00.000+00:00", "email": "monty@heidenreich-harris-and-veum.so", "firstName": "Morris", "lastName": "Gutkowski", "middleName": "Jodie", "mobilePhone": "(838)036-3745", "phone": "(035)964-7281", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.683+00:00", "username": "carleton" }'); INSERT INTO user_users VALUES ('f6ae2822-4d85-4ae2-ab73-7fc6657db3ef', true, NULL, '2021-12-06 01:52:53.339+00', NULL, NULL, NULL, NULL, '2021-12-06 01:52:53.339+00', 'data-export-system-user', '{ "id": "f6ae2822-4d85-4ae2-ab73-7fc6657db3ef", "active": true, "createdDate": "2021-12-06T01:52:53.339+00:00", "departments": [], "metadata": { "createdDate": "2021-12-06T01:52:53.336+00:00", "updatedDate": "2021-12-06T01:52:53.336+00:00" }, "personal": { "addresses": [], "lastName": "SystemDataExportS" }, "proxyFor": [], "updatedDate": "2021-12-06T01:52:53.339+00:00", "username": "data-export-system-user" }'); INSERT INTO user_users VALUES ('f6cd72ab-3e89-44c0-99aa-54ab4844f167', false, '394156228501504', '2021-12-06 01:51:04.786+00', '2015-05-23 00:00:00+00', '2020-09-24 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:04.786+00', 'jennyfer', '{ "id": "f6cd72ab-3e89-44c0-99aa-54ab4844f167", "active": false, "barcode": "394156228501504", "createdDate": "2021-12-06T01:51:04.786+00:00", "departments": [], "enrollmentDate": "2015-05-23T00:00:00.000+00:00", "expirationDate": "2020-09-24T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.781+00:00", "updatedDate": "2021-12-06T01:51:04.781+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "84557 Trailer 8", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Pico Rivera", "countryId": "US", "postalCode": "02012-8845", "primaryAddress": true, "region": "GU" } ], "dateOfBirth": "2005-07-22T00:00:00.000+00:00", "email": "brenna@feil-orn-and-barton.gs", "firstName": "Khalil", "lastName": "Kemmer", "middleName": "Camylle", "mobilePhone": "(918)523-4719 x006", "phone": "206.349.8590 x22816", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.786+00:00", "username": "jennyfer" }'); INSERT INTO user_users VALUES ('f6d2c74c-3181-4c25-9a21-1b1f4c30765f', false, '399977029012177', '2021-12-06 01:51:06.677+00', '2017-01-01 00:00:00+00', '2019-05-20 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:06.677+00', 'kian', '{ "id": "f6d2c74c-3181-4c25-9a21-1b1f4c30765f", "active": false, "barcode": "399977029012177", "createdDate": "2021-12-06T01:51:06.677+00:00", "departments": [], "enrollmentDate": "2017-01-01T00:00:00.000+00:00", "expirationDate": "2019-05-20T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:06.674+00:00", "updatedDate": "2021-12-06T01:51:06.674+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "84018 Abbott Plains Suite 555", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "San Rafael", "countryId": "US", "postalCode": "05491", "primaryAddress": true, "region": "CT" } ], "dateOfBirth": "1964-12-01T00:00:00.000+00:00", "email": "garland@davis-terry-and-heller.nv.us", "firstName": "Cleo", "lastName": "Kris", "middleName": "Hunter", "mobilePhone": "1-271-300-6536 x6459", "phone": "1-408-201-7701", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:06.677+00:00", "username": "kian" }'); INSERT INTO user_users VALUES ('f7a0a518-6ff3-4531-b54b-e630d61aede0', false, '251565120881853', '2021-12-06 01:51:04.76+00', '2015-08-01 00:00:00+00', '2020-04-21 00:00:00+00', 'ad0bc554-d5bc-463c-85d1-5562127ae91b', 'patron', '2021-12-06 01:51:04.76+00', 'amy', '{ "id": "f7a0a518-6ff3-4531-b54b-e630d61aede0", "active": false, "barcode": "251565120881853", "createdDate": "2021-12-06T01:51:04.760+00:00", "departments": [], "enrollmentDate": "2015-08-01T00:00:00.000+00:00", "expirationDate": "2020-04-21T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:04.755+00:00", "updatedDate": "2021-12-06T01:51:04.755+00:00" }, "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "personal": { "addresses": [ { "addressLine1": "18653 Swift Turnpike Suite 323", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Monterey", "countryId": "US", "postalCode": "37536-7927", "primaryAddress": true, "region": "OR" } ], "dateOfBirth": "1982-05-24T00:00:00.000+00:00", "email": "guy@luettgen-and-sons.museum", "firstName": "Ryder", "lastName": "Crooks", "phone": "(320)754-0186", "preferredContactTypeId": "001" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:04.760+00:00", "username": "amy" }'); INSERT INTO user_users VALUES ('fa18e51c-50d9-4fe3-ab58-c592ea30328a', false, '14017302496370', '2021-12-06 01:51:07.396+00', '2016-09-17 00:00:00+00', '2019-09-09 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:07.396+00', 'deanna', '{ "id": "fa18e51c-50d9-4fe3-ab58-c592ea30328a", "active": false, "barcode": "14017302496370", "createdDate": "2021-12-06T01:51:07.396+00:00", "departments": [], "enrollmentDate": "2016-09-17T00:00:00.000+00:00", "expirationDate": "2019-09-09T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.393+00:00", "updatedDate": "2021-12-06T01:51:07.393+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "92110 Wolf Gateway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "South Gate", "countryId": "US", "postalCode": "48997", "primaryAddress": true, "region": "AR" } ], "dateOfBirth": "2010-05-03T00:00:00.000+00:00", "email": "reinhold@swaniawski-hane.km", "firstName": "Stevie", "lastName": "Erdman", "mobilePhone": "(271)541-3712", "phone": "(278)436-8225", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.396+00:00", "username": "deanna" }'); INSERT INTO user_users VALUES ('fa5b4a89-d3ad-4d74-8ad2-8eaadf9c3935', true, '1638756087268793006', '2021-12-06 02:01:27.274+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:27.274+00', 'circ-student', '{ "id": "fa5b4a89-d3ad-4d74-8ad2-8eaadf9c3935", "active": true, "barcode": "1638756087268793006", "createdDate": "2021-12-06T02:01:27.274+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:27.271+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:27.271+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "circ-student", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:27.274+00:00", "username": "circ-student" }'); INSERT INTO user_users VALUES ('fad510e6-5b8d-4b10-b846-ce6ff7457629', false, '496391043594936', '2021-12-06 01:51:05.089+00', '2017-03-05 00:00:00+00', '2019-08-19 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.089+00', 'mikel', '{ "id": "fad510e6-5b8d-4b10-b846-ce6ff7457629", "active": false, "barcode": "496391043594936", "createdDate": "2021-12-06T01:51:05.089+00:00", "departments": [], "enrollmentDate": "2017-03-05T00:00:00.000+00:00", "expirationDate": "2019-08-19T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.085+00:00", "updatedDate": "2021-12-06T01:51:05.085+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "38258 Wiza Village Suite 811", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Gary", "countryId": "US", "postalCode": "40684", "primaryAddress": true, "region": "IA" } ], "dateOfBirth": "1951-11-08T00:00:00.000+00:00", "email": "michelle@schuster-mcdermott.dk", "firstName": "Colten", "lastName": "Schaefer", "middleName": "Renee", "mobilePhone": "444.448.7359 x459", "phone": "128-753-2651 x6176", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.089+00:00", "username": "mikel" }'); INSERT INTO user_users VALUES ('fb5de3c8-5293-440e-8448-a688c3a7367c', false, '565249317944644', '2021-12-06 01:51:08.29+00', '2018-09-13 00:00:00+00', '2019-07-07 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:08.29+00', 'edd', '{ "id": "fb5de3c8-5293-440e-8448-a688c3a7367c", "active": false, "barcode": "565249317944644", "createdDate": "2021-12-06T01:51:08.290+00:00", "departments": [], "enrollmentDate": "2018-09-13T00:00:00.000+00:00", "expirationDate": "2019-07-07T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:08.287+00:00", "updatedDate": "2021-12-06T01:51:08.287+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "34109 Bella Groves", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "city": "Lima", "countryId": "US", "postalCode": "04713", "primaryAddress": true, "region": "FM" } ], "dateOfBirth": "1979-06-15T00:00:00.000+00:00", "email": "margaret@donnelly-lindgren.at", "firstName": "Ewell", "lastName": "Swift", "mobilePhone": "(375)585-3955 x22596", "phone": "1-013-044-4658 x2248", "preferredContactTypeId": "004" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:08.290+00:00", "username": "edd" }'); INSERT INTO user_users VALUES ('fbc2b501-a8cc-43a7-8d8c-b68067b63a33', false, '650368947981103', '2021-12-06 01:51:07.605+00', '2015-06-04 00:00:00+00', '2020-04-30 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.605+00', 'leon', '{ "id": "fbc2b501-a8cc-43a7-8d8c-b68067b63a33", "active": false, "barcode": "650368947981103", "createdDate": "2021-12-06T01:51:07.605+00:00", "departments": [], "enrollmentDate": "2015-06-04T00:00:00.000+00:00", "expirationDate": "2020-04-30T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.602+00:00", "updatedDate": "2021-12-06T01:51:07.602+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "18301 Daniel Field #705", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "La Palma", "countryId": "US", "postalCode": "84320", "primaryAddress": true, "region": "ME" } ], "dateOfBirth": "1993-03-21T00:00:00.000+00:00", "email": "kian@reilly-beer.lr", "firstName": "Hal", "lastName": "Spencer", "middleName": "Otha", "mobilePhone": "(233)630-1861 x9186", "phone": "812-357-5454", "preferredContactTypeId": "005" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.605+00:00", "username": "leon" }'); INSERT INTO user_users VALUES ('ff5ec271-7138-46d0-8ca1-f5f57790e5bd', false, '283946101101999', '2021-12-06 01:51:07.996+00', '2015-08-17 00:00:00+00', '2020-01-26 00:00:00+00', 'bdc2b6d4-5ceb-4a12-ab46-249b9a68473e', 'patron', '2021-12-06 01:51:07.996+00', 'cruz', '{ "id": "ff5ec271-7138-46d0-8ca1-f5f57790e5bd", "active": false, "barcode": "283946101101999", "createdDate": "2021-12-06T01:51:07.996+00:00", "departments": [], "enrollmentDate": "2015-08-17T00:00:00.000+00:00", "expirationDate": "2020-01-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:07.993+00:00", "updatedDate": "2021-12-06T01:51:07.993+00:00" }, "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "personal": { "addresses": [ { "addressLine1": "47544 Nikolaus Lodge Apt. 505", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Ketchikan", "countryId": "US", "postalCode": "16810-6866", "primaryAddress": true, "region": "AA" } ], "dateOfBirth": "1980-04-10T00:00:00.000+00:00", "email": "cleora@welch-group.fj", "firstName": "Britney", "lastName": "McLaughlin", "middleName": "Ronny", "mobilePhone": "229-537-5748 x8269", "phone": "791.175.1120 x3467", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:07.996+00:00", "username": "cruz" }'); INSERT INTO user_users VALUES ('ffce08d4-c08d-4ff8-8ff8-060a5015aa2a', false, '851232198188977', '2021-12-06 01:51:05.641+00', '2017-08-07 00:00:00+00', '2020-11-26 00:00:00+00', '503a81cd-6c26-400f-b620-14c08943697c', 'patron', '2021-12-06 01:51:05.641+00', 'nina', '{ "id": "ffce08d4-c08d-4ff8-8ff8-060a5015aa2a", "active": false, "barcode": "851232198188977", "createdDate": "2021-12-06T01:51:05.641+00:00", "departments": [], "enrollmentDate": "2017-08-07T00:00:00.000+00:00", "expirationDate": "2020-11-26T00:00:00.000+00:00", "metadata": { "createdDate": "2021-12-06T01:51:05.638+00:00", "updatedDate": "2021-12-06T01:51:05.638+00:00" }, "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "personal": { "addresses": [ { "addressLine1": "87941 Douglas Lock Suite 230", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "city": "Dana Point", "countryId": "US", "postalCode": "20848", "primaryAddress": true, "region": "MN" } ], "dateOfBirth": "2009-07-15T00:00:00.000+00:00", "email": "tristian@hettinger-parker.museum", "firstName": "Hildegard", "lastName": "Donnelly", "phone": "1-042-803-9853 x64798", "preferredContactTypeId": "002" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T01:51:05.641+00:00", "username": "nina" }'); INSERT INTO user_users VALUES ('ffe437bb-ac1b-4806-9a17-9b5c4b47f437', true, '1638756089369155866', '2021-12-06 02:01:29.375+00', NULL, NULL, '3684a786-6671-4268-8ed0-9db82ebca60b', 'patron', '2021-12-06 02:01:29.375+00', 'metadata-admin', '{ "id": "ffe437bb-ac1b-4806-9a17-9b5c4b47f437", "active": true, "barcode": "1638756089369155866", "createdDate": "2021-12-06T02:01:29.375+00:00", "departments": [], "metadata": { "createdByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "createdDate": "2021-12-06T02:01:29.371+00:00", "updatedByUserId": "e1acbc79-7352-5db0-8f38-7b1b029e5ef6", "updatedDate": "2021-12-06T02:01:29.371+00:00" }, "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "personal": { "addresses": [], "firstName": "metadata-admin", "lastName": "Admin" }, "proxyFor": [], "type": "patron", "updatedDate": "2021-12-06T02:01:29.375+00:00", "username": "metadata-admin" }'); -- -- TOC entry 3924 (class 2606 OID 88216024) -- Name: acquisitions_memberships acquisitions_memberships_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY acquisitions_memberships ADD CONSTRAINT acquisitions_memberships_pkey PRIMARY KEY (id); -- -- TOC entry 3929 (class 2606 OID 88216039) -- Name: acquisitions_units acquisitions_units_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY acquisitions_units ADD CONSTRAINT acquisitions_units_pkey PRIMARY KEY (id); -- -- TOC entry 3491 (class 2606 OID 88214478) -- Name: audit_circulation_logs audit_circulation_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY audit_circulation_logs ADD CONSTRAINT audit_circulation_logs_pkey PRIMARY KEY (id); -- -- TOC entry 3573 (class 2606 OID 88214688) -- Name: circulation_cancellation_reasons circulation_cancellation_reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_cancellation_reasons ADD CONSTRAINT circulation_cancellation_reasons_pkey PRIMARY KEY (id); -- -- TOC entry 3576 (class 2606 OID 88214706) -- Name: circulation_check_ins circulation_check_ins_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_check_ins ADD CONSTRAINT circulation_check_ins_pkey PRIMARY KEY (id); -- -- TOC entry 3489 (class 2606 OID 88214462) -- Name: circulation_loan_history circulation_loan_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_loan_history ADD CONSTRAINT circulation_loan_history_pkey PRIMARY KEY (id); -- -- TOC entry 3583 (class 2606 OID 88214736) -- Name: circulation_loan_policies circulation_loan_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_loan_policies ADD CONSTRAINT circulation_loan_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3513 (class 2606 OID 88214549) -- Name: circulation_loans circulation_loans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_loans ADD CONSTRAINT circulation_loans_pkey PRIMARY KEY (id); -- -- TOC entry 3591 (class 2606 OID 88214771) -- Name: circulation_patron_notice_policies circulation_patron_notice_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_patron_notice_policies ADD CONSTRAINT circulation_patron_notice_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3595 (class 2606 OID 88214787) -- Name: circulation_request_policies circulation_request_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_request_policies ADD CONSTRAINT circulation_request_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3597 (class 2606 OID 88214803) -- Name: circulation_request_preference circulation_request_preference_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_request_preference ADD CONSTRAINT circulation_request_preference_pkey PRIMARY KEY (id); -- -- TOC entry 3599 (class 2606 OID 88214818) -- Name: circulation_requests circulation_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_requests ADD CONSTRAINT circulation_requests_pkey PRIMARY KEY (id); -- -- TOC entry 3605 (class 2606 OID 88214847) -- Name: circulation_staff_slips circulation_staff_slips_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY circulation_staff_slips ADD CONSTRAINT circulation_staff_slips_pkey PRIMARY KEY (id); -- -- TOC entry 3614 (class 2606 OID 88214875) -- Name: configuration_entries configuration_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY configuration_entries ADD CONSTRAINT configuration_entries_pkey PRIMARY KEY (id); -- -- TOC entry 3619 (class 2606 OID 88214892) -- Name: course_copyrightstatuses course_copyrightstatuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_copyrightstatuses ADD CONSTRAINT course_copyrightstatuses_pkey PRIMARY KEY (id); -- -- TOC entry 3624 (class 2606 OID 88214909) -- Name: course_courselistings course_courselistings_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_courselistings ADD CONSTRAINT course_courselistings_pkey PRIMARY KEY (id); -- -- TOC entry 3635 (class 2606 OID 88214936) -- Name: course_courses course_courses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_courses ADD CONSTRAINT course_courses_pkey PRIMARY KEY (id); -- -- TOC entry 3640 (class 2606 OID 88214954) -- Name: course_coursetypes course_coursetypes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_coursetypes ADD CONSTRAINT course_coursetypes_pkey PRIMARY KEY (id); -- -- TOC entry 3644 (class 2606 OID 88214970) -- Name: course_departments course_departments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_departments ADD CONSTRAINT course_departments_pkey PRIMARY KEY (id); -- -- TOC entry 3648 (class 2606 OID 88214986) -- Name: course_processingstatuses course_processingstatuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_processingstatuses ADD CONSTRAINT course_processingstatuses_pkey PRIMARY KEY (id); -- -- TOC entry 3652 (class 2606 OID 88215002) -- Name: course_reserves course_reserves_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_reserves ADD CONSTRAINT course_reserves_pkey PRIMARY KEY (id); -- -- TOC entry 3659 (class 2606 OID 88215033) -- Name: course_terms course_terms_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY course_terms ADD CONSTRAINT course_terms_pkey PRIMARY KEY (id); -- -- TOC entry 3662 (class 2606 OID 88215059) -- Name: email_email email_email_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY email_email ADD CONSTRAINT email_email_pkey PRIMARY KEY (id); -- -- TOC entry 3495 (class 2606 OID 88214508) -- Name: feesfines_accounts feesfines_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_accounts ADD CONSTRAINT feesfines_accounts_pkey PRIMARY KEY (id); -- -- TOC entry 3664 (class 2606 OID 88215074) -- Name: feesfines_comments feesfines_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_comments ADD CONSTRAINT feesfines_comments_pkey PRIMARY KEY (id); -- -- TOC entry 3555 (class 2606 OID 88214634) -- Name: feesfines_feefineactions feesfines_feefineactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_feefineactions ADD CONSTRAINT feesfines_feefineactions_pkey PRIMARY KEY (id); -- -- TOC entry 3668 (class 2606 OID 88215091) -- Name: feesfines_feefines feesfines_feefines_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_feefines ADD CONSTRAINT feesfines_feefines_pkey PRIMARY KEY (id); -- -- TOC entry 3679 (class 2606 OID 88215109) -- Name: feesfines_lost_item_fees_policies feesfines_lost_item_fees_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_lost_item_fees_policies ADD CONSTRAINT feesfines_lost_item_fees_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3691 (class 2606 OID 88215150) -- Name: feesfines_overdue_fines_policies feesfines_overdue_fines_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_overdue_fines_policies ADD CONSTRAINT feesfines_overdue_fines_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3693 (class 2606 OID 88215168) -- Name: feesfines_owners feesfines_owners_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY feesfines_owners ADD CONSTRAINT feesfines_owners_pkey PRIMARY KEY (id); -- -- TOC entry 3723 (class 2606 OID 88215269) -- Name: finance_budgets finance_budgets_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_budgets ADD CONSTRAINT finance_budgets_pkey PRIMARY KEY (id); -- -- TOC entry 3730 (class 2606 OID 88215292) -- Name: finance_expense_classes finance_expense_classes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_expense_classes ADD CONSTRAINT finance_expense_classes_pkey PRIMARY KEY (id); -- -- TOC entry 3738 (class 2606 OID 88215310) -- Name: finance_fiscal_years finance_fiscal_years_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_fiscal_years ADD CONSTRAINT finance_fiscal_years_pkey PRIMARY KEY (id); -- -- TOC entry 3742 (class 2606 OID 88215328) -- Name: finance_fund_types finance_fund_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_fund_types ADD CONSTRAINT finance_fund_types_pkey PRIMARY KEY (id); -- -- TOC entry 3751 (class 2606 OID 88215349) -- Name: finance_funds finance_funds_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_funds ADD CONSTRAINT finance_funds_pkey PRIMARY KEY (id); -- -- TOC entry 3757 (class 2606 OID 88215370) -- Name: finance_group_fund_fiscal_years finance_group_fund_fiscal_years_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_group_fund_fiscal_years ADD CONSTRAINT finance_group_fund_fiscal_years_pkey PRIMARY KEY (id); -- -- TOC entry 3762 (class 2606 OID 88215386) -- Name: finance_groups finance_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_groups ADD CONSTRAINT finance_groups_pkey PRIMARY KEY (id); -- -- TOC entry 3771 (class 2606 OID 88215406) -- Name: finance_ledgers finance_ledgers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_ledgers ADD CONSTRAINT finance_ledgers_pkey PRIMARY KEY (id); -- -- TOC entry 3549 (class 2606 OID 88214615) -- Name: finance_transactions finance_transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY finance_transactions ADD CONSTRAINT finance_transactions_pkey PRIMARY KEY (id); -- -- TOC entry 3776 (class 2606 OID 88215424) -- Name: inventory_alternative_title_types inventory_alternative_title_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_alternative_title_types ADD CONSTRAINT inventory_alternative_title_types_pkey PRIMARY KEY (id); -- -- TOC entry 3780 (class 2606 OID 88215440) -- Name: inventory_call_number_types inventory_call_number_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_call_number_types ADD CONSTRAINT inventory_call_number_types_pkey PRIMARY KEY (id); -- -- TOC entry 3786 (class 2606 OID 88215458) -- Name: inventory_campuses inventory_campuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_campuses ADD CONSTRAINT inventory_campuses_pkey PRIMARY KEY (id); -- -- TOC entry 3789 (class 2606 OID 88215477) -- Name: inventory_classification_types inventory_classification_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_classification_types ADD CONSTRAINT inventory_classification_types_pkey PRIMARY KEY (id); -- -- TOC entry 3794 (class 2606 OID 88215493) -- Name: inventory_contributor_name_types inventory_contributor_name_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_contributor_name_types ADD CONSTRAINT inventory_contributor_name_types_pkey PRIMARY KEY (id); -- -- TOC entry 3798 (class 2606 OID 88215511) -- Name: inventory_contributor_types inventory_contributor_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_contributor_types ADD CONSTRAINT inventory_contributor_types_pkey PRIMARY KEY (id); -- -- TOC entry 3802 (class 2606 OID 88215527) -- Name: inventory_electronic_access_relationships inventory_electronic_access_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_electronic_access_relationships ADD CONSTRAINT inventory_electronic_access_relationships_pkey PRIMARY KEY (id); -- -- TOC entry 3806 (class 2606 OID 88215543) -- Name: inventory_holdings_note_types inventory_holdings_note_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_holdings_note_types ADD CONSTRAINT inventory_holdings_note_types_pkey PRIMARY KEY (id); -- -- TOC entry 3481 (class 2606 OID 88214439) -- Name: inventory_holdings inventory_holdings_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_holdings ADD CONSTRAINT inventory_holdings_pkey PRIMARY KEY (id); -- -- TOC entry 4035 (class 2606 OID 88216359) -- Name: inventory_holdings_sources inventory_holdings_sources_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_holdings_sources ADD CONSTRAINT inventory_holdings_sources_pkey PRIMARY KEY (id); -- -- TOC entry 3810 (class 2606 OID 88215559) -- Name: inventory_holdings_types inventory_holdings_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_holdings_types ADD CONSTRAINT inventory_holdings_types_pkey PRIMARY KEY (id); -- -- TOC entry 3814 (class 2606 OID 88215575) -- Name: inventory_identifier_types inventory_identifier_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_identifier_types ADD CONSTRAINT inventory_identifier_types_pkey PRIMARY KEY (id); -- -- TOC entry 3818 (class 2606 OID 88215591) -- Name: inventory_ill_policies inventory_ill_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_ill_policies ADD CONSTRAINT inventory_ill_policies_pkey PRIMARY KEY (id); -- -- TOC entry 3823 (class 2606 OID 88215609) -- Name: inventory_instance_formats inventory_instance_formats_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_formats ADD CONSTRAINT inventory_instance_formats_pkey PRIMARY KEY (id); -- -- TOC entry 3828 (class 2606 OID 88215627) -- Name: inventory_instance_note_types inventory_instance_note_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_note_types ADD CONSTRAINT inventory_instance_note_types_pkey PRIMARY KEY (id); -- -- TOC entry 3832 (class 2606 OID 88215643) -- Name: inventory_instance_relationship_types inventory_instance_relationship_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_relationship_types ADD CONSTRAINT inventory_instance_relationship_types_pkey PRIMARY KEY (id); -- -- TOC entry 3835 (class 2606 OID 88215659) -- Name: inventory_instance_relationships inventory_instance_relationships_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_relationships ADD CONSTRAINT inventory_instance_relationships_pkey PRIMARY KEY (id); -- -- TOC entry 3841 (class 2606 OID 88215677) -- Name: inventory_instance_statuses inventory_instance_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_statuses ADD CONSTRAINT inventory_instance_statuses_pkey PRIMARY KEY (id); -- -- TOC entry 3846 (class 2606 OID 88215695) -- Name: inventory_instance_types inventory_instance_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instance_types ADD CONSTRAINT inventory_instance_types_pkey PRIMARY KEY (id); -- -- TOC entry 3443 (class 2606 OID 88214375) -- Name: inventory_instances inventory_instances_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_instances ADD CONSTRAINT inventory_instances_pkey PRIMARY KEY (id); -- -- TOC entry 3859 (class 2606 OID 88215745) -- Name: inventory_institutions inventory_institutions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_institutions ADD CONSTRAINT inventory_institutions_pkey PRIMARY KEY (id); -- -- TOC entry 3850 (class 2606 OID 88215711) -- Name: inventory_item_damaged_statuses inventory_item_damaged_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_item_damaged_statuses ADD CONSTRAINT inventory_item_damaged_statuses_pkey PRIMARY KEY (id); -- -- TOC entry 3854 (class 2606 OID 88215727) -- Name: inventory_item_note_types inventory_item_note_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_item_note_types ADD CONSTRAINT inventory_item_note_types_pkey PRIMARY KEY (id); -- -- TOC entry 3465 (class 2606 OID 88214408) -- Name: inventory_items inventory_items_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_items ADD CONSTRAINT inventory_items_pkey PRIMARY KEY (id); -- -- TOC entry 3864 (class 2606 OID 88215763) -- Name: inventory_libraries inventory_libraries_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_libraries ADD CONSTRAINT inventory_libraries_pkey PRIMARY KEY (id); -- -- TOC entry 3867 (class 2606 OID 88215779) -- Name: inventory_loan_types inventory_loan_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_loan_types ADD CONSTRAINT inventory_loan_types_pkey PRIMARY KEY (id); -- -- TOC entry 3877 (class 2606 OID 88215799) -- Name: inventory_locations inventory_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_locations ADD CONSTRAINT inventory_locations_pkey PRIMARY KEY (id); -- -- TOC entry 3881 (class 2606 OID 88215818) -- Name: inventory_material_types inventory_material_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_material_types ADD CONSTRAINT inventory_material_types_pkey PRIMARY KEY (id); -- -- TOC entry 3885 (class 2606 OID 88215834) -- Name: inventory_modes_of_issuance inventory_modes_of_issuance_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_modes_of_issuance ADD CONSTRAINT inventory_modes_of_issuance_pkey PRIMARY KEY (id); -- -- TOC entry 3889 (class 2606 OID 88215850) -- Name: inventory_nature_of_content_terms inventory_nature_of_content_terms_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_nature_of_content_terms ADD CONSTRAINT inventory_nature_of_content_terms_pkey PRIMARY KEY (id); -- -- TOC entry 3896 (class 2606 OID 88215869) -- Name: inventory_service_points inventory_service_points_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_service_points ADD CONSTRAINT inventory_service_points_pkey PRIMARY KEY (id); -- -- TOC entry 3900 (class 2606 OID 88215888) -- Name: inventory_service_points_users inventory_service_points_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_service_points_users ADD CONSTRAINT inventory_service_points_users_pkey PRIMARY KEY (id); -- -- TOC entry 3904 (class 2606 OID 88215903) -- Name: inventory_statistical_code_types inventory_statistical_code_types_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_statistical_code_types ADD CONSTRAINT inventory_statistical_code_types_pkey PRIMARY KEY (id); -- -- TOC entry 3909 (class 2606 OID 88215920) -- Name: inventory_statistical_codes inventory_statistical_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY inventory_statistical_codes ADD CONSTRAINT inventory_statistical_codes_pkey PRIMARY KEY (id); -- -- TOC entry 3913 (class 2606 OID 88215938) -- Name: invoice_invoices invoice_invoices_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY invoice_invoices ADD CONSTRAINT invoice_invoices_pkey PRIMARY KEY (id); -- -- TOC entry 3967 (class 2606 OID 88216152) -- Name: organization_categories organization_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY organization_categories ADD CONSTRAINT organization_categories_pkey PRIMARY KEY (id); -- -- TOC entry 3975 (class 2606 OID 88216168) -- Name: organization_contacts organization_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY organization_contacts ADD CONSTRAINT organization_contacts_pkey PRIMARY KEY (id); -- -- TOC entry 3986 (class 2606 OID 88216203) -- Name: organization_interfaces organization_interfaces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY organization_interfaces ADD CONSTRAINT organization_interfaces_pkey PRIMARY KEY (id); -- -- TOC entry 4009 (class 2606 OID 88216241) -- Name: organization_organizations organization_organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY organization_organizations ADD CONSTRAINT organization_organizations_pkey PRIMARY KEY (id); -- -- TOC entry 3936 (class 2606 OID 88216060) -- Name: po_alerts po_alerts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_alerts ADD CONSTRAINT po_alerts_pkey PRIMARY KEY (id); -- -- TOC entry 3531 (class 2606 OID 88214581) -- Name: po_lines po_lines_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_lines ADD CONSTRAINT po_lines_pkey PRIMARY KEY (id); -- -- TOC entry 3950 (class 2606 OID 88216094) -- Name: po_order_templates po_order_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_order_templates ADD CONSTRAINT po_order_templates_pkey PRIMARY KEY (id); -- -- TOC entry 3568 (class 2606 OID 88214673) -- Name: po_pieces po_pieces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_pieces ADD CONSTRAINT po_pieces_pkey PRIMARY KEY (id); -- -- TOC entry 3562 (class 2606 OID 88214652) -- Name: po_purchase_orders po_purchase_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_purchase_orders ADD CONSTRAINT po_purchase_orders_pkey PRIMARY KEY (id); -- -- TOC entry 3493 (class 2606 OID 88214493) -- Name: po_receiving_history po_receiving_history_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_receiving_history ADD CONSTRAINT po_receiving_history_pkey PRIMARY KEY (id); -- -- TOC entry 3963 (class 2606 OID 88216124) -- Name: po_reporting_codes po_reporting_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY po_reporting_codes ADD CONSTRAINT po_reporting_codes_pkey PRIMARY KEY (id); -- -- TOC entry 4023 (class 2606 OID 88216298) -- Name: user_addresstypes user_addresstypes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_addresstypes ADD CONSTRAINT user_addresstypes_pkey PRIMARY KEY (id); -- -- TOC entry 4030 (class 2606 OID 88216331) -- Name: user_groups user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_groups ADD CONSTRAINT user_groups_pkey PRIMARY KEY (id); -- -- TOC entry 3503 (class 2606 OID 88214528) -- Name: user_users user_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_users ADD CONSTRAINT user_users_pkey PRIMARY KEY (id);